Home
last modified time | relevance | path

Searched refs:__temp (Results 1 – 5 of 5) 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/
Dregex3079 _ForwardIterator __temp = _VSTD::next(__first);
3080 if (__temp == __last && *__first == '$')
3100 _ForwardIterator __temp = __parse_ERE_branch(__first, __last);
3101 if (__temp == __first)
3103 __first = __temp;
3107 __temp = __parse_ERE_branch(++__first, __last);
3108 if (__temp == __first)
3111 __first = __temp;
3122 _ForwardIterator __temp = __parse_ERE_expression(__first, __last);
3123 if (__temp == __first)
[all …]
Distream672 long __temp;
673 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __temp);
674 if (__temp < numeric_limits<short>::min())
679 else if (__temp > numeric_limits<short>::max())
685 __n = static_cast<short>(__temp);
712 long __temp;
713 use_facet<_Fp>(this->getloc()).get(_Ip(*this), _Ip(), *this, __err, __temp);
714 if (__temp < numeric_limits<int>::min())
719 else if (__temp > numeric_limits<int>::max())
725 __n = static_cast<int>(__temp);
Dstring957 const basic_string __temp (__first, __last, __alloc());
958 append(__temp.data(), __temp.size());
2139 const basic_string __temp(__first, __last, __alloc());
2140 assign(__temp.data(), __temp.size());
2316 const basic_string __temp (__first, __last, __alloc());
2317 append(__temp.data(), __temp.size());
2455 const basic_string __temp(__first, __last, __alloc());
2456 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
2482 const basic_string __temp(__first, __last, __alloc());
2483 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
[all …]
Dmemory5480 shared_ptr<_Tp> __temp;
5485 _VSTD::swap(__temp, *__p);
5490 _VSTD::swap(__temp, *__v);