HomeSort by relevance Sort by last modified time
    Searched refs:__b (Results 151 - 175 of 287) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/
shared_ptr.h 195 operator==(const __shared_count& __a, const __shared_count& __b)
196 { return __a._M_pi == __b._M_pi; }
199 operator<(const __shared_count& __a, const __shared_count& __b)
200 { return std::less<_Sp_counted_base<_Lp>*>()(__a._M_pi, __b._M_pi); }
278 operator==(const __weak_count<_Lp>& __a, const __weak_count<_Lp>& __b)
279 { return __a._M_pi == __b._M_pi; }
282 operator<(const __weak_count<_Lp>& __a, const __weak_count<_Lp>& __b)
283 { return std::less<_Sp_counted_base<_Lp>*>()(__a._M_pi, __b._M_pi); }
574 operator==(const __shared_ptr& __a, const __shared_ptr<_Tp1, _Lp>& __b)
575 { return __a.get() == __b.get();
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/tr1/
shared_ptr.h 195 operator==(const __shared_count& __a, const __shared_count& __b)
196 { return __a._M_pi == __b._M_pi; }
199 operator<(const __shared_count& __a, const __shared_count& __b)
200 { return std::less<_Sp_counted_base<_Lp>*>()(__a._M_pi, __b._M_pi); }
278 operator==(const __weak_count<_Lp>& __a, const __weak_count<_Lp>& __b)
279 { return __a._M_pi == __b._M_pi; }
282 operator<(const __weak_count<_Lp>& __a, const __weak_count<_Lp>& __b)
283 { return std::less<_Sp_counted_base<_Lp>*>()(__a._M_pi, __b._M_pi); }
574 operator==(const __shared_ptr& __a, const __shared_ptr<_Tp1, _Lp>& __b)
575 { return __a.get() == __b.get();
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_algobase.h 85 iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
90 *__a = _GLIBCXX_MOVE(*__b);
91 *__b = _GLIBCXX_MOVE(__tmp);
100 iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
102 swap(*__a, *__b);
118 iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
142 iter_swap(__a, __b);
187 min(const _Tp& __a, const _Tp& __b)
191 //return __b < __a ? __b : __a
    [all...]
streambuf_iterator.h 162 equal(const istreambuf_iterator& __b) const
163 { return _M_at_eof() == __b._M_at_eof(); }
195 const istreambuf_iterator<_CharT, _Traits>& __b)
196 { return __a.equal(__b); }
201 const istreambuf_iterator<_CharT, _Traits>& __b)
202 { return !__a.equal(__b); }
shared_ptr_base.h 606 operator==(const __shared_count& __a, const __shared_count& __b)
607 { return __a._M_pi == __b._M_pi; }
707 operator==(const __weak_count& __a, const __weak_count& __b)
708 { return __a._M_pi == __b._M_pi; }
1055 const __shared_ptr<_Tp2, _Lp>& __b)
1056 { return __a.get() == __b.get(); }
1065 operator==(nullptr_t, const __shared_ptr<_Tp, _Lp>& __b)
1066 { return nullptr == __b.get(); }
1071 const __shared_ptr<_Tp2, _Lp>& __b)
1072 { return __a.get() != __b.get();
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_algobase.h 85 iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
90 *__a = _GLIBCXX_MOVE(*__b);
91 *__b = _GLIBCXX_MOVE(__tmp);
100 iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
102 swap(*__a, *__b);
118 iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
142 iter_swap(__a, __b);
187 min(const _Tp& __a, const _Tp& __b)
191 //return __b < __a ? __b : __a
    [all...]
streambuf_iterator.h 162 equal(const istreambuf_iterator& __b) const
163 { return _M_at_eof() == __b._M_at_eof(); }
195 const istreambuf_iterator<_CharT, _Traits>& __b)
196 { return __a.equal(__b); }
201 const istreambuf_iterator<_CharT, _Traits>& __b)
202 { return !__a.equal(__b); }
  /external/stlport/stlport/stl/config/
