Home
last modified time | relevance | path

Searched refs:t2 (Results 1 – 25 of 34) sorted by last modified time

12

/PHP-7.4/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp26 double t2; member
/PHP-7.4/ext/date/
H A Dphp_date.c5121 timelib_time *t, *t2; in PHP_FUNCTION() local
5157 t2->sse = rise; in PHP_FUNCTION()
5159 t2->sse = set; in PHP_FUNCTION()
5162 t2->sse = transit; in PHP_FUNCTION()
5177 t2->sse = rise; in PHP_FUNCTION()
5179 t2->sse = set; in PHP_FUNCTION()
5195 t2->sse = rise; in PHP_FUNCTION()
5197 t2->sse = set; in PHP_FUNCTION()
5213 t2->sse = rise; in PHP_FUNCTION()
5215 t2->sse = set; in PHP_FUNCTION()
[all …]
/PHP-7.4/Zend/
H A Dzend_operators.c42 #define TYPE_PAIR(t1,t2) (((t1) << 4) | (t2)) argument
H A Dzend_alloc.c1168 unsigned int t1, t2; local
1175 t2 = zend_mm_small_size_to_bit(t1) - 3;
1176 t1 = t1 >> t2;
1177 t2 = t2 - 3;
1178 t2 = t2 << 2;
1179 return (int)(t1 + t2);
/PHP-7.4/ext/standard/
H A Dstring.c3653 zend_string *t1, *t2; local
3660 Z_PARAM_STR(t2)
3665 if (ZSTR_LEN(t1) + ZSTR_LEN(t2) == 0) {
3673 sim = php_similar_char(ZSTR_VAL(t1), ZSTR_LEN(t1), ZSTR_VAL(t2), ZSTR_LEN(t2));
3676 ZEND_TRY_ASSIGN_REF_DOUBLE(percent, sim * 200.0 / (ZSTR_LEN(t1) + ZSTR_LEN(t2)));
H A Dbase64.c463 __m256i t0, t1, t2, t3; in php_base64_encode_avx2_reshuffle() local
483 t2 = _mm256_and_si256(in, _mm256_set1_epi32(0x003f03f0)); in php_base64_encode_avx2_reshuffle()
485 t3 = _mm256_mullo_epi16(t2, _mm256_set1_epi32(0x01000010)); in php_base64_encode_avx2_reshuffle()
528 __m128i t0, t1, t2, t3; in php_base64_encode_ssse3_reshuffle() local
542 t2 = _mm_and_si128(in, _mm_set1_epi32(0x003f03f0)); in php_base64_encode_ssse3_reshuffle()
544 t3 = _mm_mullo_epi16(t2, _mm_set1_epi32(0x01000010)); in php_base64_encode_ssse3_reshuffle()
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_func_info.c107 uint32_t t2 = _ssa_op1_info(call_info->caller_op_array, ssa, call_info->arg_info[1].opline); in zend_range_info() local
114 if ((t1 & MAY_BE_STRING) && (t2 & MAY_BE_STRING)) { in zend_range_info()
118 || (t2 & (MAY_BE_DOUBLE|MAY_BE_STRING)) in zend_range_info()
122 …if ((t1 & (MAY_BE_ANY-(MAY_BE_STRING|MAY_BE_DOUBLE))) && (t2 & (MAY_BE_ANY-(MAY_BE_STRING|MAY_BE_D… in zend_range_info()
H A Dzend_inference.c617 t1 = t2 = t3 = t4 = 0; in zend_inference_calc_binary_op_range()
654 t2 = op1_min / op2_max; in zend_inference_calc_binary_op_range()
2160 uint32_t t2_type = (t2 & MAY_BE_ANY) | (t2 & MAY_BE_UNDEF ? MAY_BE_NULL : 0); in binary_op_result_type()
2433 uint32_t t1, t2; in zend_update_type_info() local
2448 t2 = OP2_INFO(); in zend_update_type_info()
2625 t2 = OP1_DATA_INFO(); in zend_update_type_info()
2632 t2 = OP1_DATA_INFO(); in zend_update_type_info()
2636 t2 = OP1_DATA_INFO(); in zend_update_type_info()
2938 tmp = t2; in zend_update_type_info()
3012 t2 = OP1_DATA_INFO(); in zend_update_type_info()
[all …]
/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 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);
/PHP-7.4/ext/ffi/
H A Dffi.c1777 zend_ffi_type *t1, *t2; in zend_ffi_cdata_do_operation() local
1788 t2 = ZEND_FFI_TYPE(type2->pointer.type); in zend_ffi_cdata_do_operation()
1791 t2 = ZEND_FFI_TYPE(type2->array.type); in zend_ffi_cdata_do_operation()
1794 if (zend_ffi_is_same_type(t1, t2)) { in zend_ffi_cdata_do_operation()
/PHP-7.4/ext/date/lib/
H A Dtimelib.h824 int timelib_time_compare(timelib_time *t1, timelib_time *t2);
/PHP-7.4/Zend/tests/
H A Dbug55086.phpt12 public function hello() { return 'hello from t2'; }
/PHP-7.4/ext/standard/tests/general_functions/
H A Dcall_user_func_return.phpt15 $t2 = 'test2';
19 global $t2;
21 return $t2;
/PHP-7.4/ext/oci8/tests/
H A Dimp_res_3.phpt42 open c1 for select t1.*, t2.*, t3.*, t4.*, t5.*
43 from imp_res_3_tab_1 t1, imp_res_3_tab_1 t2, imp_res_3_tab_1 t3,
/PHP-7.4/ext/hash/
H A Dphp_hash_tiger_tables.h21 #define t2 (table+256) macro
H A Dhash_tiger.c43 t2[(unsigned char)(((uint32_t)(c))>>(2*8))] ^ \
48 t2[(unsigned char)(((uint32_t)((c)>>(4*8)))>>(1*8))] ^ \
/PHP-7.4/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-7.4/tests/classes/
H A Dfinal.phpt21 $t2 = new second();
22 $t2->show();
H A Dprivate_004b.phpt25 $t2 = new fail();
26 $t2->do_show();
H A Dprivate_006b.phpt22 //$t2 = new second();
23 //$t2->do_show();
H A Dabstract_class.phpt16 $t2 = new pass();
17 $t2->show();
/PHP-7.4/ext/standard/tests/file/
H A Dbug49047.phpt11 $t2 = filemtime($testdir);
12 if ($t2 != $t) echo "failed (got $t2, expecting $t)\n";
/PHP-7.4/ext/standard/tests/array/
H A Dbug29493.phpt26 function t2()
72 t2();
/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');

Completed in 121 milliseconds

12