Home | History | Annotate | Download | only in wtf

Lines Matching refs:i2

130     const Number i2 = k & (LEAF_LENGTH-1);
131 return root_[i1]->values[i2];
137 const Number i2 = k & (LEAF_LENGTH-1);
138 root_[i1]->values[i2] = v;
232 const Number i2 = (k >> LEAF_BITS) & (INTERIOR_LENGTH-1);
234 return reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3];
240 const Number i2 = (k >> LEAF_BITS) & (INTERIOR_LENGTH-1);
242 reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3] = v;
248 const Number i2 = (key >> LEAF_BITS) & (INTERIOR_LENGTH-1);
258 if (root_->ptrs[i1]->ptrs[i2] == NULL) {
262 root_->ptrs[i1]->ptrs[i2] = reinterpret_cast<Node*>(leaf);