_windows.h 206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
218 reinterpret_cast<long>(__b)));
220 return (void*)InterlockedExchange((long*)__a, (long)__b);
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_windows.h 206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
218 reinterpret_cast<long>(__b)));
220 return (void*)InterlockedExchange((long*)__a, (long)__b);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_windows.h 206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
218 reinterpret_cast<long>(__b)));
220 return (void*)InterlockedExchange((long*)__a, (long)__b);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_windows.h 206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
218 reinterpret_cast<long>(__b)));
220 return (void*)InterlockedExchange((long*)__a, (long)__b);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_windows.h 206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
218 reinterpret_cast<long>(__b)));
220 return (void*)InterlockedExchange((long*)__a, (long)__b);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_windows.h 206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
218 reinterpret_cast<long>(__b)));
220 return (void*)InterlockedExchange((long*)__a, (long)__b);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
streambuf_iterator.h 155 equal(const istreambuf_iterator& __b) const
156 { return _M_at_eof() == __b._M_at_eof(); }
188 const istreambuf_iterator<_CharT, _Traits>& __b)
189 { return __a.equal(__b); }
194 const istreambuf_iterator<_CharT, _Traits>& __b)
195 { return !__a.equal(__b); }
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
streambuf_iterator.h 155 equal(const istreambuf_iterator& __b) const
156 { return _M_at_eof() == __b._M_at_eof(); }
188 const istreambuf_iterator<_CharT, _Traits>& __b)
189 { return __a.equal(__b); }
194 const istreambuf_iterator<_CharT, _Traits>& __b)
195 { return !__a.equal(__b); }
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
streambuf_iterator.h 155 equal(const istreambuf_iterator& __b) const
156 { return _M_at_eof() == __b._M_at_eof(); }
188 const istreambuf_iterator<_CharT, _Traits>& __b)
189 { return __a.equal(__b); }
194 const istreambuf_iterator<_CharT, _Traits>& __b)
195 { return !__a.equal(__b); }
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
streambuf_iterator.h 155 equal(const istreambuf_iterator& __b) const
156 { return _M_at_eof() == __b._M_at_eof(); }
188 const istreambuf_iterator<_CharT, _Traits>& __b)
189 { return __a.equal(__b); }
194 const istreambuf_iterator<_CharT, _Traits>& __b)
195 { return !__a.equal(__b); }
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/bits/
streambuf_iterator.h 155 equal(const istreambuf_iterator& __b) const
156 { return _M_at_eof() == __b._M_at_eof(); }
188 const istreambuf_iterator<_CharT, _Traits>& __b)
189 { return __a.equal(__b); }
194 const istreambuf_iterator<_CharT, _Traits>& __b)
195 { return !__a.equal(__b); }
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-stdinitializerlist.cpp 13 initializer_list(const _E* __b, size_t __s)
14 : __begin_(__b),
  /external/clang/test/Parser/
cxx0x-attributes.cpp 14 initializer_list(const _E* __b, size_t __s)
15 : __begin_(__b),
  /external/clang/lib/Headers/
tmmintrin.h 71 __m128i __b = (b); \
72 (__m128i)__builtin_ia32_palignr128((__v16qi)__a, (__v16qi)__b, (n)); })
76 __m64 __b = (b); \
77 (__m64)__builtin_ia32_palignr((__v8qi)__a, (__v8qi)__b, (n)); })
mmintrin.h 418 _mm_set1_pi8(char __b)
420 return _mm_set_pi8(__b, __b, __b, __b, __b, __b, __b, __b);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
hashtable_policy.h 274 _Hash_node<_Value, __cache>** __b)
275 : _Hashtable_iterator_base<_Value, __cache>(__p, __b) { }
278 _Hashtable_iterator(_Hash_node<_Value, __cache>** __b)
279 : _Hashtable_iterator_base<_Value, __cache>(*__b, __b) { }
319 _Hash_node<_Value, __cache>** __b)
320 : _Hashtable_iterator_base<_Value, __cache>(__p, __b) { }
323 _Hashtable_const_iterator(_Hash_node<_Value, __cache>** __b)
324 : _Hashtable_iterator_base<_Value, __cache>(*__b, __b) { }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
hashtable_policy.h 274 _Hash_node<_Value, __cache>** __b)
275 : _Hashtable_iterator_base<_Value, __cache>(__p, __b) { }
278 _Hashtable_iterator(_Hash_node<_Value, __cache>** __b)
279 : _Hashtable_iterator_base<_Value, __cache>(*__b, __b) { }
319 _Hash_node<_Value, __cache>** __b)
320 : _Hashtable_iterator_base<_Value, __cache>(__p, __b) { }
323 _Hashtable_const_iterator(_Hash_node<_Value, __cache>** __b)
324 : _Hashtable_iterator_base<_Value, __cache>(*__b, __b) { }
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
mmintrin.h 418 _mm_set1_pi8(char __b)
420 return _mm_set_pi8(__b, __b, __b, __b, __b, __b, __b, __b);

Completed in 772 milliseconds

1 2 3 4 5 67 8 91011>>