• Home
  • Raw
  • Download

Lines Matching refs:val_idx

616     uint32_t val_idx = key_idx + 1;  in hamt_node_bitmap_clone_without()  local
625 for (i = val_idx + 1; i < (uint32_t)Py_SIZE(o); i++) { in hamt_node_bitmap_clone_without()
731 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_assoc() local
733 assert(val_idx < (size_t)Py_SIZE(self)); in hamt_node_bitmap_assoc()
736 PyObject *val_or_node = self->b_array[val_idx]; in hamt_node_bitmap_assoc()
761 Py_SETREF(ret->b_array[val_idx], (PyObject*)sub_node); in hamt_node_bitmap_assoc()
787 Py_SETREF(ret->b_array[val_idx], val); in hamt_node_bitmap_assoc()
815 Py_SETREF(ret->b_array[val_idx], (PyObject *)sub_node); in hamt_node_bitmap_assoc()
924 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_assoc() local
948 new_node->b_array[val_idx] = val; in hamt_node_bitmap_assoc()
978 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_without() local
981 PyObject *val_or_node = self->b_array[val_idx]; in hamt_node_bitmap_without()
1039 Py_SETREF(clone->b_array[val_idx], val); in hamt_node_bitmap_without()
1063 Py_SETREF(clone->b_array[val_idx], in hamt_node_bitmap_without()
1114 uint32_t val_idx; in hamt_node_bitmap_find() local
1125 val_idx = key_idx + 1; in hamt_node_bitmap_find()
1127 assert(val_idx < (size_t)Py_SIZE(self)); in hamt_node_bitmap_find()
1130 val_or_node = self->b_array[val_idx]; in hamt_node_bitmap_find()
1377 Py_ssize_t val_idx = key_idx + 1; in hamt_node_collision_assoc() local
1379 if (self->c_array[val_idx] == val) { in hamt_node_collision_assoc()
1400 Py_DECREF(new_node->c_array[val_idx]); in hamt_node_collision_assoc()
1402 new_node->c_array[val_idx] = val; in hamt_node_collision_assoc()