• Home
  • Raw
  • Download

Lines Matching refs:val_idx

615     uint32_t val_idx = key_idx + 1;  in hamt_node_bitmap_clone_without()  local
624 for (i = val_idx + 1; i < (uint32_t)Py_SIZE(o); i++) { in hamt_node_bitmap_clone_without()
730 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_assoc() local
732 assert(val_idx < (size_t)Py_SIZE(self)); in hamt_node_bitmap_assoc()
735 PyObject *val_or_node = self->b_array[val_idx]; in hamt_node_bitmap_assoc()
760 Py_SETREF(ret->b_array[val_idx], (PyObject*)sub_node); in hamt_node_bitmap_assoc()
786 Py_SETREF(ret->b_array[val_idx], val); in hamt_node_bitmap_assoc()
814 Py_SETREF(ret->b_array[val_idx], (PyObject *)sub_node); in hamt_node_bitmap_assoc()
923 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_assoc() local
947 new_node->b_array[val_idx] = val; in hamt_node_bitmap_assoc()
977 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_without() local
980 PyObject *val_or_node = self->b_array[val_idx]; in hamt_node_bitmap_without()
1038 Py_SETREF(clone->b_array[val_idx], val); in hamt_node_bitmap_without()
1062 Py_SETREF(clone->b_array[val_idx], in hamt_node_bitmap_without()
1113 uint32_t val_idx; in hamt_node_bitmap_find() local
1124 val_idx = key_idx + 1; in hamt_node_bitmap_find()
1126 assert(val_idx < (size_t)Py_SIZE(self)); in hamt_node_bitmap_find()
1129 val_or_node = self->b_array[val_idx]; in hamt_node_bitmap_find()
1376 Py_ssize_t val_idx = key_idx + 1; in hamt_node_collision_assoc() local
1378 if (self->c_array[val_idx] == val) { in hamt_node_collision_assoc()
1399 Py_DECREF(new_node->c_array[val_idx]); in hamt_node_collision_assoc()
1401 new_node->c_array[val_idx] = val; in hamt_node_collision_assoc()