Home
last modified time | relevance | path

Searched refs:entry_index (Results 1 – 15 of 15) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/base/
Decma-property-hashmap.c158 uint32_t entry_index = ecma_string_get_property_name_hash (prop_iter_p->types[i], in ecma_property_hashmap_create() local
160 …uint32_t step = ecma_property_hashmap_steps[entry_index & (ECMA_PROPERTY_HASHMAP_NUMBER_OF_STEPS -… in ecma_property_hashmap_create()
162 entry_index &= mask; in ecma_property_hashmap_create()
170 uint32_t start_entry_index = entry_index; in ecma_property_hashmap_create()
173 while (pair_list_p[entry_index] != ECMA_NULL_POINTER) in ecma_property_hashmap_create()
175 entry_index = (entry_index + step) & mask; in ecma_property_hashmap_create()
178 JERRY_ASSERT (entry_index != start_entry_index); in ecma_property_hashmap_create()
182 ECMA_SET_NON_NULL_POINTER (pair_list_p[entry_index], property_pair_p); in ecma_property_hashmap_create()
186 ECMA_PROPERTY_HASHMAP_SET_BIT (bits_p, entry_index); in ecma_property_hashmap_create()
243 uint32_t entry_index = ecma_string_hash (name_p); in ecma_property_hashmap_insert() local
[all …]
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dgstisoff.c141 parser->sidx.entry_index = 0; in gst_isoff_qt_sidx_parser_add_data()
146 while (parser->sidx.entry_index < parser->sidx.entries_count) { in gst_isoff_qt_sidx_parser_add_data()
148 &parser->sidx.entries[parser->sidx.entry_index]; in gst_isoff_qt_sidx_parser_add_data()
164 G_GUINT32_FORMAT, parser->sidx.entry_index, entry->offset, in gst_isoff_qt_sidx_parser_add_data()
168 parser->sidx.entry_index++; in gst_isoff_qt_sidx_parser_add_data()
171 if (parser->sidx.entry_index == parser->sidx.entries_count) in gst_isoff_qt_sidx_parser_add_data()
176 parser->sidx.entry_index = 0; in gst_isoff_qt_sidx_parser_add_data()
Dgstisoff.h67 gint entry_index; member
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-name-table.hh39 #define entry_index var.u16[1] macro
191 if (a->entry_index != b->entry_index) in _hb_ot_name_entry_cmp()
192 return a->entry_index - b->entry_index; in _hb_ot_name_entry_cmp()
301 entry->entry_index = i; in init()
343 return entry->entry_index; in get_index()
373 #undef entry_index
/third_party/harfbuzz/src/
Dhb-ot-name-table.hh39 #define entry_index var.u16[1] macro
191 if (a->entry_index != b->entry_index) in _hb_ot_name_entry_cmp()
192 return a->entry_index - b->entry_index; in _hb_ot_name_entry_cmp()
297 entry->entry_index = i; in init()
339 return entry->entry_index; in get_index()
369 #undef entry_index
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-ot-name-table.hh39 #define entry_index var.u16[1] macro
161 if (a->entry_index != b->entry_index) in _hb_ot_name_entry_cmp()
162 return a->entry_index < b->entry_index ? -1 : +1; in _hb_ot_name_entry_cmp()
259 entry->entry_index = i; in init()
303 return entry->entry_index; in get_index()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/isoff/
Dgstisoff.c884 parser->sidx.entry_index = 0; in gst_isoff_sidx_parser_parse()
889 while (parser->sidx.entry_index < parser->sidx.entries_count) { in gst_isoff_sidx_parser_parse()
891 &parser->sidx.entries[parser->sidx.entry_index]; in gst_isoff_sidx_parser_parse()
907 G_GUINT32_FORMAT, parser->sidx.entry_index, entry->offset, in gst_isoff_sidx_parser_parse()
911 parser->sidx.entry_index++; in gst_isoff_sidx_parser_parse()
914 if (parser->sidx.entry_index == parser->sidx.entries_count) in gst_isoff_sidx_parser_parse()
919 parser->sidx.entry_index = 0; in gst_isoff_sidx_parser_parse()
Dgstisoff.h260 gint entry_index; member
/third_party/python/Python/
Dhashtable.c300 size_t entry_index = entry->key_hash & (new_size - 1); in hashtable_rehash() local
302 _Py_slist_prepend(&new_buckets[entry_index], (_Py_slist_item_t*)entry); in hashtable_rehash()
/third_party/gstreamer/gstplugins_bad/ext/dash/
Dgstdashdemux.c436 #define SIDX_CURRENT_ENTRY(s) SIDX_ENTRY(s, SIDX(s)->entry_index)
1458 g_assert (sidx->entry_index < sidx->entries_count); in gst_dash_demux_stream_sidx_seek()
1460 sidx->entry_index = idx; in gst_dash_demux_stream_sidx_seek()
1577 if (sidx->entry_index + 1 < sidx->entries_count) in gst_dash_demux_stream_has_next_subfragment()
1580 if (sidx->entry_index >= 1) in gst_dash_demux_stream_has_next_subfragment()
1702 gint idx = ++sidx->entry_index; in gst_dash_demux_stream_advance_subfragment()
1713 gint idx = --sidx->entry_index; in gst_dash_demux_stream_advance_subfragment()
1725 "Finished fragment: %d", sidx->entry_index, sidx->entries_count, in gst_dash_demux_stream_advance_subfragment()
2249 if (SIDX (dashstream)->entry_index < SIDX (dashstream)->entries_count) in gst_dash_demux_stream_select_bitrate()
2251 else if (SIDX (dashstream)->entry_index >= in gst_dash_demux_stream_select_bitrate()
[all …]
/third_party/gstreamer/gstreamer/gst/
Dgstmessage.c3368 gst_message_parse_redirect_entry (GstMessage * message, gsize entry_index, in gst_message_parse_redirect_entry() argument
3400 val = gst_value_list_get_value (entry_locations_gvalue, entry_index); in gst_message_parse_redirect_entry()
3406 val = gst_value_list_get_value (entry_taglists_gvalue, entry_index); in gst_message_parse_redirect_entry()
3412 val = gst_value_list_get_value (entry_structures_gvalue, entry_index); in gst_message_parse_redirect_entry()
Dgstmessage.h861 void gst_message_parse_redirect_entry (GstMessage * message, gsize entry_index, cons…
/third_party/chromium/patch/
D0004-ohos-3.2-Beta5.patch6323 + int entry_index = controller.GetLastCommittedEntryIndex();
6325 + pickle.WriteInt(entry_index);
6371 + int entry_index = -2;
6372 + if (!iterator.ReadInt(&entry_count) || !iterator.ReadInt(&entry_index) ||
6373 + entry_index >= entry_count) {
6391 + controller.Restore(entry_index, content::RestoreType::kRestored, &entries);
D0001-cve.patch38423 #undef entry_index
D0003-ohos-1115.patch54709 int entry_index = 0;