HomeSort by relevance Sort by last modified time
    Searched defs:__x (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_noninline.h 66 int __x = __c; local
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
84 int __x = __c; local
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_noninline.h 66 int __x = __c; local
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
84 int __x = __c; local
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_noninline.h 66 int __x = __c; local
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
84 int __x = __c; local
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_noninline.h 66 int __x = __c; local
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
84 int __x = __c; local
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
ctype_noninline.h 66 int __x = __c; local
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
84 int __x = __c; local
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_noninline.h 66 int __x = __c; local
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
84 int __x = __c; local
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_noninline.h 66 int __x = __c; local
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
84 int __x = __c; local
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
ctype_noninline.h 66 int __x = __c; local
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
84 int __x = __c; local
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /external/stlport/stlport/stl/
_list.c 95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
103 insert(end(), __new_size - __len, __x); local
107 list<_Tp, _Alloc>& list<_Tp, _Alloc>::operator=(const list<_Tp, _Alloc>& __x) {
108 if (this != &__x) {
111 const_iterator __first2 = __x.begin();
112 const_iterator __last2 = __x.end();
168 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x,
173 _Literator __first2 = __x.begin();
174 _Literator __last2 = __x.end();
175 if (__that.get_allocator() == __x.get_allocator())
    [all...]
_tree.c 60 _Rb_global<_Dummy>::_Rotate_left(_Rb_tree_node_base* __x,
62 _Rb_tree_node_base* __y = __x->_M_right;
63 __x->_M_right = __y->_M_left;
65 __y->_M_left->_M_parent = __x;
66 __y->_M_parent = __x->_M_parent;
68 if (__x == __root)
70 else if (__x == __x->_M_parent->_M_left)
71 __x->_M_parent->_M_left = __y;
73 __x->_M_parent->_M_right = __y
148 _Rb_tree_node_base* __x; local
389 _Base_ptr __x = _M_root(); local
407 _Base_ptr __x = _M_root(); local
691 _Base_ptr __x = __it._M_node; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_list.c 95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
103 insert(end(), __new_size - __len, __x); local
107 list<_Tp, _Alloc>& list<_Tp, _Alloc>::operator=(const list<_Tp, _Alloc>& __x) {
108 if (this != &__x) {
111 const_iterator __first2 = __x.begin();
112 const_iterator __last2 = __x.end();
168 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x,
173 _Literator __first2 = __x.begin();
174 _Literator __last2 = __x.end();
175 if (__that.get_allocator() == __x.get_allocator())
    [all...]
_tree.c 60 _Rb_global<_Dummy>::_Rotate_left(_Rb_tree_node_base* __x,
62 _Rb_tree_node_base* __y = __x->_M_right;
63 __x->_M_right = __y->_M_left;
65 __y->_M_left->_M_parent = __x;
66 __y->_M_parent = __x->_M_parent;
68 if (__x == __root)
70 else if (__x == __x->_M_parent->_M_left)
71 __x->_M_parent->_M_left = __y;
73 __x->_M_parent->_M_right = __y
148 _Rb_tree_node_base* __x; local
389 _Base_ptr __x = _M_root(); local
407 _Base_ptr __x = _M_root(); local
691 _Base_ptr __x = __it._M_node; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
boost_concept_check.h 57 void (_Concept::*__x)() _IsUnused = &_Concept::__constraints;
218 _To __y _IsUnused = __x;
220 _From __x; member in struct:_ConvertibleConcept
234 bool __x _IsUnused = __t;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
boost_concept_check.h 60 void (_Concept::*__x)() _IsUnused = &_Concept::__constraints;
221 _To __y _IsUnused = __x;
223 _From __x; member in struct:_ConvertibleConcept
237 bool __x _IsUnused = __t;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
boost_concept_check.h 60 void (_Concept::*__x)() _IsUnused = &_Concept::__constraints;
221 _To __y _IsUnused = __x;
223 _From __x; member in struct:_ConvertibleConcept
237 bool __x _IsUnused = __t;
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
boost_concept_check.h 57 void (_Concept::*__x)() _IsUnused = &_Concept::__constraints;
218 _To __y _IsUnused = __x;
220 _From __x; member in struct:_ConvertibleConcept
234 bool __x _IsUnused = __t;
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_list.c 95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
103 insert(end(), __new_size - __len, __x); local
107 list<_Tp, _Alloc>& list<_Tp, _Alloc>::operator=(const list<_Tp, _Alloc>& __x) {
108 if (this != &__x) {
111 const_iterator __first2 = __x.begin();
112 const_iterator __last2 = __x.end();
168 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x,
173 _Literator __first2 = __x.begin();
174 _Literator __last2 = __x.end();
175 if (__that.get_allocator() == __x.get_allocator())
    [all...]
_tree.c 60 _Rb_global<_Dummy>::_Rotate_left(_Rb_tree_node_base* __x,
62 _Rb_tree_node_base* __y = __x->_M_right;
63 __x->_M_right = __y->_M_left;
65 __y->_M_left->_M_parent = __x;
66 __y->_M_parent = __x->_M_parent;
68 if (__x == __root)
70 else if (__x == __x->_M_parent->_M_left)
71 __x->_M_parent->_M_left = __y;
73 __x->_M_parent->_M_right = __y
148 _Rb_tree_node_base* __x; local
389 _Base_ptr __x = _M_root(); local
407 _Base_ptr __x = _M_root(); local
691 _Base_ptr __x = __it._M_node; local
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
boost_concept_check.h 57 void (_Concept::*__x)() _IsUnused = &_Concept::__constraints;
218 _To __y _IsUnused = __x;
220 _From __x; member in struct:_ConvertibleConcept
234 bool __x _IsUnused = __t;
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_list.c 95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
103 insert(end(), __new_size - __len, __x); local
107 list<_Tp, _Alloc>& list<_Tp, _Alloc>::operator=(const list<_Tp, _Alloc>& __x) {
108 if (this != &__x) {
111 const_iterator __first2 = __x.begin();
112 const_iterator __last2 = __x.end();
168 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x,
173 _Literator __first2 = __x.begin();
174 _Literator __last2 = __x.end();
175 if (__that.get_allocator() == __x.get_allocator())
    [all...]
_tree.c 60 _Rb_global<_Dummy>::_Rotate_left(_Rb_tree_node_base* __x,
62 _Rb_tree_node_base* __y = __x->_M_right;
63 __x->_M_right = __y->_M_left;
65 __y->_M_left->_M_parent = __x;
66 __y->_M_parent = __x->_M_parent;
68 if (__x == __root)
70 else if (__x == __x->_M_parent->_M_left)
71 __x->_M_parent->_M_left = __y;
73 __x->_M_parent->_M_right = __y
148 _Rb_tree_node_base* __x; local
389 _Base_ptr __x = _M_root(); local
407 _Base_ptr __x = _M_root(); local
691 _Base_ptr __x = __it._M_node; local
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/bits/
boost_concept_check.h 57 void (_Concept::*__x)() _IsUnused = &_Concept::__constraints;
218 _To __y _IsUnused = __x;
220 _From __x; member in struct:_ConvertibleConcept
234 bool __x _IsUnused = __t;
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_list.c 95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
103 insert(end(), __new_size - __len, __x); local
107 list<_Tp, _Alloc>& list<_Tp, _Alloc>::operator=(const list<_Tp, _Alloc>& __x) {
108 if (this != &__x) {
111 const_iterator __first2 = __x.begin();
112 const_iterator __last2 = __x.end();
168 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x,
173 _Literator __first2 = __x.begin();
174 _Literator __last2 = __x.end();
175 if (__that.get_allocator() == __x.get_allocator())
    [all...]
_tree.c 60 _Rb_global<_Dummy>::_Rotate_left(_Rb_tree_node_base* __x,
62 _Rb_tree_node_base* __y = __x->_M_right;
63 __x->_M_right = __y->_M_left;
65 __y->_M_left->_M_parent = __x;
66 __y->_M_parent = __x->_M_parent;
68 if (__x == __root)
70 else if (__x == __x->_M_parent->_M_left)
71 __x->_M_parent->_M_left = __y;
73 __x->_M_parent->_M_right = __y
148 _Rb_tree_node_base* __x; local
389 _Base_ptr __x = _M_root(); local
407 _Base_ptr __x = _M_root(); local
691 _Base_ptr __x = __it._M_node; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stdlib.h 420 unsigned short int __x[3]; /* Current state. */ member in struct:drand48_data
691 extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur;
692 extern long int labs (long int __x) __THROW __attribute__ ((__const__)) __wur;
696 __extension__ extern long long int llabs (long long int __x)

Completed in 1260 milliseconds

1 2 3 4