Lines Matching refs:location
123 * indicate that it is a reference to a location in the file, rather than in
515 off_t location;
536 CHECK(isc_stdio_tell(file, &location));
537 location = dns_rbt_serialize_align(location);
538 CHECK(isc_stdio_seek(file, location, SEEK_SET));
593 * If the next node is not NULL, calculate the next node's location
651 off_t location = 0, offset_adjust;
661 CHECK(isc_stdio_tell(file, &location));
662 location = dns_rbt_serialize_align(location);
663 CHECK(isc_stdio_seek(file, location, SEEK_SET));
665 offset_adjust = dns_rbt_serialize_align(location + NODE_SIZE(node));
674 CHECK(serialize_nodes(file, getleft(node, NULL), location,
676 CHECK(serialize_nodes(file, getright(node, NULL), location,
678 CHECK(serialize_nodes(file, getdown(node, NULL), location,
693 CHECK(isc_stdio_seek(file, location, SEEK_SET));
702 *where = (uintptr_t) location;
2631 * move it to this location, then do the deletion at the
2655 * First, put the successor in the tree location of the
2658 * delete to the successor's old location.
2685 * successor's previous tree location. PARENT(tmp)
2703 * Original location of successor node has no left.