Home
last modified time | relevance | path

Searched refs:__t2 (Results 1 – 12 of 12) sorted by relevance

/external/epid-sdk/ext/ipp/sources/ippcp/
Dpcpbnuimpl.h115 BNU_CHUNK_T __t2 = __r < __s; \
116 (CARRY) = __t1 + __t2; \
133 BNU_CHUNK_T __t2 = __r > __s; \
134 (BORROW) = __t1 + __t2; \
/external/icu/icu4c/source/common/unicode/
Ducptrie.h474 uint8_t __t1, __t2, __t3; \
479 ++(src) != (limit) && (__t2 = *(src) - 0x80) <= 0x3f && \
480 (__lead = ((int32_t)(trie)->index[(__lead << 6) + (__t1 & 0x3f)]) + __t2, 1) \
485 (__t2 = *(src) - 0x80) <= 0x3f && \
489 ucptrie_internalSmallU8Index((trie), __lead, __t2, __t3), 1) \
/external/icu/icu4c/source/common/
Dustrtrns.cpp314 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local
318 (__t2=src[(i)+1]-0x80)<=0x3f) { in u_strFromUTF8WithSub()
319 *pDest++ = (((c)&0xf)<<12)|((src[i]&0x3f)<<6)|__t2; in u_strFromUTF8WithSub()
354 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local
358 (__t2=src[(i)+1]-0x80)<=0x3f) { in u_strFromUTF8WithSub()
407 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local
412 (__t2=src[(i)+1]-0x80)<=0x3f) { in u_strFromUTF8WithSub()
413 *pDest++ = (((c)&0xf)<<12)|((src[i]&0x3f)<<6)|__t2; in u_strFromUTF8WithSub()
454 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local
459 (__t2=src[(i)+1]-0x80)<=0x3f) { in u_strFromUTF8WithSub()
[all …]
Dutrie2.h911 uint8_t __t1, __t2; \
915 (__t2=(uint8_t)(*((src)+1)-0x80))<= 0x3f \
920 … ((__t1&0x3f)<<(6-UTRIE2_SHIFT_2))+(__t2>>UTRIE2_SHIFT_2)]) \
922 (__t2&UTRIE2_DATA_MASK)]; \
/external/libchrome/base/third_party/icu/
Dicu_utf.h236 uint8_t __t1, __t2; \
241 (__t2=(s)[(i)+1]-0x80)<=0x3f) { \
242 (c)=(((c)&0xf)<<12)|((__t1&0x3f)<<6)|__t2; \
/external/libcxx/include/
Dnumeric420 typename iterator_traits<_InputIterator>::value_type __t2(*__first);
421 *__result = __t2 - __t1;
422 __t1 = _VSTD::move(__t2);
440 typename iterator_traits<_InputIterator>::value_type __t2(*__first);
441 *__result = __binary_op(__t2, __t1);
442 __t1 = _VSTD::move(__t2);
Dutility338 pair(_T1 const& __t1, _T2 const& __t2) : first(__t1), second(__t2) {}
420 explicit pair(_T1 const& __t1, _T2 const& __t2)
423 : first(__t1), second(__t2) {}
429 pair(_T1 const& __t1, _T2 const& __t2)
432 : first(__t1), second(__t2) {}
667 make_pair(_T1&& __t1, _T2&& __t2)
670 (_VSTD::forward<_T1>(__t1), _VSTD::forward<_T2>(__t2));
Dvariant1454 _LIBCPP_INLINE_VISIBILITY constexpr bool operator()(_T1 && __t1, _T2&& __t2) const {
1455 …vertible<decltype(_Operator{}(_VSTD::forward<_T1>(__t1), _VSTD::forward<_T2>(__t2))), bool>::value,
1457 return _Operator{}(_VSTD::forward<_T1>(__t1), _VSTD::forward<_T2>(__t2));
Dregex4315 _ForwardIterator __t2 = __parse_decimal_escape(__t1, __last);
4316 if (__t2 != __t1)
4317 __first = __t2;
4320 __t2 = __parse_character_class_escape(__t1, __last);
4321 if (__t2 != __t1)
4322 __first = __t2;
4325 __t2 = __parse_character_escape(__t1, __last);
4326 if (__t2 != __t1)
4327 __first = __t2;
Dalgorithm3295 for (value_type* __t2 = __p.first; __t2 < __t; ++__t2, ++__i)
3296 *__i = _VSTD::move(*__t2);
3427 for (value_type* __t2 = __p.first; __t2 < __t; ++__t2, ++__i)
3428 *__i = _VSTD::move(*__t2);
Dmemory2250 __compressed_pair(_U1&& __t1, _U2&& __t2)
2251 : _Base1(std::forward<_U1>(__t1)), _Base2(std::forward<_U2>(__t2)) {}
2270 __compressed_pair(__second_tag, _T2 __t2)
2271 : _Base1(), _Base2(_VSTD::forward<_T2>(__t2)) {}
2274 __compressed_pair(_T1 __t1, _T2 __t2)
2275 : _Base1(_VSTD::forward<_T1>(__t1)), _Base2(_VSTD::forward<_T2>(__t2)) {}
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dformat_utils.h160 simdscalar __t2 = _simd_unpacklo_ps(vMask2, vMask3); in vTranspose8x8() local
166 simdscalar __tt0 = _simd_shuffle_ps(__t0,__t2,_MM_SHUFFLE(1,0,1,0)); in vTranspose8x8()
167 simdscalar __tt1 = _simd_shuffle_ps(__t0,__t2,_MM_SHUFFLE(3,2,3,2)); in vTranspose8x8()