Home | History | Annotate | Download | only in stdlib

Lines Matching defs:tchunk

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