Home
last modified time | relevance | path

Searched refs:t2 (Results 1 – 25 of 36) sorted by relevance

12

/php-src/tests/lang/
H A Dbug24951.phpt16 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 Dbug28721.phpt60 $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 Dstrlen.phpt36 $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 Dbug55086.phpt12 public function hello() { return 'hello from t2'; }
/php-src/ext/ffi/tests/
H A D033.phpt21 $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 D029.phpt11 typedef char _Alignas(int) t2;
14 var_dump(FFI::sizeof($ffi->new("struct {char a; t2 b;}")));
/php-src/ext/curl/tests/
H A Dbug70330.phpt7 $t2 = curl_init();
8 $t3 = curl_copy_handle($t2);
9 $t3 = curl_copy_handle($t2);
/php-src/ext/standard/tests/file/
H A Dbug49047.phpt11 $t2 = filemtime($testdir);
12 if ($t2 != $t) echo "failed (got $t2, expecting $t)\n";
/php-src/ext/zip/tests/
H A Doo_setmtime.phpt29 $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 Dbug-gh9106.phpt14 $t2 = $t1->add($oneAndHalfSec);
15 $t3 = $t2->add($oneAndHalfSec);
20 var_dump($t2->getTimestamp());
/php-src/ext/standard/tests/general_functions/
H A Dcall_user_func_return.phpt15 $t2 = 'test2';
19 global $t2;
21 return $t2;
/php-src/tests/classes/
H A Dfinal.phpt21 $t2 = new second();
22 $t2->show();
H A Dprivate_006b.phpt22 //$t2 = new second();
23 //$t2->do_show();
H A Dabstract_class.phpt16 $t2 = new pass();
17 $t2->show();
H A Dprivate_004b.phpt25 $t2 = new fail();
26 $t2->do_show();
/php-src/ext/mysqli/tests/
H A Dbug76386.phpt57 '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 = $t3 = $t4 = null;
71 $stmt->bind_result($tid, $t, $t2, $t4, $t6);
73 var_dump($t, $t2, $t4, $t6);
H A Dmysqli_explain_metadata.phpt13 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 Dbug_42589.phpt20 $result = $db->query('SELECT * FROM test_42589 t1 LEFT JOIN test_42589 t2 ON t1.field1 = t2.field1'…
/php-src/Zend/Optimizer/
H A Dzend_inference.c862 t1 = t2 = t3 = t4 = 0; in zend_inference_calc_binary_op_range()
2266 uint32_t t2_type = (t2 & MAY_BE_ANY) | (t2 & MAY_BE_UNDEF ? MAY_BE_NULL : 0); in binary_op_result_type()
2540 uint32_t t1, t2; in _zend_update_type_info() local
2553 t2 = OP2_INFO(); in _zend_update_type_info()
2758 t2 = OP1_DATA_INFO(); in _zend_update_type_info()
2765 t2 = OP1_DATA_INFO(); in _zend_update_type_info()
2769 t2 = OP1_DATA_INFO(); in _zend_update_type_info()
3094 tmp = t2; in _zend_update_type_info()
3181 t2 = OP1_DATA_INFO(); in _zend_update_type_info()
4995 if ((t2 & MAY_BE_RC1) in zend_may_throw_ex()
[all …]
H A Dzend_func_info.c63 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 Dtimelib.c75 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 Dbug29493.phpt26 function t2()
72 t2();
/php-src/ext/standard/
H A Dbase64.c653 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 Dhash_tiger.c41 t2[(unsigned char)(((uint32_t)(c))>>(2*8))] ^ \
46 t2[(unsigned char)(((uint32_t)((c)>>(4*8)))>>(1*8))] ^ \
/php-src/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp24 double t2; member

Completed in 85 milliseconds

12