Home
last modified time | relevance | path

Searched refs:idx (Results 51 – 75 of 127) sorted by relevance

123456

/php-src/ext/openssl/tests/
H A Dopenssl_encrypt_chacha20_poly1305.phpt16 foreach ($tests as $idx => $test) {
17 echo "TEST $idx\n";
H A Dopenssl_decrypt_ocb.phpt16 foreach ($tests as $idx => $test) {
17 echo "TEST $idx\n";
H A Dopenssl_encrypt_ccm.phpt17 foreach ($tests as $idx => $test) {
18 echo "$method - TEST $idx\n";
H A Dopenssl_encrypt_gcm.phpt16 foreach ($tests as $idx => $test) {
17 echo "TEST $idx\n";
H A Dopenssl_encrypt_ocb.phpt16 foreach ($tests as $idx => $test) {
17 echo "TEST $idx\n";
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_x86.h294 int idx; in dasm_link() local
295 for (idx = 10; idx*sizeof(int) < D->lgsize; idx++) { in dasm_link()
296 int n = D->lglabels[idx]; in dasm_link()
298 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link()
494 int idx = *p++; in dasm_encode() local
495 if (idx >= 10) in dasm_encode()
496 D->globals[idx-10] = (void *)(base + (*p == DASM_SETLABEL ? *b : n)); in dasm_encode()
H A Ddasm_mips.h270 int idx; in dasm_link() local
271 for (idx = 10; idx*sizeof(int) < D->lgsize; idx++) { in dasm_link()
272 int n = D->lglabels[idx]; in dasm_link()
274 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link()
H A Ddasm_ppc.h274 int idx; in dasm_link() local
275 for (idx = 10; idx*sizeof(int) < D->lgsize; idx++) { in dasm_link()
276 int n = D->lglabels[idx]; in dasm_link()
278 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link()
H A Ddasm_arm.h291 int idx; in dasm_link() local
292 for (idx = 10; idx*sizeof(int) < D->lgsize; idx++) { in dasm_link()
293 int n = D->lglabels[idx]; in dasm_link()
295 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link()
H A Dminilua.c5206 setnvalue(ra,idx);
5315 if(idx>0){
5322 luai_apicheck(L,idx!=0&&-idx<=L->top-L->base);
5323 return L->top+idx;
5325 else switch(idx){
5335 idx=(-10002)-idx;
5371 if(idx>=0){
5379 L->top+=idx+1;
5404 if(idx==(-10001)){
5412 if(idx<(-10002))
[all …]
H A Ddasm_arm64.h365 int idx; in dasm_link() local
366 for (idx = 10; idx*sizeof(int) < D->lgsize; idx++) { in dasm_link()
367 int n = D->lglabels[idx]; in dasm_link()
369 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link()
/php-src/ext/mbstring/
H A Dphp_unicode.c106 unsigned idx; in mph_lookup() local
108 idx = -g; in mph_lookup()
110 idx = mph_hash(g, code) % table_size; in mph_lookup()
113 if (table[2*idx] == code) { in mph_lookup()
114 return table[2*idx + 1]; in mph_lookup()
/php-src/ext/spl/tests/
H A Diterator_042.phpt30 $idx = 0;
34 echo '===' . $idx++ . "===\n";
H A Dspl_autoload_008.phpt41 foreach($funcs as $idx => $func)
43 echo "====$idx====\n";
H A Dspl_autoload_007.phpt40 foreach($funcs as $idx => $func)
42 if ($idx) echo "\n";
/php-src/ext/opcache/tests/
H A Dassign_obj_op_of_fetch_dim.phpt2 Type inference for $ary[$idx]->prop +=
/php-src/ext/mbstring/ucgendat/
H A Ducgendat.php456 $idx = 0;
459 $propOffsets[] = $idx;
460 $idx += 2*$num;
464 $propOffsets[] = $idx;
473 $totalRanges = $idx;
520 $idx = count($data->extraCaseData);
521 $data->caseMaps[$type][$code] = ($len << 24) | $idx;
/php-src/Zend/
H A Dzend_types.h445 # define HT_IDX_TO_HASH(idx) \ argument
446 ((idx) * sizeof(Bucket))
447 # define HT_HASH_TO_IDX(idx) \ argument
448 ((idx) / sizeof(Bucket))
452 ((data) + (idx))
453 # define HT_IDX_TO_HASH(idx) \ argument
454 (idx)
455 # define HT_HASH_TO_IDX(idx) \ argument
456 (idx)
463 #define HT_HASH(ht, idx) \ argument
[all …]
H A Dzend_portability.h247 # define ZEND_ATTRIBUTE_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first))) argument
249 # define ZEND_ATTRIBUTE_FORMAT(type, idx, first) argument
253 # define ZEND_ATTRIBUTE_PTR_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first))) argument
255 # define ZEND_ATTRIBUTE_PTR_FORMAT(type, idx, first) argument
/php-src/ext/gd/libgd/
H A Dgd_jpeg.c259 int idx = im->pixels[i][j]; in _gdImageJpegCtx() local
266 row[jidx++] = im->red[idx]; in _gdImageJpegCtx()
267 row[jidx++] = im->green[idx]; in _gdImageJpegCtx()
268 row[jidx++] = im->blue[idx]; in _gdImageJpegCtx()
270 row[jidx++] = im->red[idx] << 4; in _gdImageJpegCtx()
271 row[jidx++] = im->green[idx] << 4; in _gdImageJpegCtx()
272 row[jidx++] = im->blue[idx] << 4; in _gdImageJpegCtx()
/php-src/ext/standard/
H A Dhttp.c108 zend_ulong idx; in php_url_encode_hash_ex() local
124 ZEND_HASH_FOREACH_KEY_VAL(ht, idx, key, zdata) { in php_url_encode_hash_ex()
178 index_int_as_str_len = spprintf(&index_int_as_str, 0, ZEND_LONG_FMT, idx); in php_url_encode_hash_ex()
208 enc_type, idx, in php_url_encode_hash_ex()
/php-src/ext/com_dotnet/
H A Dcom_typeinfo.c97 UINT idx; in php_com_load_typelib() local
101 hr = ITypeInfo_GetContainingTypeLib(info, &TL, &idx); in php_com_load_typelib()
341 unsigned int idx; in php_com_locate_typeinfo() local
343 ITypeInfo_GetContainingTypeLib(obj->typeinfo, &typelib, &idx); in php_com_locate_typeinfo()
348 unsigned int idx; in php_com_locate_typeinfo() local
350 ITypeInfo_GetContainingTypeLib(typeinfo, &typelib, &idx); in php_com_locate_typeinfo()
/php-src/ext/dom/lexbor/lexbor/core/
H A Darray_obj.c189 lexbor_array_obj_get_noi(lexbor_array_obj_t *array, size_t idx) in lexbor_array_obj_get_noi() argument
191 return lexbor_array_obj_get(array, idx); in lexbor_array_obj_get_noi()
/php-src/ext/opcache/jit/
H A Dzend_jit_helpers.c230 zend_ulong idx; in zend_jit_symtable_find() local
246 return zend_hash_index_find(ht, idx); in zend_jit_symtable_find()
258 retval = _zend_hash_index_find(ht, idx); in zend_jit_hash_index_lookup_rw_no_packed()
268 zval *retval = zend_hash_index_find(ht, idx); in zend_jit_hash_index_lookup_rw()
288 zend_ulong idx; in zend_jit_symtable_lookup_rw() local
305 retval = zend_hash_index_find(ht, idx); in zend_jit_symtable_lookup_rw()
323 zend_ulong idx; in zend_jit_symtable_lookup_w() local
339 return zend_hash_index_lookup(ht, idx); in zend_jit_symtable_lookup_w()
1776 uintptr_t idx; in zend_jit_fetch_global_helper() local
1799 CACHE_PTR_EX(cache_slot, (void*)(idx + 1)); in zend_jit_fetch_global_helper()
[all …]
/php-src/ext/dom/lexbor/lexbor/html/tree/
H A Dopen_elements.c135 lxb_html_tree_open_elements_pop_until(lxb_html_tree_t *tree, size_t idx, in lxb_html_tree_open_elements_pop_until() argument
138 tree->open_elements->length = idx; in lxb_html_tree_open_elements_pop_until()

Completed in 140 milliseconds

123456