Lines Matching defs:adjusted_address
161 char *adjusted_address = (char *)(node->parent);
162 adjusted_address += node->parent_is_relative * (uintptr_t)header;
164 return ((dns_rbtnode_t *)adjusted_address);
169 char *adjusted_address = (char *)(node->left);
170 adjusted_address += node->left_is_relative * (uintptr_t)header;
172 return ((dns_rbtnode_t *)adjusted_address);
177 char *adjusted_address = (char *)(node->right);
178 adjusted_address += node->right_is_relative * (uintptr_t)header;
180 return ((dns_rbtnode_t *)adjusted_address);
185 char *adjusted_address = (char *)(node->down);
186 adjusted_address += node->down_is_relative * (uintptr_t)header;
188 return ((dns_rbtnode_t *)adjusted_address);
193 char *adjusted_address = (char *)(node->data);
194 adjusted_address += node->data_is_relative * (uintptr_t)header;
196 return ((dns_rbtnode_t *)adjusted_address);