Lines Matching refs:used
88 unsigned used;
105 * This stores bulk data which is used for all memory allocations
177 /** Total memory used by the scene (in bytes). This sums all the
248 size, block->used, (unsigned)DATA_BLOCK_SIZE,
251 if (block->used + size > DATA_BLOCK_SIZE) {
260 ubyte *data = block->data + block->used;
261 block->used += size;
282 block->used, (unsigned)DATA_BLOCK_SIZE,
285 if (block->used + size + alignment - 1 > DATA_BLOCK_SIZE) {
292 ubyte *data = block->data + block->used;
294 block->used += offset + size;