Home | History | Annotate | Download | only in wtf

Lines Matching refs:ptrs

202     Node* ptrs[INTERIOR_LENGTH];
234 return reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3];
242 reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3] = v;
251 if (root_->ptrs[i1] == NULL) {
254 root_->ptrs[i1] = n;
258 if (root_->ptrs[i1]->ptrs[i2] == NULL) {
262 root_->ptrs[i1]->ptrs[i2] = reinterpret_cast<Node*>(leaf);
279 if (!root->ptrs[i])
282 Node* n = reader(root->ptrs[i]);
284 if (!n->ptrs[j])
287 Leaf* l = reader(reinterpret_cast<Leaf*>(n->ptrs[j]));
300 if (!root->ptrs[i])
303 visitor.visit(root->ptrs[i], sizeof(Node));
304 Node* n = reader(root->ptrs[i]);
306 if (!n->ptrs[j])
309 visitor.visit(n->ptrs[j], sizeof(Leaf));