Home | History | Annotate | Download | only in llvmpipe

Lines Matching defs:used

86    unsigned used;
105 * This stores bulk data which is used for all memory allocations
148 /** Total memory used by the scene (in bytes). This sums all the
213 size, block->used, DATA_BLOCK_SIZE,
216 if (block->used + size > DATA_BLOCK_SIZE) {
225 ubyte *data = block->data + block->used;
226 block->used += size;
247 block->used, DATA_BLOCK_SIZE,
250 if (block->used + size + alignment - 1 > DATA_BLOCK_SIZE) {
257 ubyte *data = block->data + block->used;
259 block->used += offset + size;
271 assert(list->head && list->head->used >= size);
272 list->head->used -= size;