Home
last modified time | relevance | path

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

12

/php-src/ext/dom/tests/
H A Dbug28721.phpt57 $p->appendChild($t1 = $xml->createTextNode(" t1 "));
65 echo "\nAppend t1 to p:\n";
66 $ret = $p->appendChild($t1);
71 echo "t1 == ret: ";
72 var_dump( $t1 === $ret );
127 name (value): #text ( t1 )
152 Append t1 to p:
179 name (value): #text ( t1 )
184 t1 == ret: bool(true)
278 name (value): #text ( t1 )
[all …]
/php-src/tests/lang/
H A Dbug24951.phpt9 function t1()
12 echo "Hello from t1 1 ";
13 echo "Hello from t1 2 ";
33 t1(); echo "\n";
38 [Hello from t1 1 Hello from t1 2 ]
/php-src/ext/sqlite3/tests/
H A Dbug73068.phpt15 $db->exec("CREATE TABLE IF NOT EXISTS t1(a INT UNIQUE, b INT)");
16 $db->exec("INSERT OR REPLACE INTO t1(a,b) VALUES('1','2')");
18 $r = $db->query("SELECT * FROM t1 WHERE a='1' AND b='2'");
21 $db->exec("DELETE FROM t1 WHERE a='1' AND b='2'");
23 $r = $db->query("SELECT * FROM t1;");
/php-src/Zend/Optimizer/
H A Dzend_inference.c2650 tmp = t1; in _zend_update_type_info()
2701 tmp = t1; in _zend_update_type_info()
2756 orig = t1; in _zend_update_type_info()
2763 orig = t1; in _zend_update_type_info()
3173 tmp = t1; in _zend_update_type_info()
3232 tmp = t1; in _zend_update_type_info()
3288 tmp = t1; in _zend_update_type_info()
3427 tmp = t1; in _zend_update_type_info()
3483 tmp = t1; in _zend_update_type_info()
3967 tmp = t1; in _zend_update_type_info()
[all …]
H A Dzend_func_info.c61 uint32_t t1 = _ssa_op1_info(op_array, ssa, call_info->arg_info[0].opline, in zend_range_info() local
72 if ((t1 & MAY_BE_STRING) && (t2 & MAY_BE_STRING)) { in zend_range_info()
75 if ((t1 & (MAY_BE_DOUBLE|MAY_BE_STRING)) in zend_range_info()
80 if ((t1 & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_DOUBLE)) in zend_range_info()
/php-src/ext/zip/tests/
H A Doo_setmtime.phpt28 $t1 = mktime(0,0,0,12,25,2019);
33 var_dump($s['mtime'] > $t1);
34 var_dump($zip->setMtimeName('foo', $t1));
36 // ONLY with 1.6.0 - var_dump($s['mtime'] == $t1);
57 var_dump($s['mtime'] == $t1);
/php-src/ext/date/tests/
H A Dbug-gh9106.phpt13 $t1 = $start->add($oneAndHalfSec);
14 $t2 = $t1->add($oneAndHalfSec);
19 var_dump($t1->getTimestamp());
/php-src/ext/standard/tests/general_functions/
H A Dcall_user_func_return.phpt6 $t1 = 'test1';
10 global $t1;
12 return $t1;
/php-src/Zend/tests/
H A Dbug55086.phpt8 public function hello() { return 'hello from t1'; }
35 hello from t1
36 hello from t1
H A Dfunction_arguments_003.phpt7 function t1($a = 1 + 1, $b = 1 << 2, $c = "foo" . "bar", $d = a * 10) {
11 t1();
/php-src/ext/hash/
H A Dhash_snefru.c44 const uint32_t *t0,*t1; in Snefru() local
66 t1 = tables[2*index+1]; in Snefru()
70 round(B01, B02, B03, t1); in Snefru()
71 round(B02, B03, B04, t1); in Snefru()
74 round(B05, B06, B07, t1); in Snefru()
75 round(B06, B07, B08, t1); in Snefru()
78 round(B09, B10, B11, t1); in Snefru()
79 round(B10, B11, B12, t1); in Snefru()
82 round(B13, B14, B15, t1); in Snefru()
83 round(B14, B15, B00, t1); in Snefru()
/php-src/ext/ffi/tests/
H A D029.phpt10 typedef char t1;
13 var_dump(FFI::sizeof($ffi->new("struct {char a; t1 b;}")));
H A D033.phpt15 $t1 = FFI::typeof($p1);
16 var_dump($t1);
18 $p4 = $ffi->new($t1);
H A Ddeprecations.phpt24 $t1 = FFI::type("uint16_t[2]");
/php-src/tests/classes/
H A Dprivate_006b.phpt16 $t1 = new first();
17 $t1->do_show();
H A Dincdec_property_002.phpt24 $t1 = $obj->a++;
H A Dincdec_property_004.phpt24 $t1 = ++$obj->a;
/php-src/ext/mysqli/tests/
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') &&
H A Dmysqli_get_warnings.phpt88 if (!$mysqli->query("DROP TABLE IF EXISTS t1"))
91 if (!$mysqli->query("CREATE TABLE t1 (a smallint)"))
99 if (!$mysqli->query("DROP TABLE t1"))
114 if (!$mysqli->query("DROP TABLE IF EXISTS t1"))
117 if (!$mysqli->query("CREATE TABLE t1 (a smallint)"))
121 if (!$mysqli->query("INSERT IGNORE INTO t1(a) VALUES (65536), (65536), (65536)"))
147 if (!mysqli_query($link, "DROP TABLE IF EXISTS t1"))
/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/ext/standard/
H A Dcrypt_freesec.c425 uint32_t t0, t1; in des_setkey() local
430 t1 = (k1 << shifts) | (k1 >> (28 - shifts)); in des_setkey()
437 | comp_maskl[4][(t1 >> 21) & 0x7f] in des_setkey()
438 | comp_maskl[5][(t1 >> 14) & 0x7f] in des_setkey()
439 | comp_maskl[6][(t1 >> 7) & 0x7f] in des_setkey()
440 | comp_maskl[7][t1 & 0x7f]; in des_setkey()
447 | comp_maskr[4][(t1 >> 21) & 0x7f] in des_setkey()
448 | comp_maskr[5][(t1 >> 14) & 0x7f] in des_setkey()
449 | comp_maskr[6][(t1 >> 7) & 0x7f] in des_setkey()
450 | comp_maskr[7][t1 & 0x7f]; in des_setkey()
H A Dbase64.c651 const __m512i t1 = _mm512_srlv_epi16(t0, _mm512_set1_epi32(0x0006000a)); in php_base64_encode_avx512() local
655 str = _mm512_ternarylogic_epi32(_mm512_set1_epi32(0x3f003f00), t2, t1, 0xca); in php_base64_encode_avx512()
732 const __m512i t1 = _mm512_shuffle_epi8(str, in php_base64_decode_ex_avx512() local
735 const __m512i t2 = _mm512_permutexvar_epi32(s6, t1); in php_base64_decode_ex_avx512()
766 __m256i t0, t1, t2, t3; in php_base64_encode_avx2_reshuffle() local
784 t1 = _mm256_mulhi_epu16(t0, _mm256_set1_epi32(0x04000040)); in php_base64_encode_avx2_reshuffle()
790 return _mm256_or_si256(t1, t3); in php_base64_encode_avx2_reshuffle()
831 __m128i t0, t1, t2, t3; in php_base64_encode_ssse3_reshuffle() local
843 t1 = _mm_mulhi_epu16(t0, _mm_set1_epi32(0x04000040)); in php_base64_encode_ssse3_reshuffle()
854 return _mm_or_si128(t1, t3); in php_base64_encode_ssse3_reshuffle()
/php-src/ext/standard/tests/streams/
H A Dproc_open_bug69900.phpt37 $t1 = microtime(1);
41 $dt_ms = ($t1 - $t0)*1000;
/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.phpt5 function t1()
71 t1();

Completed in 65 milliseconds

12