Home | History | Annotate | Download | only in src

Lines Matching refs:ptrs

423     Node* ptrs[INTERIOR_LENGTH];
455 root_->ptrs[i1] == NULL || root_->ptrs[i1]->ptrs[i2] == NULL) {
458 return reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3];
466 reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs
479 if (root_->ptrs[i1] == NULL) {
482 root_->ptrs[i1] = n;
486 if (root_->ptrs[i1]->ptrs[i2] == NULL) {
490 root_->ptrs[i1]->ptrs[i2] = reinterpret_cast<Node*>(leaf);
506 if (root_->ptrs[i1] == NULL) {
510 Leaf* leaf = reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2]);