Home
last modified time | relevance | path

Searched refs:__temp (Results 1 – 20 of 20) sorted by relevance

/OK3568_Linux_fs/external/security/librkcrypto/third_party/libdrm/include/
H A Dlibdrm_lists.h88 #define DRMLISTFOREACHSAFE(__item, __temp, __list) \ argument
89 for ((__item) = (__list)->next, (__temp) = (__item)->next; \
91 (__item) = (__temp), (__temp) = (__item)->next)
93 #define DRMLISTFOREACHSAFEREVERSE(__item, __temp, __list) \ argument
94 for ((__item) = (__list)->prev, (__temp) = (__item)->prev; \
96 (__item) = (__temp), (__temp) = (__item)->prev)
104 #define DRMLISTFOREACHENTRYSAFE(__item, __temp, __list, __head) \ argument
106 (__temp) = DRMLISTENTRY(typeof(*__item), \
109 (__item) = (__temp), \
110 (__temp) = DRMLISTENTRY(typeof(*__item), \
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dregex3095 _ForwardIterator __temp = _VSTD::next(__first);
3096 if (__temp == __last && *__first == '$')
3116 _ForwardIterator __temp = __parse_ERE_branch(__first, __last);
3117 if (__temp == __first)
3119 __first = __temp;
3123 __temp = __parse_ERE_branch(++__first, __last);
3124 if (__temp == __first)
3127 __first = __temp;
3138 _ForwardIterator __temp = __parse_ERE_expression(__first, __last);
3139 if (__temp == __first)
[all …]
H A Dstring1039 const basic_string __temp (__first, __last, __alloc());
1040 append(__temp.data(), __temp.size());
2332 const basic_string __temp(__first, __last, __alloc());
2333 assign(__temp.data(), __temp.size());
2526 const basic_string __temp (__first, __last, __alloc());
2527 append(__temp.data(), __temp.size());
2665 const basic_string __temp(__first, __last, __alloc());
2666 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
2692 const basic_string __temp(__first, __last, __alloc());
2693 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
[all …]
H A Distream480 long __temp;
481 use_facet<_Fp>(__is.getloc()).get(_Ip(__is), _Ip(), __is, __err, __temp);
482 if (__temp < numeric_limits<_Tp>::min())
487 else if (__temp > numeric_limits<_Tp>::max())
493 __n = static_cast<_Tp>(__temp);
H A Dmemory5491 shared_ptr<_Tp> __temp;
5496 _VSTD::swap(__temp, *__p);
5501 _VSTD::swap(__temp, *__v);
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dregex3095 _ForwardIterator __temp = _VSTD::next(__first);
3096 if (__temp == __last && *__first == '$')
3116 _ForwardIterator __temp = __parse_ERE_branch(__first, __last);
3117 if (__temp == __first)
3119 __first = __temp;
3123 __temp = __parse_ERE_branch(++__first, __last);
3124 if (__temp == __first)
3127 __first = __temp;
3138 _ForwardIterator __temp = __parse_ERE_expression(__first, __last);
3139 if (__temp == __first)
[all …]
H A Dstring1039 const basic_string __temp (__first, __last, __alloc());
1040 append(__temp.data(), __temp.size());
2332 const basic_string __temp(__first, __last, __alloc());
2333 assign(__temp.data(), __temp.size());
2526 const basic_string __temp (__first, __last, __alloc());
2527 append(__temp.data(), __temp.size());
2665 const basic_string __temp(__first, __last, __alloc());
2666 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
2692 const basic_string __temp(__first, __last, __alloc());
2693 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
[all …]
H A Distream480 long __temp;
481 use_facet<_Fp>(__is.getloc()).get(_Ip(__is), _Ip(), __is, __err, __temp);
482 if (__temp < numeric_limits<_Tp>::min())
487 else if (__temp > numeric_limits<_Tp>::max())
493 __n = static_cast<_Tp>(__temp);
H A Dmemory5491 shared_ptr<_Tp> __temp;
5496 _VSTD::swap(__temp, *__p);
5501 _VSTD::swap(__temp, *__v);
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/include/
H A Darm_neon.h10885 largetype __temp; \
10886 __temp.val[0] \
10889 __temp.val[1] \
10893 (signedtype) __temp.val[0], 0); \
10895 (signedtype) __temp.val[1], 1); \
10936 __builtin_aarch64_simd_oi __o; } __temp = { __b }; \ in __ST2_LANE_FUNC()
10938 __ptr, __temp.__o, __c); \ in __ST2_LANE_FUNC()
10964 largetype __temp; \
10965 __temp.val[0] \
10968 __temp.val[1] \
[all …]
/OK3568_Linux_fs/kernel/arch/arm/include/asm/
H A Duaccess.h468 unsigned long __temp = (__force unsigned long)(x); \
469 __put_user_asm_byte(__temp, __pu_addr, err); \
470 __put_user_asm_byte(__temp >> 8, __pu_addr + 1, err); \
475 unsigned long __temp = (__force unsigned long)(x); \
476 __put_user_asm_byte(__temp >> 8, __pu_addr, err); \
477 __put_user_asm_byte(__temp, __pu_addr + 1, err); \
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/
H A Dbitmap_allocator.h586 iterator __temp = __detail::__lower_bound in _GLIBCXX_VISIBILITY()
591 __free_list.insert(__temp, __addr); in _GLIBCXX_VISIBILITY()
777 size_t* __temp = in _GLIBCXX_VISIBILITY()
779 *__temp = 0; in _GLIBCXX_VISIBILITY()
780 ++__temp; in _GLIBCXX_VISIBILITY()
785 (__temp + __num_bitmaps), in _GLIBCXX_VISIBILITY()
787 (__temp + __num_bitmaps) in _GLIBCXX_VISIBILITY()
794 __temp[__i] = ~static_cast<size_t>(0); // 1 Indicates all Free. in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/
H A Dbitmap_allocator.h586 iterator __temp = __detail::__lower_bound in _GLIBCXX_VISIBILITY()
591 __free_list.insert(__temp, __addr); in _GLIBCXX_VISIBILITY()
777 size_t* __temp = in _GLIBCXX_VISIBILITY()
779 *__temp = 0; in _GLIBCXX_VISIBILITY()
780 ++__temp; in _GLIBCXX_VISIBILITY()
785 (__temp + __num_bitmaps), in _GLIBCXX_VISIBILITY()
787 (__temp + __num_bitmaps) in _GLIBCXX_VISIBILITY()
794 __temp[__i] = ~static_cast<size_t>(0); // 1 Indicates all Free. in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dforward_list.tcc84 _Node* __temp = __curr; in _M_erase_after() local
87 __temp->_M_valptr()); in _M_erase_after()
88 __temp->~_Node(); in _M_erase_after()
89 _M_put_node(__temp); in _M_erase_after()
H A Dforward_list.h96 while (_Fwd_list_node_base* __temp = __tail->_M_next) in _GLIBCXX_VISIBILITY() local
99 _M_next = __temp; in _GLIBCXX_VISIBILITY()
100 __tail->_M_next = __temp->_M_next; in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dforward_list.tcc84 _Node* __temp = __curr; in _M_erase_after() local
87 __temp->_M_valptr()); in _M_erase_after()
88 __temp->~_Node(); in _M_erase_after()
89 _M_put_node(__temp); in _M_erase_after()
H A Dforward_list.h96 while (_Fwd_list_node_base* __temp = __tail->_M_next) in _GLIBCXX_VISIBILITY() local
99 _M_next = __temp; in _GLIBCXX_VISIBILITY()
100 __tail->_M_next = __temp->_M_next; in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/kernel/arch/ia64/kernel/
H A Dmca_drv.h79 u64 __temp = __info && __info->valid.check_info \
81 __temp; })
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr1/
H A Dbessel_function.tcc286 _Tp __temp = __p * __dlr - __q * __dli; in __bessel_jn() local
288 __p = __temp; in __bessel_jn()
308 __temp = __p * __dlr - __q * __dli; in __bessel_jn()
310 __p = __temp; in __bessel_jn()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr1/
H A Dbessel_function.tcc286 _Tp __temp = __p * __dlr - __q * __dli; in __bessel_jn() local
288 __p = __temp; in __bessel_jn()
308 __temp = __p * __dlr - __q * __dli; in __bessel_jn()
310 __p = __temp; in __bessel_jn()