Home
last modified time | relevance | path

Searched refs:__temp (Results 1 – 3 of 3) 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/libcxx/include/
Dregex3048 _ForwardIterator __temp = _VSTD::next(__first);
3049 if (__temp == __last && *__first == '$')
3071 _ForwardIterator __temp = __parse_ERE_branch(__first, __last);
3073 if (__temp == __first)
3076 __first = __temp;
3080 __temp = __parse_ERE_branch(++__first, __last);
3082 if (__temp == __first)
3086 __first = __temp;
3097 _ForwardIterator __temp = __parse_ERE_expression(__first, __last);
3099 if (__temp == __first)
[all …]
Distream661 long __temp;
662 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __temp);
663 if (__temp < numeric_limits<short>::min())
668 else if (__temp > numeric_limits<short>::max())
674 __n = static_cast<short>(__temp);
701 long __temp;
702 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __temp);
703 if (__temp < numeric_limits<int>::min())
708 else if (__temp > numeric_limits<int>::max())
714 __n = static_cast<int>(__temp);