| /xsrc/external/mit/MesaLib/dist/src/intel/common/ |
| intel_gem.c | 31 struct drm_syncobj_create create = { local 34 ret = intel_ioctl(fd, DRM_IOCTL_SYNCOBJ_CREATE, &create); 38 uint32_t syncobj = create.handle; 41 .handles = (uint64_t)(uintptr_t)&create,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| u_vertex_state_cache.h | 41 pipe_create_vertex_state_func create; member in struct:util_vertex_state_cache 47 pipe_create_vertex_state_func create,
|
| u_vertex_state_cache.c | 47 pipe_create_vertex_state_func create, 52 cache->create = create; 108 state = cache->create(screen, buffer, elements, num_elements, indexbuf,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/wgl/ |
| stw_ext_context.h | 36 stw_override_opengl32_entry_points(wglCreateContext_t create, wglDeleteContext_t delete);
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/drm-shim/ |
| v3d_noop.c | 62 struct drm_v3d_create_bo *create = arg; local 65 drm_shim_bo_init(&bo->base, create->size); 67 assert(UINT_MAX - v3d.next_offset > create->size); 69 v3d.next_offset += create->size; 71 create->offset = bo->offset; 72 create->handle = drm_shim_bo_get_handle(shim_fd, &bo->base);
|
| vc4_noop.c | 43 struct drm_vc4_create_bo *create = arg; local 46 drm_shim_bo_init(bo, create->size); 47 create->handle = drm_shim_bo_get_handle(shim_fd, bo);
|
| v3dx.c | 222 struct drm_v3d_create_bo *create = arg; local 225 drm_shim_bo_init(&bo->base, create->size); 226 bo->offset = util_vma_heap_alloc(&v3d.heap, create->size, 4096); 237 void *mmap_ret = mmap(sim_addr, create->size, PROT_READ | PROT_WRITE, 252 create->offset = bo->offset; 253 create->handle = drm_shim_bo_get_handle(shim_fd, &bo->base);
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/drm-shim/ |
| panfrost_noop.c | 76 struct drm_panfrost_create_bo *create = arg; local 80 size_t size = ALIGN(create->size, 4096); 84 create->handle = drm_shim_bo_get_handle(shim_fd, bo); 85 create->offset = bo->mem_addr;
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/ |
| platform.cpp | 36 devs.push_back(create<device>(*this, ldev));
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/drm-shim/ |
| lima_noop.c | 62 struct drm_lima_gem_create *create = arg; local 66 size_t size = ALIGN(create->size, 4096); 70 create->handle = drm_shim_bo_get_handle(shim_fd, bo);
|
| /xsrc/external/mit/MesaLib/dist/.gitlab-ci/container/debian/ |
| android_build.sh | 23 sh .gitlab-ci/container/create-android-ndk-pc.sh /$ndk zlib.pc "" "-lz" "1.2.3" 25 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk x86_64-linux-android x86_64 x86_64 26 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk i686-linux-android x86 x86 27 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk aarch64-linux-android arm armv8 28 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk arm-linux-androideabi arm armv7hl armv7a-linux-androideabi
|
| /xsrc/external/mit/MesaLib/dist/src/nouveau/drm-shim/ |
| nouveau_noop.c | 70 struct drm_nouveau_gem_new *create = arg; local 73 drm_shim_bo_init(&bo->base, create->info.size); 75 assert(ULONG_MAX - nouveau.next_offset > create->info.size); 77 create->info.handle = drm_shim_bo_get_handle(shim_fd, &bo->base); 78 create->info.map_handle = drm_shim_bo_get_mmap_offset(shim_fd, &bo->base); 80 if (create->align != 0) 81 nouveau.next_offset = align64(nouveau.next_offset, create->align); 82 create->info.offset = nouveau.next_offset; 83 nouveau.next_offset += create->info.size; 85 bo->offset = create->info.offset [all...] |
| /xsrc/external/mit/MesaLib/dist/src/tool/pps/ |
| pps_device.h | 29 static std::optional<DrmDevice> create(int32_t gpu_num); 31 /// @brief Prefer calling create instead of default constructor
|
| /xsrc/external/mit/MesaLib/dist/src/intel/tools/ |
| intel_sanitize_gpu.c | 208 create_with_padding(int fd, struct drm_i915_gem_create *create) 210 uint64_t original_size = create->size; 212 create->size = align64(original_size, 4096) + PADDING_SIZE; 213 int ret = libc_ioctl(fd, DRM_IOCTL_I915_GEM_CREATE, create); 214 create->size = original_size; 221 .handle = create->handle, 222 .offset = align64(create->size, 4096), 229 mesa_logd("Unable to map buffer %d for pad creation.\n", create->handle); 234 fill_noise_buffer(noise_values, create->handle & 0xFF, 238 _mesa_hash_table_insert(bo_size_table(fd), (void*)(uintptr_t)create->handle [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/tools/ |
| intel_sanitize_gpu.c | 208 create_with_padding(int fd, struct drm_i915_gem_create *create) 210 uint64_t original_size = create->size; 212 create->size = align64(original_size, 4096) + PADDING_SIZE; 213 int ret = libc_ioctl(fd, DRM_IOCTL_I915_GEM_CREATE, create); 214 create->size = original_size; 221 .handle = create->handle, 222 .offset = align64(create->size, 4096), 229 intel_logd("Unable to map buffer %d for pad creation.\n", create->handle); 234 fill_noise_buffer(noise_values, create->handle & 0xFF, 238 _mesa_hash_table_insert(bo_size_table(fd), (void*)(uintptr_t)create->handle [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/ |
| aco_reduce_assign.cpp | 103 aco_ptr<Pseudo_instruction> create{create_instruction<Pseudo_instruction>( 105 create->definitions[0] = Definition(reduceTmp); 109 it = block.instructions.insert(it, std::move(create)); 119 std::move(create)); 145 aco_ptr<Pseudo_instruction> create{create_instruction<Pseudo_instruction>( 147 create->definitions[0] = Definition(vtmp); 149 it = block.instructions.insert(it, std::move(create)); 156 std::move(create));
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/ |
| printf.hpp | 34 create(const intrusive_ptr<command_queue> &q,
|
| /xsrc/external/mit/fontconfig/dist/doc/ |
| fcrange.fncs | 38 @PURPOSE@ create a range object for double 49 @PURPOSE@ create a range object for integer
|
| /xsrc/external/mit/xf86-video-vmware/dist/vmwgfx/ |
| vmwgfx_hosted.h | 48 * @create: Initialize and create an opaque struct vmwgfx_hosted with 50 * @destroy: Undo what's done in @create. 60 struct vmwgfx_hosted *(*create)(ScrnInfoPtr); member in struct:vmwgfx_hosted_driver 102 return driver->create(pScrn);
|
| /xsrc/external/mit/xstdcmap/dist/ |
| xstdcmap.c | 59 Bool create; member in struct:__anon12055 139 propertyTable[BEST].create++; 143 propertyTable[BLUE].create++; 147 propertyTable[DEFAULT].create++; 167 propertyTable[GRAY].create++; 171 propertyTable[GREEN].create++; 179 propertyTable[RED].create++; 296 if (! propertyTable[i].create)
|
| /xsrc/external/mit/freetype/dist/ |
| vms_make.com | 74 $! Create option file 80 $ create libs.opt 84 $! Create objects 158 $ create descrip.mms 199 if f$search("lib.dir") .eqs. "" then create/directory [.lib] 254 $ create [.builds.vms]descrip.mms 278 library/create [--.lib]freetype.olb $(OBJS) 286 $ create [.src.autofit]descrip.mms 315 $ create [.src.base]descrip.mms 360 $ create [.src.bdf]descrip.mm [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/ |
| panvk_sync.c | 39 struct drm_syncobj_create create = { local 43 int ret = drmIoctl(pdev->fd, DRM_IOCTL_SYNCOBJ_CREATE, &create); 47 sync->permanent = create.handle; 103 struct drm_syncobj_create create = {}; local 106 create.flags |= DRM_SYNCOBJ_CREATE_SIGNALED; 108 ret = drmIoctl(pdev->fd, DRM_IOCTL_SYNCOBJ_CREATE, &create); 115 .handle = create.handle, 121 struct drm_syncobj_destroy destroy = { .handle = create.handle }; 128 sync_set_temporary(device, sync, create.handle);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/api/ |
| event.cpp | 73 // Create a temporary soft event that depends on all the events in 75 auto sev = create<soft_event>(evs.front().context(), evs, true); 133 // Create a temporary soft event that depends on ev, with 135 create<soft_event>(ev.context(), ref_vector<event> { ev }, true, 193 // Create a hard event that depends on the events in the wait list: 196 auto hev = create<hard_event>(q, CL_COMMAND_MARKER, deps); 228 // Create a hard event that depends on the events in the wait list: 231 auto hev = create<hard_event>(q, CL_COMMAND_BARRIER, deps); 299 // Create a temporary hard event -- it implicitly depends on all 301 auto hev = create<hard_event>(q, 0, ref_vector<event> {}) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/api/ |
| event.cpp | 73 // Create a temporary soft event that depends on all the events in 75 auto sev = create<soft_event>(evs.front().context(), evs, true); 133 // Create a temporary soft event that depends on ev, with 135 create<soft_event>(ev.context(), ref_vector<event> { ev }, true, 193 // Create a hard event that depends on the events in the wait list: 196 auto hev = create<hard_event>(q, CL_COMMAND_MARKER, deps); 228 // Create a hard event that depends on the events in the wait list: 231 auto hev = create<hard_event>(q, CL_COMMAND_BARRIER, deps); 298 // Create a temporary hard event -- it implicitly depends on all 300 auto hev = create<hard_event>(q, 0, ref_vector<event> {}) [all...] |
| /xsrc/external/mit/xedit/dist/ |
| ar-lib | 159 create= 171 c*) create=yes ;; 236 if test -z "$create"; then
|