Home
last modified time | relevance | path

Searched refs:t2 (Results 26 – 38 of 38) sorted by relevance

12

/PHP-8.3/ext/standard/
H A Dbase64.c649 const __m512i t2 = _mm512_sllv_epi16(str, _mm512_set1_epi32(0x00080004)); in php_base64_encode_avx512() local
651 str = _mm512_ternarylogic_epi32(_mm512_set1_epi32(0x3f003f00), t2, t1, 0xca); in php_base64_encode_avx512()
731 const __m512i t2 = _mm512_permutexvar_epi32(s6, t1); in php_base64_decode_ex_avx512() local
734 _mm512_storeu_si512((__m512i *)o, t2); in php_base64_decode_ex_avx512()
762 __m256i t0, t1, t2, t3; in php_base64_encode_avx2_reshuffle() local
782 t2 = _mm256_and_si256(in, _mm256_set1_epi32(0x003f03f0)); in php_base64_encode_avx2_reshuffle()
784 t3 = _mm256_mullo_epi16(t2, _mm256_set1_epi32(0x01000010)); in php_base64_encode_avx2_reshuffle()
827 __m128i t0, t1, t2, t3; in php_base64_encode_ssse3_reshuffle() local
841 t2 = _mm_and_si128(in, _mm_set1_epi32(0x003f03f0)); in php_base64_encode_ssse3_reshuffle()
843 t3 = _mm_mullo_epi16(t2, _mm_set1_epi32(0x01000010)); in php_base64_encode_ssse3_reshuffle()
H A Dstring.c3371 zend_string *t1, *t2; local
3378 Z_PARAM_STR(t2)
3383 if (ZSTR_LEN(t1) + ZSTR_LEN(t2) == 0) {
3391 sim = php_similar_char(ZSTR_VAL(t1), ZSTR_LEN(t1), ZSTR_VAL(t2), ZSTR_LEN(t2));
3394 ZEND_TRY_ASSIGN_REF_DOUBLE(percent, sim * 200.0 / (ZSTR_LEN(t1) + ZSTR_LEN(t2)));
/PHP-8.3/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))] ^ \
H A Dphp_hash_tiger_tables.h19 #define t2 (table+256) macro
/PHP-8.3/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp24 double t2; member
/PHP-8.3/ext/date/
H A Dphp_date.c5363 timelib_time *t, *t2; in PHP_FUNCTION() local
5402 t2->sse = rise; in PHP_FUNCTION()
5404 t2->sse = set; in PHP_FUNCTION()
5407 t2->sse = transit; in PHP_FUNCTION()
5422 t2->sse = rise; in PHP_FUNCTION()
5424 t2->sse = set; in PHP_FUNCTION()
5440 t2->sse = rise; in PHP_FUNCTION()
5442 t2->sse = set; in PHP_FUNCTION()
5458 t2->sse = rise; in PHP_FUNCTION()
5460 t2->sse = set; in PHP_FUNCTION()
[all …]
/PHP-8.3/Zend/
H A Dzend_alloc.c1225 unsigned int t1, t2; local
1232 t2 = zend_mm_small_size_to_bit(t1) - 3;
1233 t1 = t1 >> t2;
1234 t2 = t2 - 3;
1235 t2 = t2 << 2;
1236 return (int)(t1 + t2);
H A Dzend_operators.c61 #define TYPE_PAIR(t1,t2) (((t1) << 4) | (t2)) argument
/PHP-8.3/Zend/Optimizer/
H A Dzend_inference.h236 …zend_ssa_op *ssa_op, const zend_op_array *op_array, const zend_ssa *ssa, uint32_t t1, uint32_t t2);
/PHP-8.3/ext/opcache/jit/dynasm/
H A Dminilua.c635 if(ttype(t1)!=ttype(t2))return 0; in luaO_rawequalObj()
640 return luai_numeq(nvalue(t1),nvalue(t2)); in luaO_rawequalObj()
642 return bvalue(t1)==bvalue(t2); in luaO_rawequalObj()
644 return pvalue(t1)==pvalue(t2); in luaO_rawequalObj()
646 return gcvalue(t1)==gcvalue(t2); in luaO_rawequalObj()
2562 if(t1[2]==t2[2])
4864 case 1:return bvalue(t1)==bvalue(t2);
4865 case 2:return pvalue(t1)==pvalue(t2);
4867 if(uvalue(t1)==uvalue(t2))return 1;
4873 if(hvalue(t1)==hvalue(t2))return 1;
[all …]
/PHP-8.3/ext/date/lib/
H A Dtimelib.h927 int timelib_time_compare(timelib_time *t1, timelib_time *t2);
/PHP-8.3/ext/oci8/tests/
H A Dimp_res_3.phpt44 open c1 for select t1.*, t2.*, t3.*, t4.*, t5.*
45 from imp_res_3_tab_1 t1, imp_res_3_tab_1 t2, imp_res_3_tab_1 t3,
/PHP-8.3/ext/ffi/
H A Dffi.c1874 zend_ffi_type *t1, *t2; in zend_ffi_cdata_do_operation() local
1885 t2 = ZEND_FFI_TYPE(type2->pointer.type); in zend_ffi_cdata_do_operation()
1888 t2 = ZEND_FFI_TYPE(type2->array.type); in zend_ffi_cdata_do_operation()
1891 if (zend_ffi_is_same_type(t1, t2)) { in zend_ffi_cdata_do_operation()

Completed in 121 milliseconds

12