Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/libc++/include/
Dregex3041 _ForwardIterator __temp = _VSTD::next(__first);
3042 if (__temp == __last && *__first == '$')
3064 _ForwardIterator __temp = __parse_ERE_branch(__first, __last);
3066 if (__temp == __first)
3069 __first = __temp;
3073 __temp = __parse_ERE_branch(++__first, __last);
3075 if (__temp == __first)
3079 __first = __temp;
3090 _ForwardIterator __temp = __parse_ERE_expression(__first, __last);
3092 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);
/freebsd-10-stable/contrib/libstdc++/config/cpu/m68k/
Datomicity.h43 register _Atomic_word __temp; in _GLIBCXX_BEGIN_NAMESPACE() local
48 : "=d" (__result), "=&d" (__temp), "=m" (*__mem) in _GLIBCXX_BEGIN_NAMESPACE()
/freebsd-10-stable/contrib/libstdc++/include/ext/
Dbitmap_allocator.h620 iterator __temp = __gnu_cxx::__detail::__lower_bound
625 __free_list.insert(__temp, __addr);
796 size_t* __temp =
799 *__temp = 0;
800 ++__temp;
805 (__temp + __num_bitmaps),
807 (__temp + __num_bitmaps)
817 __temp[__i] = __bit_mask;
/freebsd-10-stable/contrib/libstdc++/
DChangeLog-20035365 * include/bits/locale_facets.tcc: Replace __temp to __tmp.