Searched refs:__temp (Results 1 – 5 of 5) sorted by relevance
/external/libdrm/ |
D | libdrm_lists.h | 88 #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/libcxx/include/ |
D | regex | 3069 _ForwardIterator __temp = _VSTD::next(__first); 3070 if (__temp == __last && *__first == '$') 3090 _ForwardIterator __temp = __parse_ERE_branch(__first, __last); 3091 if (__temp == __first) 3093 __first = __temp; 3097 __temp = __parse_ERE_branch(++__first, __last); 3098 if (__temp == __first) 3101 __first = __temp; 3112 _ForwardIterator __temp = __parse_ERE_expression(__first, __last); 3113 if (__temp == __first) [all …]
|
D | istream | 671 long __temp; 672 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __temp); 673 if (__temp < numeric_limits<short>::min()) 678 else if (__temp > numeric_limits<short>::max()) 684 __n = static_cast<short>(__temp); 711 long __temp; 712 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __temp); 713 if (__temp < numeric_limits<int>::min()) 718 else if (__temp > numeric_limits<int>::max()) 724 __n = static_cast<int>(__temp);
|
D | string | 954 const basic_string __temp (__first, __last, __alloc()); 955 append(__temp.data(), __temp.size()); 2106 const basic_string __temp(__first, __last, __alloc()); 2107 assign(__temp.data(), __temp.size()); 2281 const basic_string __temp (__first, __last, __alloc()); 2282 append(__temp.data(), __temp.size()); 2420 const basic_string __temp(__first, __last, __alloc()); 2421 return insert(__pos, __temp.data(), __temp.data() + __temp.size()); 2445 const basic_string __temp(__first, __last, __alloc()); 2446 return insert(__pos, __temp.data(), __temp.data() + __temp.size()); [all …]
|
D | memory | 5314 shared_ptr<_Tp> __temp; 5319 _VSTD::swap(__temp, *__p); 5324 _VSTD::swap(__temp, *__v);
|