Lines Matching refs:table
6 static ds_htable_bucket_t *find_starting_bucket(ds_htable_t *table) in find_starting_bucket() argument
8 ds_htable_bucket_t *bucket = table->buckets; in find_starting_bucket()
10 if (table->size != 0) { in find_starting_bucket()
11 ds_htable_bucket_t *last = table->buckets + table->capacity; in find_starting_bucket()
32 uint32_t size = iterator->table->size; in php_ds_htable_iterator_valid()
107 if (++iterator->position < iterator->table->size) { in php_ds_htable_iterator_move_forward()
119 iterator->bucket = find_starting_bucket(iterator->table); in php_ds_htable_iterator_rewind()
161 ds_htable_t *table, in php_ds_htable_create_htable_iterator() argument
179 iterator->table = table; in php_ds_htable_create_htable_iterator()
197 ds_htable_t *table in php_ds_htable_get_value_iterator_ex() argument
200 obj, table, &php_ds_htable_get_value_iterator_funcs, by_ref); in php_ds_htable_get_value_iterator_ex()
207 ds_htable_t *table in php_ds_htable_get_key_iterator_ex() argument
210 obj, table, &php_ds_htable_get_key_iterator_funcs, by_ref); in php_ds_htable_get_key_iterator_ex()
217 ds_htable_t *table in php_ds_htable_get_pair_iterator_ex() argument
220 obj, table, &php_ds_htable_get_pair_iterator_funcs, by_ref); in php_ds_htable_get_pair_iterator_ex()
227 ds_htable_t *table in php_ds_htable_get_assoc_iterator_ex() argument
230 obj, table, &php_ds_htable_get_assoc_iterator_funcs, by_ref); in php_ds_htable_get_assoc_iterator_ex()