HomeSort by relevance Sort by last modified time
    Searched refs:__tmp (Results 1 - 25 of 150) sorted by null

1 2 3 4 5 6

  /bionic/libc/kernel/arch-sh/asm/
posix_types_32.h 59 unsigned long __tmp = __fd / __NFDBITS; local
61 __fdsetp->fds_bits[__tmp] |= (1UL<<__rem);
67 unsigned long __tmp = __fd / __NFDBITS; local
69 __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem);
75 unsigned long __tmp = __fd / __NFDBITS; local
77 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0;
83 unsigned long *__tmp = __p->fds_bits; local
89 __tmp[ 0] = 0; __tmp[ 1] = 0;
90 __tmp[ 2] = 0; __tmp[ 3] = 0
    [all...]
posix_types_64.h 59 unsigned long __tmp = __fd / __NFDBITS; local
61 __fdsetp->fds_bits[__tmp] |= (1UL<<__rem);
67 unsigned long __tmp = __fd / __NFDBITS; local
69 __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem);
75 unsigned long __tmp = __fd / __NFDBITS; local
77 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0;
83 unsigned long *__tmp = __p->fds_bits; local
89 __tmp[ 0] = 0; __tmp[ 1] = 0;
90 __tmp[ 2] = 0; __tmp[ 3] = 0
    [all...]
  /external/stlport/stlport/stl/
