Home
last modified time | relevance | path

Searched refs:idx (Results 26 – 50 of 100) sorted by relevance

1234

/PHP-8.1/ext/xmlreader/tests/
H A D015-move-errors.phpt11 …rg/" xmlns:ns2="http://www.ns2.namespace.org/"><book ns1:num="1" ns2:idx="2" ns1:idx="3" ns2:isbn=…
28 $reader->moveToAttributeNs('idx', null);
H A D004.phpt10 <books><book num="1" idx="2">book1</book></books>';
39 Attribute Name: idx
H A D015-get-errors.phpt11 …rg/" xmlns:ns2="http://www.ns2.namespace.org/"><book ns1:num="1" ns2:idx="2" ns1:idx="3" ns2:isbn=…
30 $attr = $reader->getAttributeNs('idx', null);
/PHP-8.1/Zend/
H A Dzend_string.c131 uint32_t idx; in zend_interned_string_ht_lookup_ex() local
135 idx = HT_HASH(interned_strings, nIndex); in zend_interned_string_ht_lookup_ex()
136 while (idx != HT_INVALID_IDX) { in zend_interned_string_ht_lookup_ex()
137 p = HT_HASH_TO_BUCKET(interned_strings, idx); in zend_interned_string_ht_lookup_ex()
143 idx = Z_NEXT(p->val); in zend_interned_string_ht_lookup_ex()
153 uint32_t idx; in zend_interned_string_ht_lookup() local
157 idx = HT_HASH(interned_strings, nIndex); in zend_interned_string_ht_lookup()
158 while (idx != HT_INVALID_IDX) { in zend_interned_string_ht_lookup()
159 p = HT_HASH_TO_BUCKET(interned_strings, idx); in zend_interned_string_ht_lookup()
163 idx = Z_NEXT(p->val); in zend_interned_string_ht_lookup()
H A Dzend_types.h414 # define HT_IDX_TO_HASH(idx) \ argument
415 ((idx) * sizeof(Bucket))
416 # define HT_HASH_TO_IDX(idx) \ argument
417 ((idx) / sizeof(Bucket))
421 ((data) + (idx))
422 # define HT_IDX_TO_HASH(idx) \ argument
423 (idx)
424 # define HT_HASH_TO_IDX(idx) \ argument
425 (idx)
432 #define HT_HASH(ht, idx) \ argument
[all …]
/PHP-8.1/ext/hash/
H A Dhash_sha3.c37 static inline unsigned char idx(unsigned char x, unsigned char y) { in idx() function
65 # define readLane(x, y) load64(ctx->state+sizeof(uint64_t)*idx(x, y))
66 # define writeLane(x, y, v) store64(ctx->state+sizeof(uint64_t)*idx(x, y), v)
67 # define XORLane(x, y, v) xor64(ctx->state+sizeof(uint64_t)*idx(x, y), v)
69 # define readLane(x, y) (((uint64_t*)ctx->state)[idx(x,y)])
70 # define writeLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] = v)
71 # define XORLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] ^= v)
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_trace.c1396 idx = 0; in zend_jit_trace_build_tssa()
1403 idx++; in zend_jit_trace_build_tssa()
1411 idx++; in zend_jit_trace_build_tssa()
1516 idx--; in zend_jit_trace_build_tssa()
1650 idx = 0; in zend_jit_trace_build_tssa()
2238 idx++; in zend_jit_trace_build_tssa()
2296 idx++; in zend_jit_trace_build_tssa()
2798 idx = 0; in zend_jit_trace_allocate_registers()
7337 idx = 0; in zend_jit_dump_trace()
7442 idx++; in zend_jit_dump_trace()
[all …]
/PHP-8.1/ext/posix/tests/
H A Dposix_getgrgid.phpt23 foreach ($grp['members'] as $idx => $username) {
24 if (!is_int($idx)) {
/PHP-8.1/ext/reflection/tests/
H A DReflectionType_001.phpt23 ] as $idx => $rf) {
25 echo "** Function $idx - Parameter $idx2\n";
43 ] as $idx => $rm) {
45 echo "** Method $idx - parameter $idx2\n";
66 ] as $idx => $rf) {
67 echo "** Function/method return type $idx\n";
/PHP-8.1/ext/spl/tests/
H A Dobserver_001.phpt48 $idx = array_search($observer, $this->observers);
49 if ($idx !== false)
51 unset($this->observers[$idx]);
H A Diterator_042.phpt30 $idx = 0;
34 echo '===' . $idx++ . "===\n";
/PHP-8.1/ext/standard/
H A Darray.c2920 for (j = 0, idx = 0; idx < hash->nNumUsed; idx++) {
2941 for (j = 0, idx = 0; idx < hash->nNumUsed; idx++) {
3028 for (pos = 0, idx = 0; pos < offset && idx < in_hash->nNumUsed; idx++) {
3085 for ( ; idx < in_hash->nNumUsed ; idx++) {
3233 for (idx = 0; idx < Z_ARRVAL_P(stack)->nNumUsed; idx++) {
3248 for (idx = 0; idx < Z_ARRVAL_P(stack)->nNumUsed; idx++) {
3271 for (idx = 0; idx < Z_ARRVAL_P(stack)->nNumUsed; idx++) {
4494 for (i = 0, idx = 0; idx < Z_ARRVAL_P(array)->nNumUsed; idx++) {
4744 for (idx = 0; idx < hash->nNumUsed; idx++) {
5118 for (idx = 0; idx < hash->nNumUsed; idx++) {
[all …]
H A Dhttp.c34 zend_ulong idx; in php_url_encode_hash_ex() local
51 ZEND_HASH_FOREACH_KEY_VAL(ht, idx, key, zdata) { in php_url_encode_hash_ex()
118 ekey_len = spprintf(&ekey, 0, ZEND_LONG_FMT, idx); in php_url_encode_hash_ex()
175 smart_str_append_long(formstr, idx); in php_url_encode_hash_ex()
/PHP-8.1/ext/openssl/tests/
H A Dopenssl_decrypt_gcm.phpt16 foreach ($tests as $idx => $test) {
17 echo "TEST $idx\n";
H A Dopenssl_decrypt_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_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_ocb.phpt16 foreach ($tests as $idx => $test) {
17 echo "TEST $idx\n";
/PHP-8.1/ext/mbstring/
H A Dphp_unicode.c105 unsigned idx; in mph_lookup() local
107 idx = -g; in mph_lookup()
109 idx = mph_hash(g, code) % table_size; in mph_lookup()
112 if (table[2*idx] == code) { in mph_lookup()
113 return table[2*idx + 1]; in mph_lookup()
/PHP-8.1/ext/opcache/jit/dynasm/
H A Ddasm_x86.h297 int idx; in dasm_link() local
298 for (idx = 10; idx*sizeof(int) < D->lgsize; idx++) { in dasm_link()
299 int n = D->lglabels[idx]; in dasm_link()
301 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link()
475 int idx = *p++; in dasm_encode() local
476 if (idx >= 10) in dasm_encode()
477 D->globals[idx] = (void *)(base + (*p == DASM_SETLABEL ? *b : n)); in dasm_encode()
H A Ddasm_mips.h275 int idx; in dasm_link() local
276 for (idx = 10; idx*sizeof(int) < D->lgsize; idx++) { in dasm_link()
277 int n = D->lglabels[idx]; in dasm_link()
279 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link()
H A Ddasm_ppc.h279 int idx; in dasm_link() local
280 for (idx = 10; idx*sizeof(int) < D->lgsize; idx++) { in dasm_link()
281 int n = D->lglabels[idx]; in dasm_link()
283 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link()
/PHP-8.1/ext/zip/
H A Dphp_zip.c2002 if (idx >= 0) {
2092 int idx; local
2112 if (idx < 0) {
2157 zip_int64_t idx; local
2173 if (idx < 0) {
2234 if (idx < 0) {
2301 if (idx < 0) {
2342 int idx; local
2362 if (idx < 0) {
2418 if (idx < 0) {
[all …]
/PHP-8.1/ext/opcache/tests/
H A Dassign_obj_op_of_fetch_dim.phpt2 Type inference for $ary[$idx]->prop +=

Completed in 81 milliseconds

1234