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 | 3095 _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 …]
|
D | string | 1039 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 …]
|
D | istream | 480 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);
|
D | memory | 5491 shared_ptr<_Tp> __temp; 5496 _VSTD::swap(__temp, *__p); 5501 _VSTD::swap(__temp, *__v);
|