HomeSort by relevance Sort by last modified time
    Searched defs:__x (Results 51 - 55 of 55) sorted by null

1 23

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_tree.h 102 _S_minimum(_Base_ptr __x)
104 while (__x->_M_left != 0) __x = __x->_M_left;
105 return __x;
109 _S_minimum(_Const_Base_ptr __x)
111 while (__x->_M_left != 0) __x = __x->_M_left;
112 return __x;
1069 _Link_type __x = _M_begin(); local
1205 _Link_type __x = _M_begin(); local
1236 _Const_Link_type __x = _M_begin(); local
1318 _Link_type __x = _M_begin(); local
1350 _Link_type __x = _M_begin(); local
1603 _Link_type __x = _M_begin(); local
1839 _Const_Link_type __x = static_cast<_Const_Link_type>(__it._M_node); local
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_bvector.h 45 _Bit_reference(unsigned int* __x, unsigned int __y)
46 : _M_p(__x), _M_mask(__y) {}
54 _Bit_reference& operator = (bool __x) {
55 if (__x) *_M_p |= _M_mask;
59 _Bit_reference& operator = (const _Bit_reference& __x) {
60 return *this = bool(__x);
62 bool operator == (const _Bit_reference& __x) const {
63 return bool(*this) == bool(__x);
65 bool operator < (const _Bit_reference& __x) const {
66 return !bool(*this) && bool(__x);
600 insert(end(), __n - size(), __x); local
674 _M_insert_aux(end(), __x); local
804 insert(end(), __new_size - size(), __x); local
    [all...]
  /external/libcxx/src/
locale.cpp 4717 __time_get_c_storage<char>::__x() const function in class:__time_get_c_storage
4725 __time_get_c_storage<wchar_t>::__x() const function in class:__time_get_c_storage
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
locale.cpp 4709 __time_get_c_storage<char>::__x() const function in class:__time_get_c_storage
4717 __time_get_c_storage<wchar_t>::__x() const function in class:__time_get_c_storage
    [all...]
  /external/valgrind/perf/
test_input_for_tinycc.c 636 unsigned short int __x[3]; member in struct:drand48_data
813 extern int abs (int __x) __attribute__ ((__nothrow__)) __attribute__ ((__const__));
814 extern long int labs (long int __x) __attribute__ ((__nothrow__)) __attribute__ ((__const__));
    [all...]

Completed in 1276 milliseconds

1 23