Home
last modified time | relevance | path

Searched refs:r1 (Results 1 – 25 of 39) sorted by relevance

12

/php-src/Zend/asm/
H A Djump_ppc32_sysv_macho_gas.S81 subi r1, r1, 244
83 stfd f14, 0(r1) ; save F14
127 stw r0, 232(r1)
130 stw r0, 236(r1)
132 stw r0, 240(r1)
135 mr r6, r1
138 mr r1, r4
183 lwz r0, 232(r1)
186 lwz r0, 236(r1)
189 lwz r0, 240(r1)
[all …]
H A Djump_ppc64_sysv_macho_gas.S75 subi r1, r1, 184
77 std r14, 8(r1) ; save R14
99 std r0, 160(r1)
102 std r0, 168(r1)
104 std r0, 176(r1)
107 mr r6, r1
110 mr r1, r4
133 ld r0, 160(r1)
136 ld r0, 168(r1)
140 ld r12, 176(r1)
[all …]
H A Djump_ppc64_sysv_elf_gas.S100 subi %r1, %r1, 184
129 std %r0, 160(%r1)
132 std %r0, 168(%r1)
134 std %r0, 176(%r1)
137 mr %r6, %r1
141 mr %r1, %r3
144 mr %r1, %r4
171 ld %r0, 160(%r1)
174 ld %r0, 168(%r1)
178 ld %r12, 176(%r1)
[all …]
H A Djump_ppc32_sysv_elf_gas.S66 stwu %r1, -240(%r1) # allocate stack space, R1 % 16 == 0
67 stw %r0, 244(%r1) # save LR in caller's frame
181 lwz %r0, 244(%r1)
185 addi %r1, %r1, 240
H A Dmake_s390x_sysv_elf_gas.S94 larl %r1,finish
95 stg %r1,R14_OFFSET(%r2)
/php-src/ext/intl/tests/
H A Dresourcebundle_create.phpt13 $r1 = ut_resourcebundle_create( 'root', BUNDLE );
14 $str_res .= debug( $r1 );
15 $str_res .= print_r( $r1['teststring'], true)."\n";
18 $r1 = ut_resourcebundle_create( 'es', BUNDLE );
19 $str_res .= debug( $r1 );
20 $str_res .= print_r( $r1['teststring'], true)."\n";
23 $r1 = ut_resourcebundle_create( 'en_US', BUNDLE );
24 $str_res .= debug( $r1 );
25 $str_res .= print_r( $r1['testsring'], true);
/php-src/ext/sodium/tests/
H A Dcrypto_secretstream.phpt27 $r1 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c1, $ad);
30 var_dump($msg1 === $r1[0]);
32 var_dump($r1[1]);
39 $r1 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c1);
40 var_dump($r1);
41 $r1 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c1, $ad);
42 var_dump($msg1 === $r1[0]);
46 $r1 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c1, $ad);
47 var_dump($r1);
/php-src/ext/pdo_sqlite/tests/
H A Dbug46139.phpt21 $r1 = $stmt->fetch();
22 printf("'%s'\n", $r1->test_prop);
26 $r1 = $stmt->fetchAll();
27 printf("'%s'\n", $r1[0]->test_prop);
31 $r1 = $stmt->fetch(PDO::FETCH_CLASS | PDO::FETCH_PROPS_LATE);
32 printf("'%s'\n", $r1->test_prop);
/php-src/ext/opcache/jit/ir/
H A Dgen_ir_fold_hash.c37 static uint32_t hash_shl2(uint32_t mask, uint32_t r1, uint32_t r2) in hash_shl2() argument
39 return ((mask << r1) - mask) << r2; in hash_shl2()
47 static uint32_t hash_rol2(uint32_t mask, uint32_t r1, uint32_t r2) in hash_rol2() argument
49 return ir_rol((ir_rol(mask, r1) - mask), r2); in hash_rol2()
57 uint32_t n, r1, r2, i, h; in find_hash() local
64 for (r1 = 0; r1 < 31; r1++) { in find_hash()
69 h = hash_shl2(mask[i] & 0x1fffff, r1, r2) % n; in find_hash()
90 …int32_t _ir_fold_hashkey(uint32_t h)\n{\n\treturn (((h << %d) - h) << %d) %% %d;\n}\n", r1, r2, n); in find_hash()
97 h = hash_rol2(mask[i] & 0x1fffff, r1, r2) % n; in find_hash()
118 …r_fold_hashkey(uint32_t h)\n{\nreturn ir_rol32((ir_rol32(h, %d) - h), %d) %% %d;\n}\n", r1, r2, n); in find_hash()
/php-src/ext/opcache/tests/jit/
H A Dbug81225_2.phpt18 …$e = $a + 2147483648; // 0x8000,0000 cannot encoded as imm field of lea r1, [r2 + imm]
19 …$f = $a + 78187493394; // 0x12,1234,5678 cannot encoded as imm field of lea r1, [r2 + imm]
28 …$e = $a + (-2147483649); // 0xFFFF,FFFF,7FFF,FFFF cannot encoded as imm field of lea r1, [r…
29 …$f = $a + (-261458978401740); // 0xFFFF,1234,5678,1234 cannot encoded as imm field of lea r1, [r…
39 …$f = $a - 2147483649; // 0x8000,0001 cannot encoded as imm field of lea r1, [r2 + imm]
40 …$g = $a - 78187493394; // 0x12,1234,5678 cannot encoded as imm field of lea r1, [r2 + imm]
49 …$e = $a - (-2147483648); // 0xFFFF,FFFF,8000,0000 cannot encoded as imm field of lea r1, [r…
50 …$f = $a - (-2147483649); // 0xFFFF,FFFF,7FFF,FFFF cannot encoded as imm field of lea r1, [r…
51 …$g = $a - (-261458978401740); // 0xFFFF,1234,5678,1234 cannot encoded as imm field of lea r1, [r…
/php-src/ext/soap/tests/
H A Dbug69280.phpt37 $r1 = new \RealClass1();
38 $r1->prop = "prop";
39 $r1->prop1 = "prop1";
40 $a->TestMethod($r1);
/php-src/ext/calendar/
H A Djewish.c431 register zend_ulong r1, r2, d1, d2; in MoladOfMetonicCycle() local
434 r1 = NEW_MOON_OF_CREATION; in MoladOfMetonicCycle()
439 r1 += metonicCycle * (HALAKIM_PER_METONIC_CYCLE & 0xFFFF); in MoladOfMetonicCycle()
440 r2 = r1 >> 16; in MoladOfMetonicCycle()
448 r1 = (r2 << 16) | (r1 & 0xFFFF); in MoladOfMetonicCycle()
449 d1 = r1 / HALAKIM_PER_DAY; in MoladOfMetonicCycle()
450 r1 -= d1 * HALAKIM_PER_DAY; in MoladOfMetonicCycle()
453 *pMoladHalakim = r1; in MoladOfMetonicCycle()
/php-src/ext/standard/tests/math/
H A Dlog10_basic.phpt29 $r1 = log10($arg_1);
30 var_dump($r1);
31 if (allowed_rounding_error($r1 ,1.0 )) {
H A Ddeg2rad_basic.phpt31 $r1 = deg2rad($arg_1);
32 var_dump($r1);
33 if (allowed_rounding_error($r1 ,1.5707963267949 )) {
H A Drad2deg_basic.phpt29 $r1 = rad2deg($arg_1);
30 var_dump($r1);
31 if (allowed_rounding_error($r1 ,90.000000011752)) {
/php-src/ext/reflection/tests/
H A DReflectionObject_getName_basic.phpt6 $r1 = new ReflectionObject(new stdClass);
7 var_dump($r1->getName());
H A DReflectionClass_getName_basic.phpt12 $r1 = new ReflectionClass("stdClass");
19 var_dump($r1->getName(), $r2->getName(), $r3->getName());
H A DReflectionClass_isInternal_basic.phpt8 $r1 = new ReflectionClass("stdClass");
14 var_dump($r1->isInternal(), $r2->isInternal(), $r3->isInternal(),
H A DReflectionClass_isUserDefined_basic.phpt8 $r1 = new ReflectionClass("stdClass");
14 var_dump($r1->isUserDefined(), $r2->isUserDefined(), $r3->isUserDefined(),
H A DReflectionObject_constructor_basic.phpt5 $r1 = new ReflectionObject(new stdClass);
6 var_dump($r1);
H A DReflectionParameter_isVariadic_basic.phpt10 $r1 = new ReflectionFunction('test1');
14 var_dump($r1->getParameters()[0]->isVariadic());
H A DReflectionClass_constructor_001.phpt5 $r1 = new ReflectionClass("stdClass");
19 var_dump($r1, $r2, $r3);
H A DReflectionObject_isInternal_basic.phpt8 $r1 = new ReflectionObject(new stdClass);
14 var_dump($r1->isInternal(), $r2->isInternal(), $r3->isInternal(),
H A DReflectionObject_isUserDefined_basic.phpt8 $r1 = new ReflectionObject(new stdClass);
14 var_dump($r1->isUserDefined(), $r2->isUserDefined(), $r3->isUserDefined(),
H A DReflectionReference.phpt15 $r1 = ReflectionReference::fromArrayElement($ary, 1);
16 var_dump($r1 === null);
37 unset($r0, $r1, $r2, $r3, $r2_2, $r3_2);

Completed in 28 milliseconds

12