Lines Matching refs:tchunk
1270 chunk_node_t *tchunk, *delchunk; in chunk_alloc() local
1283 tchunk = RB_TREE_MIN(&old_chunks); in chunk_alloc()
1284 while (tchunk != NULL) { in chunk_alloc()
1287 chunk = tchunk->chunk; in chunk_alloc()
1288 delchunk = tchunk; in chunk_alloc()
1289 tchunk = RB_TREE_NEXT(&old_chunks, delchunk); in chunk_alloc()
1374 tchunk = rb_tree_find_node_geq(&old_chunks, &key); in chunk_alloc()
1375 while (tchunk != NULL in chunk_alloc()
1376 && (uintptr_t)tchunk->chunk >= (uintptr_t)ret in chunk_alloc()
1377 && (uintptr_t)tchunk->chunk < (uintptr_t)ret + size) { in chunk_alloc()
1378 delchunk = tchunk; in chunk_alloc()
1379 tchunk = RB_TREE_NEXT(&old_chunks, delchunk); in chunk_alloc()