Home
last modified time | relevance | path

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

12

/PHP-7.4/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-7.4/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-7.4/ext/sqlite3/tests/
H A Dbug73068.phpt14 $db->exec("CREATE TABLE IF NOT EXISTS t1(a INT UNIQUE, b INT)");
15 $db->exec("INSERT OR REPLACE INTO t1(a,b) VALUES('1','2')");
17 $r = $db->query("SELECT * FROM t1 WHERE a='1' AND b='2'");
20 $db->exec("DELETE FROM t1 WHERE a='1' AND b='2'");
22 $r = $db->query("SELECT * FROM t1;");
/PHP-7.4/ext/oci8/tests/
H A Dpecl_bug8816.phpt13 $create_1 = "CREATE TABLE t1 (id INTEGER, l1 LONG)";
15 $drop_1 = "DROP TABLE t1";
33 $insert = "INSERT INTO t1 VALUES($i, ".$val.")";
47 t1.l1, t2.l2
49 t1, t2
51 t1.id = t2.id
52 ORDER BY t1.id ASC
H A Dbug38173.phpt13 $create_1 = "CREATE TABLE t1 (id INTEGER)";
15 $drop_1 = "DROP TABLE t1";
29 $insert = "INSERT INTO t1 VALUES(".$i.")";
42 t1.*,
45 t1
H A Dbug40415.phpt15 $create_1 = "CREATE TABLE t1 (id1 INTEGER)";
17 $drop_1 = "DROP TABLE t1";
31 $insert = "INSERT INTO t1 VALUES(1".$i.")";
45 $query = "SELECT t1.*, CURSOR( SELECT * FROM t2 ) AS CURSOR FROM t1";
61 $query = "SELECT t1.*, CURSOR( SELECT * FROM t2 ) AS CURSOR FROM t1";
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_inference.c2534 tmp = t1; in zend_update_type_info()
2585 tmp = t1; in zend_update_type_info()
2631 t1 = zend_array_element_type(t1, 1, 0); in zend_update_type_info()
2882 tmp = t1; in zend_update_type_info()
2919 tmp = t1; in zend_update_type_info()
3000 tmp = t1; in zend_update_type_info()
3056 tmp = t1; in zend_update_type_info()
3112 tmp = t1; in zend_update_type_info()
3333 tmp = t1; in zend_update_type_info()
3552 tmp = t1; in zend_update_type_info()
[all …]
/PHP-7.4/ext/hash/
H A Dhash_snefru.c46 const uint32_t *t0,*t1; in Snefru() local
68 t1 = tables[2*index+1]; in Snefru()
72 round(B01, B02, B03, t1); in Snefru()
73 round(B02, B03, B04, t1); in Snefru()
76 round(B05, B06, B07, t1); in Snefru()
77 round(B06, B07, B08, t1); in Snefru()
80 round(B09, B10, B11, t1); in Snefru()
81 round(B10, B11, B12, t1); in Snefru()
84 round(B13, B14, B15, t1); in Snefru()
85 round(B14, B15, B00, t1); in Snefru()
H A Dhash_tiger.c42 a -= t1[(unsigned char)(c)] ^ \
49 t1[(unsigned char)(((uint32_t)((c)>>(4*8)))>>(3*8))]; \
/PHP-7.4/ext/standard/tests/general_functions/
H A Dcall_user_func_return.phpt6 $t1 = 'test1';
10 global $t1;
12 return $t1;
/PHP-7.4/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-7.4/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.phpt13 $t1 = FFI::typeof($p1);
14 var_dump($t1);
16 $p4 = FFI::new($t1);
/PHP-7.4/tests/classes/
H A Dprivate_006b.phpt16 $t1 = new first();
17 $t1->do_show();
H A Dincdec_property_004.phpt24 $t1 = ++$obj->a;
H A Dincdec_property_002.phpt24 $t1 = $obj->a++;
/PHP-7.4/ext/pdo_sqlite/tests/
H A Dbug_42589.phpt14 $result = $db->query('SELECT * FROM test t1 LEFT JOIN test t2 ON t1.field1 = t2.field1');
/PHP-7.4/ext/standard/
H A Dcrypt_freesec.c427 uint32_t t0, t1; in des_setkey() local
432 t1 = (k1 << shifts) | (k1 >> (28 - shifts)); in des_setkey()
439 | comp_maskl[4][(t1 >> 21) & 0x7f] in des_setkey()
440 | comp_maskl[5][(t1 >> 14) & 0x7f] in des_setkey()
441 | comp_maskl[6][(t1 >> 7) & 0x7f] in des_setkey()
442 | comp_maskl[7][t1 & 0x7f]; in des_setkey()
449 | comp_maskr[4][(t1 >> 21) & 0x7f] in des_setkey()
450 | comp_maskr[5][(t1 >> 14) & 0x7f] in des_setkey()
451 | comp_maskr[6][(t1 >> 7) & 0x7f] in des_setkey()
452 | comp_maskr[7][t1 & 0x7f]; in des_setkey()
H A Dbase64.c463 __m256i t0, t1, t2, t3; in php_base64_encode_avx2_reshuffle() local
481 t1 = _mm256_mulhi_epu16(t0, _mm256_set1_epi32(0x04000040)); in php_base64_encode_avx2_reshuffle()
487 return _mm256_or_si256(t1, t3); in php_base64_encode_avx2_reshuffle()
528 __m128i t0, t1, t2, t3; in php_base64_encode_ssse3_reshuffle() local
540 t1 = _mm_mulhi_epu16(t0, _mm_set1_epi32(0x04000040)); in php_base64_encode_ssse3_reshuffle()
551 return _mm_or_si128(t1, t3); in php_base64_encode_ssse3_reshuffle()
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_explain_metadata.phpt17 if (!$res = mysqli_query($link, 'EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2'))
68 … if ($stmt->prepare('EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2') && $stmt->execute()) {
103 $stmt->prepare('EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2') &&
H A Dmysqli_get_warnings.phpt90 if (!$mysqli->query("DROP TABLE IF EXISTS t1"))
93 if (!$mysqli->query("CREATE TABLE t1 (a smallint)"))
102 if (!$mysqli->query("DROP TABLE t1"))
119 if (!$mysqli->query("DROP TABLE IF EXISTS t1"))
122 if (!$mysqli->query("CREATE TABLE t1 (a smallint)"))
126 if (!$mysqli->query("INSERT IGNORE INTO t1(a) VALUES (65536), (65536), (65536)"))
152 if (!mysqli_query($link, "DROP TABLE IF EXISTS t1"))
/PHP-7.4/ext/date/lib/
H A Dtimelib.c72 int timelib_time_compare(timelib_time *t1, timelib_time *t2) in timelib_time_compare() argument
74 if (t1->sse == t2->sse) { in timelib_time_compare()
75 if (t1->us == t2->us) { in timelib_time_compare()
79 return (t1->us < t2->us) ? -1 : 1; in timelib_time_compare()
82 return (t1->sse < t2->sse) ? -1 : 1; in timelib_time_compare()
/PHP-7.4/ext/standard/tests/streams/
H A Dproc_open_bug69900.phpt35 $t1 = microtime(1);
39 $dt_ms = ($t1 - $t0)*1000;
/PHP-7.4/ext/standard/tests/array/
H A Dbug29493.phpt5 function t1()
71 t1();

Completed in 46 milliseconds

12