/php-src/Zend/asm/ |
H A D | make_s390x_sysv_elf_gas.S | 75 nill %r2,0xfff0 78 aghi %r2,-CONTEXT_SIZE 82 mvghi GR_OFFSET(%r2),0 85 stfpc FPC_OFFSET(%r2) 88 stg %r4,PC_OFFSET(%r2) 95 stg %r1,R14_OFFSET(%r2) 104 lghi %r2,0
|
H A D | jump_s390x_sysv_elf_gas.S | 85 stg %r2,GR_OFFSET(%r15) 131 ltg %r2,GR_OFFSET(%r15) 137 la %r2,ARG_OFFSET(%r1) 145 stg %r1,0(%r2) 146 stg %r4,8(%r2)
|
/php-src/ext/reflection/tests/ |
H A D | ReflectionReference.phpt | 17 $r2 = ReflectionReference::fromArrayElement($ary, 2); 18 var_dump($r2 instanceof ReflectionReference); 20 var_dump($r2 instanceof ReflectionReference); 23 var_dump($r2->getId() === $r2->getId()); 25 var_dump($r2->getId() !== $r3->getId()); 31 var_dump($r2->getId() === $r2_2->getId()); 35 $r2_id = $r2->getId(); 37 unset($r0, $r1, $r2, $r3, $r2_2, $r3_2); 38 $r2 = ReflectionReference::fromArrayElement($ary, 2); 40 var_dump($r2_id === $r2->getId());
|
H A D | ReflectionObject_getName_basic.phpt | 11 $r2 = new ReflectionObject($myInstance); 12 var_dump($r2->getName()); 14 $r3 = new ReflectionObject($r2);
|
H A D | ReflectionObject_constructor_basic.phpt | 10 $r2 = new ReflectionObject($myInstance); 11 var_dump($r2); 13 $r3 = new ReflectionObject($r2);
|
H A D | ReflectionClass_getName_basic.phpt | 15 $r2 = new ReflectionClass($myInstance); 19 var_dump($r1->getName(), $r2->getName(), $r3->getName());
|
H A D | ReflectionClass_isInternal_basic.phpt | 9 $r2 = new ReflectionClass("ReflectionClass"); 14 var_dump($r1->isInternal(), $r2->isInternal(), $r3->isInternal(),
|
H A D | ReflectionClass_isUserDefined_basic.phpt | 9 $r2 = new ReflectionClass("ReflectionClass"); 14 var_dump($r1->isUserDefined(), $r2->isUserDefined(), $r3->isUserDefined(),
|
H A D | ReflectionParameter_isVariadic_basic.phpt | 11 $r2 = new ReflectionFunction('test2'); 15 var_dump($r2->getParameters()[0]->isVariadic());
|
H A D | ReflectionClass_constructor_001.phpt | 8 $r2 = new ReflectionClass($myInstance); 19 var_dump($r1, $r2, $r3);
|
H A D | ReflectionObject_isInternal_basic.phpt | 9 $r2 = new ReflectionObject(new ReflectionClass('C')); 14 var_dump($r1->isInternal(), $r2->isInternal(), $r3->isInternal(),
|
H A D | ReflectionObject_isUserDefined_basic.phpt | 9 $r2 = new ReflectionObject(new ReflectionClass('C')); 14 var_dump($r1->isUserDefined(), $r2->isUserDefined(), $r3->isUserDefined(),
|
/php-src/ext/opcache/jit/ir/ |
H A D | gen_ir_fold_hash.c | 37 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 65 for (r2 = 0; r2 < 32; r2++) { 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 D | bug81225_2.phpt | 18 …$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 … + (-2147483649); // 0xFFFF,FFFF,7FFF,FFFF cannot encoded as imm field of lea r1, [r2 + imm] 29 … + (-261458978401740); // 0xFFFF,1234,5678,1234 cannot encoded as imm field of lea r1, [r2 + imm] 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 … - (-2147483648); // 0xFFFF,FFFF,8000,0000 cannot encoded as imm field of lea r1, [r2 + imm] 50 … - (-2147483649); // 0xFFFF,FFFF,7FFF,FFFF cannot encoded as imm field of lea r1, [r2 + imm] 51 … - (-261458978401740); // 0xFFFF,1234,5678,1234 cannot encoded as imm field of lea r1, [r2 + imm]
|
/php-src/Zend/tests/closures/ |
H A D | closure_068.phpt | 10 $r2 = new \ReflectionFunction('Foo\\foo'); 16 var_dump($r->getShortName() === $r2->getShortName()); 17 var_dump($r->getNamespaceName() === $r2->getNamespaceName()); 18 var_dump($r->inNamespace() === $r2->inNamespace());
|
/php-src/ext/sodium/tests/ |
H A D | crypto_secretstream.phpt | 28 $r2 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c2); 31 var_dump($msg2 === $r2[0]); 33 var_dump($r2[1]); 48 $r2 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c2); 49 var_dump($r2);
|
/php-src/ext/intl/tests/ |
H A D | resourcebundle_arrayaccess.phpt | 20 $r2 = $r['testtable']; 21 printf( "testtable: %d\n", $r2['major'] ); 23 $r2 = $r['testarray']; 24 printf( "testarray: %s\n", $r2[2] );
|
H A D | resourcebundle_individual.phpt | 22 $r2 = ut_resourcebundle_get($r, 'testtable' ); 23 $str_res .= sprintf( "testtable: %d\n", ut_resourcebundle_get($r2, 'major' ) ); 25 $r2 = ut_resourcebundle_get($r,'testarray' ); 26 $str_res .= sprintf( "testarray: %s\n", ut_resourcebundle_get($r2, 2 ) );
|
/php-src/ext/fileinfo/tests/upstream/ |
H A D | gpkg-1-zst.testfile | 1 …r2-1/gpkg-1000064400000…
|
/php-src/ext/standard/tests/math/ |
H A D | log10_basic.phpt | 39 $r2 = log10($arg_2); 40 var_dump($r2); 41 if (allowed_rounding_error($r2 ,2.0 )) {
|
H A D | deg2rad_basic.phpt | 40 $r2 = deg2rad($arg_2); 41 var_dump($r2); 42 if (allowed_rounding_error($r2 ,3.1415926535898 )) {
|
H A D | rad2deg_basic.phpt | 38 $r2 = rad2deg($arg_2); 39 var_dump($r2); 40 if (allowed_rounding_error($r2 ,180.0000000235 )) {
|
/php-src/Zend/tests/type_declarations/ |
H A D | typed_properties_094.phpt | 29 $r2 =& $b2->getRef(); 31 $r2 = "foo"; // ok
|
/php-src/ext/standard/tests/assert/ |
H A D | assert_basic1.phpt | 15 var_dump($r2=assert(0)); 16 var_dump($r2=assert(1));
|
H A D | assert_basic.phpt | 16 var_dump($r2 = assert(0)); 17 var_dump($r2 = assert(1));
|