Home | History | Annotate | Download | only in wtf

Lines Matching refs:i1

129     const Number i1 = k >> LEAF_BITS;
131 return root_[i1]->values[i2];
136 const Number i1 = k >> LEAF_BITS;
138 root_[i1]->values[i2] = v;
143 const Number i1 = key >> LEAF_BITS;
146 if (root_[i1] == NULL) {
150 root_[i1] = leaf;
231 const Number i1 = k >> (LEAF_BITS + INTERIOR_BITS);
234 return reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3];
239 const Number i1 = k >> (LEAF_BITS + INTERIOR_BITS);
242 reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3] = v;
247 const Number i1 = key >> (LEAF_BITS + INTERIOR_BITS);
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);