Home | History | Annotate | Download | only in src

Lines Matching refs:ptrs

220     Node* ptrs[INTERIOR_LENGTH];
252 root_->ptrs[i1] == NULL || root_->ptrs[i1]->ptrs[i2] == NULL) {
255 return reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3];
263 reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3] = v;
276 if (root_->ptrs[i1] == NULL) {
279 root_->ptrs[i1] = n;
283 if (root_->ptrs[i1]->ptrs[i2] == NULL) {
287 root_->ptrs[i1]->ptrs[i2] = reinterpret_cast<Node*>(leaf);
303 if (root_->ptrs[i1] == NULL) {
307 Leaf* leaf = reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2]);