Home
last modified time | relevance | path

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

/external/libdrm/
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 …]
/external/llvm-project/libcxx/include/
Dregex3111 _ForwardIterator __temp = __parse(__first, __last);
3112 if ( __temp != __last)
3170 _ForwardIterator __temp = _VSTD::next(__first);
3171 if (__temp == __last && *__first == '$')
3191 _ForwardIterator __temp = __parse_ERE_branch(__first, __last);
3192 if (__temp == __first)
3194 __first = __temp;
3198 __temp = __parse_ERE_branch(++__first, __last);
3199 if (__temp == __first)
3202 __first = __temp;
[all …]
Dstring1035 const basic_string __temp (__first, __last, __alloc());
1036 append(__temp.data(), __temp.size());
2436 const basic_string __temp(__first, __last, __alloc());
2437 assign(__temp.data(), __temp.size());
2640 const basic_string __temp (__first, __last, __alloc());
2641 append(__temp.data(), __temp.size());
2779 const basic_string __temp(__first, __last, __alloc());
2780 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
2806 const basic_string __temp(__first, __last, __alloc());
2807 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
[all …]
Distream484 long __temp;
485 use_facet<_Fp>(__is.getloc()).get(_Ip(__is), _Ip(), __is, __state, __temp);
486 if (__temp < numeric_limits<_Tp>::min())
491 else if (__temp > numeric_limits<_Tp>::max())
498 __n = static_cast<_Tp>(__temp);
Datomic1262 _Tp __temp;
1264 __cxx_atomic_assign_volatile(__temp, __a->__a_value);
1265 bool __ret = (memcmp(&__temp, __expected, sizeof(_Tp)) == 0);
1291 _Tp __temp;
1293 __cxx_atomic_assign_volatile(__temp, __a->__a_value);
1294 bool __ret = (memcmp(&__temp, __expected, sizeof(_Tp)) == 0);
Dmemory4784 shared_ptr<_Tp> __temp;
4789 _VSTD::swap(__temp, *__p);
4794 _VSTD::swap(__temp, *__v);
/external/libcxx/include/
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 …]
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);
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 …]
Dmemory5491 shared_ptr<_Tp> __temp;
5496 _VSTD::swap(__temp, *__p);
5501 _VSTD::swap(__temp, *__v);