Lines Matching refs:chunk
268 block->chunk[i].next = &block->chunk[i+1]; 270 block->chunk[COUNT-1].next = 0; 271 root = block->chunk; 284 Chunk* chunk = (Chunk*)mem; 285 memset( chunk, 0xfe, sizeof(Chunk) ); 286 chunk->next = root; 287 root = chunk; 296 union Chunk { 297 Chunk* next; 301 Chunk chunk[COUNT]; 304 Chunk* root;