Lines Matching refs:idx

232 	zend_ulong idx;  in zend_jit_symtable_find()  local
247 if (_zend_handle_numeric_str_ex(str->val, str->len, &idx)) { in zend_jit_symtable_find()
248 return zend_hash_index_find(ht, idx); in zend_jit_symtable_find()
255 static zval* ZEND_FASTCALL zend_jit_hash_index_lookup_rw_no_packed(HashTable *ht, zend_long idx) in zend_jit_hash_index_lookup_rw_no_packed() argument
260 retval = _zend_hash_index_find(ht, idx); in zend_jit_hash_index_lookup_rw_no_packed()
263 retval = zend_undefined_offset_write(ht, idx); in zend_jit_hash_index_lookup_rw_no_packed()
268 static zval* ZEND_FASTCALL zend_jit_hash_index_lookup_rw(HashTable *ht, zend_long idx) in zend_jit_hash_index_lookup_rw() argument
270 zval *retval = zend_hash_index_find(ht, idx); in zend_jit_hash_index_lookup_rw()
273 retval = zend_undefined_offset_write(ht, idx); in zend_jit_hash_index_lookup_rw()
290 zend_ulong idx; in zend_jit_symtable_lookup_rw() local
306 if (_zend_handle_numeric_str_ex(str->val, str->len, &idx)) { in zend_jit_symtable_lookup_rw()
307 retval = zend_hash_index_find(ht, idx); in zend_jit_symtable_lookup_rw()
309 retval = zend_undefined_offset_write(ht, idx); in zend_jit_symtable_lookup_rw()
325 zend_ulong idx; in zend_jit_symtable_lookup_w() local
340 if (_zend_handle_numeric_str_ex(str->val, str->len, &idx)) { in zend_jit_symtable_lookup_w()
341 return zend_hash_index_lookup(ht, idx); in zend_jit_symtable_lookup_w()
1761 uintptr_t idx; in zend_jit_fetch_global_helper() local
1765 idx = (uintptr_t)CACHED_PTR_EX(cache_slot) - 1; in zend_jit_fetch_global_helper()
1766 if (EXPECTED(idx < EG(symbol_table).nNumUsed * sizeof(Bucket))) { in zend_jit_fetch_global_helper()
1767 Bucket *p = (Bucket*)((char*)EG(symbol_table).arData + idx); in zend_jit_fetch_global_helper()
1783 idx = (char*)value - (char*)EG(symbol_table).arData; in zend_jit_fetch_global_helper()
1785 CACHE_PTR_EX(cache_slot, (void*)(idx + 1)); in zend_jit_fetch_global_helper()
1787 idx = (char*)value - (char*)EG(symbol_table).arData; in zend_jit_fetch_global_helper()
1789 CACHE_PTR_EX(cache_slot, (void*)(idx + 1)); in zend_jit_fetch_global_helper()
1861 intptr_t idx = ZEND_DECODE_DYN_PROP_OFFSET(prop_offset); in zend_jit_fetch_obj_r_dynamic() local
1863 if (EXPECTED(idx < zobj->properties->nNumUsed * sizeof(Bucket))) { in zend_jit_fetch_obj_r_dynamic()
1864 Bucket *p = (Bucket*)((char*)zobj->properties->arData + idx); in zend_jit_fetch_obj_r_dynamic()
1882 intptr_t idx = (char*)retval - (char*)zobj->properties->arData; in zend_jit_fetch_obj_r_dynamic() local
1883 CACHE_PTR_EX(cache_slot + 1, (void*)ZEND_ENCODE_DYN_PROP_OFFSET(idx)); in zend_jit_fetch_obj_r_dynamic()
1919 intptr_t idx = ZEND_DECODE_DYN_PROP_OFFSET(prop_offset); in zend_jit_fetch_obj_is_dynamic() local
1921 if (EXPECTED(idx < zobj->properties->nNumUsed * sizeof(Bucket))) { in zend_jit_fetch_obj_is_dynamic()
1922 Bucket *p = (Bucket*)((char*)zobj->properties->arData + idx); in zend_jit_fetch_obj_is_dynamic()
1940 intptr_t idx = (char*)retval - (char*)zobj->properties->arData; in zend_jit_fetch_obj_is_dynamic() local
1941 CACHE_PTR_EX(cache_slot + 1, (void*)ZEND_ENCODE_DYN_PROP_OFFSET(idx)); in zend_jit_fetch_obj_is_dynamic()