_valarray.c 37 _Valarray_bool __tmp(this->size(), _Valarray_bool::_NoInit());
39 __tmp[__i] = !(*this)[__i];
40 return __tmp;
57 valarray<_Tp> __tmp(__slice.size(), _NoInit());
62 __tmp[__i] = (*this)[__index];
63 return __tmp;
99 valarray<_Tp> __tmp(__slice._M_size(), _NoInit());
100 if (__tmp.size() != 0) {
102 do __tmp[__i._M_step] = (*this)[__i._M_1d_idx]; while(__i._M_incr());
104 return __tmp;
    [all...]
_alloc.c 63 unsigned char* __tmp; local
64 for (__tmp = (unsigned char*)(__real_p + 1); __tmp < (unsigned char*)__p; ++__tmp) {
65 _STLP_VERBOSE_ASSERT(*__tmp == __shred_byte, _StlMsg_DBA_UNDERRUN)
70 for (__tmp= ((unsigned char*)__p) + __n * sizeof(value_type);
71 __tmp < ((unsigned char*)__real_p) + __real_n ; ++__tmp) {
72 _STLP_VERBOSE_ASSERT(*__tmp == __shred_byte, _StlMsg_DBA_OVERRUN)
_tempbuf.c 43 _Tp* __tmp = (_Tp*) malloc((size_t)__len * sizeof(_Tp)); local
44 if (__tmp != 0)
45 return pair<_Tp*, ptrdiff_t>(__tmp, __len);
_valarray.h 180 valarray<_Tp> __tmp(this->size(), _NoInit());
182 __tmp[__i] = -(*this)[__i];
183 return __tmp;
187 valarray<_Tp> __tmp(this->size(), _NoInit());
189 __tmp[__i] = ~(*this)[__i];
190 return __tmp;
351 valarray<_Tp> __tmp(this->size());
352 transform(this->_M_first + 0, this->_M_first + this->_M_size, __tmp._M_first,
354 return __tmp;
357 valarray<_Tp> __tmp(this->size())
    [all...]
_ios.c 49 basic_streambuf<_CharT, _Traits>* __tmp = _M_streambuf; local
52 return __tmp;
70 locale __tmp = ios_base::imbue(__loc); local
79 __tmp = ios_base::imbue(__tmp);
82 return __tmp;
_raw_storage_iter.h 64 raw_storage_iterator<_ForwardIterator, _Tp> __tmp = *this; local
66 return __tmp;
_numeric.c 65 _Tp __tmp = *__first; local
66 *++__result = __binary_op(__tmp, __val);
67 __val = __tmp;
_iterator_old.h 86 _BidirectionalIterator __tmp = current; local
87 return *(--__tmp);
97 _Self __tmp = *this; local
99 return __tmp;
106 _Self __tmp = *this; local
108 return __tmp;
190 _Self __tmp = *this; local
192 return __tmp;
199 _Self __tmp = *this; local
201 return __tmp;
    [all...]
_complex.c 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp; local
94 __tmp.flags(__os.flags());
95 __tmp.imbue(__os.getloc());
96 __tmp.precision(__os.precision());
97 __tmp << '(' << __z.real() << ',' << __z.imag() << ')';
98 return __os << __tmp.str();
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_valarray.c 37 _Valarray_bool __tmp(this->size(), _Valarray_bool::_NoInit());
39 __tmp[__i] = !(*this)[__i];
40 return __tmp;
57 valarray<_Tp> __tmp(__slice.size(), _NoInit());
62 __tmp[__i] = (*this)[__index];
63 return __tmp;
99 valarray<_Tp> __tmp(__slice._M_size(), _NoInit());
100 if (__tmp.size() != 0) {
102 do __tmp[__i._M_step] = (*this)[__i._M_1d_idx]; while(__i._M_incr());
104 return __tmp;
    [all...]
_alloc.c 63 unsigned char* __tmp; local
64 for (__tmp = (unsigned char*)(__real_p + 1); __tmp < (unsigned char*)__p; ++__tmp) {
65 _STLP_VERBOSE_ASSERT(*__tmp == __shred_byte, _StlMsg_DBA_UNDERRUN)
70 for (__tmp= ((unsigned char*)__p) + __n * sizeof(value_type);
71 __tmp < ((unsigned char*)__real_p) + __real_n ; ++__tmp) {
72 _STLP_VERBOSE_ASSERT(*__tmp == __shred_byte, _StlMsg_DBA_OVERRUN)
_tempbuf.c 43 _Tp* __tmp = (_Tp*) malloc((size_t)__len * sizeof(_Tp)); local
44 if (__tmp != 0)
45 return pair<_Tp*, ptrdiff_t>(__tmp, __len);
_valarray.h 180 valarray<_Tp> __tmp(this->size(), _NoInit());
182 __tmp[__i] = -(*this)[__i];
183 return __tmp;
187 valarray<_Tp> __tmp(this->size(), _NoInit());
189 __tmp[__i] = ~(*this)[__i];
190 return __tmp;
351 valarray<_Tp> __tmp(this->size());
352 transform(this->_M_first + 0, this->_M_first + this->_M_size, __tmp._M_first,
354 return __tmp;
357 valarray<_Tp> __tmp(this->size())
    [all...]
_ios.c 49 basic_streambuf<_CharT, _Traits>* __tmp = _M_streambuf; local
52 return __tmp;
70 locale __tmp = ios_base::imbue(__loc); local
79 __tmp = ios_base::imbue(__tmp);
82 return __tmp;
_raw_storage_iter.h 64 raw_storage_iterator<_ForwardIterator, _Tp> __tmp = *this; local
66 return __tmp;
_numeric.c 65 _Tp __tmp = *__first; local
66 *++__result = __binary_op(__tmp, __val);
67 __val = __tmp;
_iterator_old.h 86 _BidirectionalIterator __tmp = current; local
87 return *(--__tmp);
97 _Self __tmp = *this; local
99 return __tmp;
106 _Self __tmp = *this; local
108 return __tmp;
190 _Self __tmp = *this; local
192 return __tmp;
199 _Self __tmp = *this; local
201 return __tmp;
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_raw_storage_iter.h 98 raw_storage_iterator<_OutputIterator, _Tp> __tmp = *this; local
100 return __tmp;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
string_conversions.h 52 const _TRet __tmp = __convf(__str, &__endptr, __base...); local
58 && (__tmp < __numeric_traits<int>::__min
59 || __tmp > __numeric_traits<int>::__max)))
62 __ret = __tmp;
concurrence.h 153 __gthread_mutex_t __tmp = __GTHREAD_MUTEX_INIT; local
154 _M_mutex = __tmp;
203 __gthread_recursive_mutex_t __tmp = __GTHREAD_RECURSIVE_MUTEX_INIT; local
204 _M_mutex = __tmp;
276 __gthread_cond_t __tmp = __GTHREAD_COND_INIT; local
277 _M_cond = __tmp;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
time_members.h 64 char* __tmp = new char[__len]; local
65 __builtin_memcpy(__tmp, __s, __len);
66 _M_name_timepunct = __tmp;
  /bionic/libc/kernel/common/linux/byteorder/
swab.h 28 #define __arch__swab16(x) ({ __u16 __tmp = (x) ; ___swab16(__tmp); })
31 #define __arch__swab32(x) ({ __u32 __tmp = (x) ; ___swab32(__tmp); })
34 #define __arch__swab64(x) ({ __u64 __tmp = (x) ; ___swab64(__tmp); })
  /development/ndk/platforms/android-3/include/linux/byteorder/
swab.h 28 #define __arch__swab16(x) ({ __u16 __tmp = (x) ; ___swab16(__tmp); })
31 #define __arch__swab32(x) ({ __u32 __tmp = (x) ; ___swab32(__tmp); })
34 #define __arch__swab64(x) ({ __u64 __tmp = (x) ; ___swab64(__tmp); })

Completed in 2800 milliseconds

1 2 3 4 5 6