• Home
  • Raw
  • Download

Lines Matching refs:key_idx

615     uint32_t key_idx = 2 * idx;  in hamt_node_bitmap_clone_without()  local
616 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_clone_without()
619 for (i = 0; i < key_idx; i++) { in hamt_node_bitmap_clone_without()
730 uint32_t key_idx = 2 * idx; in hamt_node_bitmap_assoc() local
731 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_assoc()
735 PyObject *key_or_null = self->b_array[key_idx]; in hamt_node_bitmap_assoc()
814 Py_SETREF(ret->b_array[key_idx], NULL); in hamt_node_bitmap_assoc()
923 uint32_t key_idx = 2 * idx; in hamt_node_bitmap_assoc() local
924 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_assoc()
939 for (i = 0; i < key_idx; i++) { in hamt_node_bitmap_assoc()
946 new_node->b_array[key_idx] = key; in hamt_node_bitmap_assoc()
953 for (i = key_idx; i < (uint32_t)Py_SIZE(self); i++) { in hamt_node_bitmap_assoc()
977 uint32_t key_idx = 2 * idx; in hamt_node_bitmap_without() local
978 uint32_t val_idx = key_idx + 1; in hamt_node_bitmap_without()
980 PyObject *key_or_null = self->b_array[key_idx]; in hamt_node_bitmap_without()
1037 Py_XSETREF(clone->b_array[key_idx], key); in hamt_node_bitmap_without()
1113 uint32_t key_idx; in hamt_node_bitmap_find() local
1124 key_idx = idx * 2; in hamt_node_bitmap_find()
1125 val_idx = key_idx + 1; in hamt_node_bitmap_find()
1129 key_or_null = self->b_array[key_idx]; in hamt_node_bitmap_find()
1337 Py_ssize_t key_idx = -1; in hamt_node_collision_assoc() local
1343 found = hamt_node_collision_find_index(self, key, &key_idx); in hamt_node_collision_assoc()
1375 assert(key_idx >= 0); in hamt_node_collision_assoc()
1376 assert(key_idx < Py_SIZE(self)); in hamt_node_collision_assoc()
1377 Py_ssize_t val_idx = key_idx + 1; in hamt_node_collision_assoc()
1453 Py_ssize_t key_idx = -1; in hamt_node_collision_without() local
1454 hamt_find_t found = hamt_node_collision_find_index(self, key, &key_idx); in hamt_node_collision_without()
1464 assert(key_idx >= 0); in hamt_node_collision_without()
1465 assert(key_idx < Py_SIZE(self)); in hamt_node_collision_without()
1489 if (key_idx == 0) { in hamt_node_collision_without()
1496 assert(key_idx == 2); in hamt_node_collision_without()
1520 for (i = 0; i < key_idx; i++) { in hamt_node_collision_without()
1524 for (i = key_idx + 2; i < Py_SIZE(self); i++) { in hamt_node_collision_without()