/php-src/tests/lang/ |
H A D | bug24951.phpt | 16 function t2() 19 echo "Hello from t2 1 "; 21 echo "Hello from t2 2 "; 34 t2(); echo "\n"; 40 [Hello from t2 1 Hello from t2 2 ]
|
/php-src/ext/dom/tests/ |
H A D | bug28721.phpt | 60 $p->appendChild($t2 = $xml->createTextNode(" t2 ")); 122 name (value): p ( t1 X t2 xxx ) 135 nextSibling: name (value): #text ( t2 ) 142 name (value): #text ( t2 ) 154 name (value): p (X t2 xxx t1 ) 162 nextSibling: name (value): #text ( t2 ) 169 name (value): #text ( t2 ) 253 name (value): p (X t2 xxx t1 ) 268 name (value): #text ( t2 ) 327 name (value): #text ( t2 ) [all …]
|
/php-src/Zend/tests/ |
H A D | strlen.phpt | 36 $t2 = new Test2($a); 37 var_dump(strlen($t2)); 38 var_dump($t2->something); 42 var_dump(strlen($t2)); 43 var_dump($t2->something);
|
H A D | bug55086.phpt | 12 public function hello() { return 'hello from t2'; }
|
/php-src/ext/ffi/tests/ |
H A D | 033.phpt | 21 $t2 = $ffi->type("uint16_t[2]"); 22 var_dump($t2); 23 $p4 = $ffi->new($t2); 26 $t2 = $ffi->type("uint32_t"); 27 var_dump($t2); 28 $t3 = FFI::arrayType($t2, [2, 2]);
|
H A D | 029.phpt | 11 typedef char _Alignas(int) t2; 14 var_dump(FFI::sizeof($ffi->new("struct {char a; t2 b;}")));
|
/php-src/ext/dom/lexbor/lexbor/core/ |
H A D | swar.h | 36 size_t bytes, matches, t1, t2, t3, t4; in lexbor_swar_seek4() local 43 t2 = bytes ^ LEXBOR_SWAR_REPEAT(c2); in lexbor_swar_seek4() 46 matches = LEXBOR_SWAR_HAS_ZERO(t1) | LEXBOR_SWAR_HAS_ZERO(t2) in lexbor_swar_seek4() 66 size_t bytes, matches, t1, t2, t3; in lexbor_swar_seek3() local 73 t2 = bytes ^ LEXBOR_SWAR_REPEAT(c2); in lexbor_swar_seek3() 75 matches = LEXBOR_SWAR_HAS_ZERO(t1) | LEXBOR_SWAR_HAS_ZERO(t2) in lexbor_swar_seek3()
|
/php-src/ext/curl/tests/ |
H A D | bug70330.phpt | 7 $t2 = curl_init(); 8 $t3 = curl_copy_handle($t2); 9 $t3 = curl_copy_handle($t2);
|
/php-src/ext/standard/tests/file/ |
H A D | bug49047.phpt | 11 $t2 = filemtime($testdir); 12 if ($t2 != $t) echo "failed (got $t2, expecting $t)\n";
|
/php-src/ext/zip/tests/ |
H A D | oo_setmtime.phpt | 29 $t2 = mktime(0,0,0,14,7,2018); 40 var_dump($s['mtime'] > $t2); 41 var_dump($zip->setMtimeIndex(1, $t2)); 43 // ONLY with 1.6.0 - var_dump($s['mtime'] == $t2); 61 var_dump($s['mtime'] == $t2);
|
/php-src/ext/date/tests/ |
H A D | bug-gh9106.phpt | 14 $t2 = $t1->add($oneAndHalfSec); 15 $t3 = $t2->add($oneAndHalfSec); 20 var_dump($t2->getTimestamp());
|
/php-src/ext/standard/tests/general_functions/ |
H A D | call_user_func_return.phpt | 15 $t2 = 'test2'; 19 global $t2; 21 return $t2;
|
/php-src/tests/classes/ |
H A D | final.phpt | 21 $t2 = new second(); 22 $t2->show();
|
H A D | private_006b.phpt | 22 //$t2 = new second(); 23 //$t2->do_show();
|
H A D | abstract_class.phpt | 16 $t2 = new pass(); 17 $t2->show();
|
H A D | private_004b.phpt | 25 $t2 = new fail(); 26 $t2->do_show();
|
/php-src/ext/mysqli/tests/ |
H A D | bug76386.phpt | 57 't time default "11:00:00", t2 time(2) default "11:00:00.22", t4 ' . 62 'INSERT INTO t_test (t, t2, t4, t6) VALUES ("21:22:33", "21:22:33.44", ' . 70 $tid = $t = $t2 = $t4 = null; 71 $stmt->bind_result($tid, $t, $t2, $t4, $t6); 73 var_dump($t, $t2, $t4, $t6);
|
H A D | mysqli_explain_metadata.phpt | 13 if (!$res = mysqli_query($link, 'EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2')) 64 … if ($stmt->prepare('EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2') && $stmt->execute()) { 98 if ($stmt->prepare('EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2') &&
|
/php-src/ext/pdo_sqlite/tests/ |
H A D | bug_42589.phpt | 20 $result = $db->query('SELECT * FROM test_42589 t1 LEFT JOIN test_42589 t2 ON t1.field1 = t2.field1'…
|
/php-src/Zend/Optimizer/ |
H A D | zend_inference.c | 852 t1 = t2 = t3 = t4 = 0; in zend_inference_calc_binary_op_range() 2260 uint32_t t2_type = (t2 & MAY_BE_ANY) | (t2 & MAY_BE_UNDEF ? MAY_BE_NULL : 0); in binary_op_result_type() 2534 uint32_t t1, t2; in _zend_update_type_info() local 2547 t2 = OP2_INFO(); in _zend_update_type_info() 2752 t2 = OP1_DATA_INFO(); in _zend_update_type_info() 2759 t2 = OP1_DATA_INFO(); in _zend_update_type_info() 2763 t2 = OP1_DATA_INFO(); in _zend_update_type_info() 3088 tmp = t2; in _zend_update_type_info() 3175 t2 = OP1_DATA_INFO(); in _zend_update_type_info() 4992 if ((t2 & MAY_BE_RC1) in zend_may_throw_ex() [all …]
|
H A D | zend_func_info.c | 63 uint32_t t2 = _ssa_op1_info(op_array, ssa, call_info->arg_info[1].opline, in zend_range_info() local 72 if ((t1 & MAY_BE_STRING) && (t2 & MAY_BE_STRING)) { in zend_range_info() 76 || (t2 & (MAY_BE_DOUBLE|MAY_BE_STRING)) in zend_range_info() 81 && (t2 & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_DOUBLE))) { in zend_range_info()
|
/php-src/ext/date/lib/ |
H A D | timelib.c | 75 int timelib_time_compare(timelib_time *t1, timelib_time *t2) in timelib_time_compare() argument 77 if (t1->sse == t2->sse) { in timelib_time_compare() 78 if (t1->us == t2->us) { in timelib_time_compare() 82 return (t1->us < t2->us) ? -1 : 1; in timelib_time_compare() 85 return (t1->sse < t2->sse) ? -1 : 1; in timelib_time_compare()
|
/php-src/ext/standard/tests/array/ |
H A D | bug29493.phpt | 26 function t2() 72 t2();
|
/php-src/ext/standard/ |
H A D | base64.c | 653 const __m512i t2 = _mm512_sllv_epi16(str, _mm512_set1_epi32(0x00080004)); in php_base64_encode_avx512() local 655 str = _mm512_ternarylogic_epi32(_mm512_set1_epi32(0x3f003f00), t2, t1, 0xca); in php_base64_encode_avx512() 735 const __m512i t2 = _mm512_permutexvar_epi32(s6, t1); in php_base64_decode_ex_avx512() local 738 _mm512_storeu_si512((__m512i *)o, t2); in php_base64_decode_ex_avx512() 766 __m256i t0, t1, t2, t3; in php_base64_encode_avx2_reshuffle() local 786 t2 = _mm256_and_si256(in, _mm256_set1_epi32(0x003f03f0)); in php_base64_encode_avx2_reshuffle() 788 t3 = _mm256_mullo_epi16(t2, _mm256_set1_epi32(0x01000010)); in php_base64_encode_avx2_reshuffle() 831 __m128i t0, t1, t2, t3; in php_base64_encode_ssse3_reshuffle() local 845 t2 = _mm_and_si128(in, _mm_set1_epi32(0x003f03f0)); in php_base64_encode_ssse3_reshuffle() 847 t3 = _mm_mullo_epi16(t2, _mm_set1_epi32(0x01000010)); in php_base64_encode_ssse3_reshuffle()
|
/php-src/ext/hash/ |
H A D | hash_tiger.c | 41 t2[(unsigned char)(((uint32_t)(c))>>(2*8))] ^ \ 46 t2[(unsigned char)(((uint32_t)((c)>>(4*8)))>>(1*8))] ^ \
|