| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/ |
| swr_scratch.cpp | 33 struct swr_scratch_space *space, 38 assert(space); 44 /* Need to grow space */ 45 if (max_size_in_flight > space->current_size) { 46 space->current_size = max_size_in_flight; 48 if (space->base) { 51 swr_fence_work_free(screen->flush_fence, space->base, true); 52 space->base = NULL; 55 if (!space->base) { 56 space->base = (uint8_t *)AlignedMalloc(space->current_size [all...] |
| swr_scratch.h | 50 * space ptr to scratch pool (vs_constants, fs_constants) 51 * user_buffer, data to copy into scratch space 54 * pointer to data copied to scratch space. 57 struct swr_scratch_space *space,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/ |
| swr_scratch.cpp | 34 struct swr_scratch_space *space, 39 assert(space); 45 /* Need to grow space */ 46 if (max_size_in_flight > space->current_size) { 47 space->current_size = max_size_in_flight; 49 if (space->base) { 54 swr_fence_work_free(screen->flush_fence, space->base, true); 55 space->base = NULL; 58 if (!space->base) { 59 space->base = (uint8_t *)AlignedMalloc(space->current_size [all...] |
| swr_scratch.h | 52 * space ptr to scratch pool (vs_constants, fs_constants) 53 * user_buffer, data to copy into scratch space 56 * pointer to data copied to scratch space. 59 struct swr_scratch_space *space,
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/util/ |
| pan_ir.c | 44 unsigned space = local 54 return space | (space << 1); 58 unsigned space = local 64 return space | (space << 1) | (space << 2) | (space << 3);
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/ |
| v3dv_cl.c | 59 cl_alloc_bo(struct v3dv_cl *cl, uint32_t space, bool use_branch) 61 struct v3dv_bo *bo = v3dv_bo_alloc(cl->job->device, space, "CL", true); 95 v3dv_cl_ensure_space(struct v3dv_cl *cl, uint32_t space, uint32_t alignment) 99 if (offset + space <= cl->size) { 104 cl_alloc_bo(cl, space, false); 109 v3dv_cl_ensure_space_with_branch(struct v3dv_cl *cl, uint32_t space) 120 space += cl_packet_length(RETURN_FROM_SUB_LIST); 123 space += cl_packet_length(BRANCH); 126 if (v3dv_cl_offset(cl) + space <= cl->size) 132 cl_alloc_bo(cl, space, !needs_return_from_sub_list) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/ |
| v3d_cl.c | 45 v3d_cl_ensure_space(struct v3d_cl *cl, uint32_t space, uint32_t alignment) 49 if (offset + space <= cl->size) { 55 cl->bo = v3d_bo_alloc(cl->job->v3d->screen, align(space, 4096), "CL"); 64 v3d_cl_ensure_space_with_branch(struct v3d_cl *cl, uint32_t space) 66 if (cl_offset(cl) + space + cl_packet_length(BRANCH) <= cl->size) 69 struct v3d_bo *new_bo = v3d_bo_alloc(cl->job->v3d->screen, space, "CL"); 70 assert(space <= new_bo->size);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/v3d/ |
| v3d_cl.c | 42 v3d_cl_ensure_space(struct v3d_cl *cl, uint32_t space, uint32_t alignment) 46 if (offset + space <= cl->size) { 52 cl->bo = v3d_bo_alloc(cl->job->v3d->screen, align(space, 4096), "CL"); 61 v3d_cl_ensure_space_with_branch(struct v3d_cl *cl, uint32_t space) 63 if (cl_offset(cl) + space + cl_packet_length(BRANCH) <= cl->size) 67 assert(space <= new_bo->size);
|
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/ |
| sna_acpi.c | 80 /* We will get '0' if we run out of space whilst reading 112 char *space = sna->acpi.event; local 117 space = strchr(space, ' '); 118 if (space) 119 space = strchr(space + 1, ' '); 120 if (space) 121 space = strchr(space + 1, ' ') [all...] |
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/ |
| sna_acpi.c | 80 /* We will get '0' if we run out of space whilst reading 116 char *space = sna->acpi.event; local 121 space = strchr(space, ' '); 122 if (space) 123 space = strchr(space + 1, ' '); 124 if (space) 125 space = strchr(space + 1, ' ') [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/ |
| nine_queue.h | 40 nine_queue_alloc(struct nine_queue_pool* ctx, unsigned space);
|
| nine_queue.c | 43 * The queue is flushed automatically on insufficient space or once the 48 * nine_queue_alloc returns NULL on insufficent space. 173 /* Gets a a pointer to slice of memory with size @space. 175 * Returns NULL on @space > NINE_QUEUE_SIZE. */ 177 nine_queue_alloc(struct nine_queue_pool* ctx, unsigned space) 182 if (space > NINE_QUEUE_SIZE) 187 if ((cmdbuf->offset + space > NINE_QUEUE_SIZE) || 195 DBG("cmdbuf=%p space=%d\n", cmdbuf, space); 197 /* at this pointer there's always a free queue with sufficient space available * [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/ |
| nine_queue.h | 40 nine_queue_alloc(struct nine_queue_pool* ctx, unsigned space);
|
| nine_queue.c | 43 * The queue is flushed automatically on insufficient space or once the 48 * nine_queue_alloc returns NULL on insufficent space. 173 /* Gets a a pointer to slice of memory with size @space. 175 * Returns NULL on @space > NINE_QUEUE_SIZE. */ 177 nine_queue_alloc(struct nine_queue_pool* ctx, unsigned space) 182 if (space > NINE_QUEUE_SIZE) 187 if ((cmdbuf->offset + space > NINE_QUEUE_SIZE) || 195 DBG("cmdbuf=%p space=%d\n", cmdbuf, space); 197 /* at this pointer there's always a free queue with sufficient space available * [all...] |
| /xsrc/external/mit/freetype/dist/builds/ansi/ |
| ansi-def.mk | 60 T := -o$(space)
|
| /xsrc/external/mit/freetype/dist/builds/beos/ |
| beos-def.mk | 62 T := -o$(space)
|
| /xsrc/external/mit/freetype/dist/builds/unix/ |
| unix-def.in | 133 exec_prefix_x := $(subst $(space),\\$(space),$(exec_prefix)) 134 includedir_x := $(subst $(space),\\$(space),$(includedir)) 135 libdir_x := $(subst $(space),\\$(space),$(libdir)) 136 prefix_x := $(subst $(space),\\$(space),$(prefix))
|
| /xsrc/external/mit/xf86-video-intel-old/dist/src/xvmc/ |
| intel_batchbuffer.h | 13 assert(xvmc_driver->batch.space >= (n) *4); \ 14 if (xvmc_driver->batch.space < (n)*4) \ 45 xvmc_driver->batch.space -= (batch_ptr - xvmc_driver->batch.ptr);\ 47 assert(xvmc_driver->batch.space >= 0); \
|
| /xsrc/external/mit/xf86-video-intel-old/dist/src/ |
| i830_accel.c | 91 while (ring->space < n) { 93 ring->space = ring->head - (ring->tail + 8); 95 if (ring->space < 0) 96 ring->space += ring->mem->size; 103 ErrorF("space: %d wanted %d\n", ring->space, n); 113 ErrorF("space: %d wanted %d\n", ring->space, n); 125 ErrorF("space: %d wanted %d\n", ring->space, n) [all...] |
| /xsrc/external/mit/xf86-video-intel/dist/xvmc/ |
| intel_batchbuffer.h | 13 assert(xvmc_driver->batch.space >= (n) *4); \ 43 xvmc_driver->batch.space -= (batch_ptr - xvmc_driver->batch.ptr);\
|
| /xsrc/external/mit/xf86-video-intel-2014/dist/xvmc/ |
| intel_batchbuffer.h | 13 assert(xvmc_driver->batch.space >= (n) *4); \ 43 xvmc_driver->batch.space -= (batch_ptr - xvmc_driver->batch.ptr);\
|
| /xsrc/external/mit/freetype/dist/builds/compiler/ |
| ansi-cc.mk | 55 T := -o$(space)
|
| emx.mk | 55 T := -o$(space)
|
| gcc.mk | 55 T := -o$(space)
|
| unix-lcc.mk | 56 T := -o$(space)
|