HomeSort by relevance Sort by last modified time
    Searched refs:__n (Results 76 - 100 of 1443) sorted by null

1 2 34 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 38 void * _STLP_CALL __debug_alloc<_Alloc>::allocate(size_t __n) {
40 size_t __real_n = __n + __total_extra;
41 if (__real_n < __n) {
42 //It means that we rolled on size_t, __n must be very large:
49 __result->_M_size = (_STLP_UINT32_T)__n;
55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
61 _STLP_VERBOSE_ASSERT(__real_p->_M_size == __n, _StlMsg_DBA_SIZE_MISMATCH)
68 size_t __real_n = __n + __extra_before_chunk() + __extra_after_chunk();
70 for (__tmp= ((unsigned char*)__p) + __n * sizeof(value_type);
77 memset((char*)__p, __shred_byte, __n * sizeof(value_type))
    [all...]
_numeric.c 74 _Tp __power(_Tp __x, _Integer __n, _MonoidOperation __opr) {
76 if (__n == 0)
79 while ((__n & 1) == 0) {
80 __n >>= 1;
85 __n >>= 1; local
86 while (__n != 0) {
88 if ((__n & 1) != 0)
90 __n >>= 1;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
debug_allocator.h 87 allocate(size_type __n)
89 pointer __res = _M_allocator.allocate(__n + _M_extra);
91 *__ps = __n;
96 allocate(size_type __n, const void* __hint)
98 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
100 *__ps = __n;
105 deallocate(pointer __p, size_type __n)
110 if (*reinterpret_cast<size_type*>(__real_p) != __n)
115 _M_allocator.deallocate(__real_p, __n + _M_extra);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
debug_allocator.h 89 allocate(size_type __n)
91 pointer __res = _M_allocator.allocate(__n + _M_extra);
93 *__ps = __n;
98 allocate(size_type __n, const void* __hint)
100 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
102 *__ps = __n;
107 deallocate(pointer __p, size_type __n)
112 if (*reinterpret_cast<size_type*>(__real_p) != __n)
117 _M_allocator.deallocate(__real_p, __n + _M_extra);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
debug_allocator.h 89 allocate(size_type __n)
91 pointer __res = _M_allocator.allocate(__n + _M_extra);
93 *__ps = __n;
98 allocate(size_type __n, const void* __hint)
100 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
102 *__ps = __n;
107 deallocate(pointer __p, size_type __n)
112 if (*reinterpret_cast<size_type*>(__real_p) != __n)
117 _M_allocator.deallocate(__real_p, __n + _M_extra);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
debug_allocator.h 87 allocate(size_type __n)
89 pointer __res = _M_allocator.allocate(__n + _M_extra);
91 *__ps = __n;
96 allocate(size_type __n, const void* __hint)
98 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
100 *__ps = __n;
105 deallocate(pointer __p, size_type __n)
110 if (*reinterpret_cast<size_type*>(__real_p) != __n)
115 _M_allocator.deallocate(__real_p, __n + _M_extra);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 38 void * _STLP_CALL __debug_alloc<_Alloc>::allocate(size_t __n) {
40 size_t __real_n = __n + __total_extra;
41 if (__real_n < __n) {
42 //It means that we rolled on size_t, __n must be very large:
49 __result->_M_size = (_STLP_UINT32_T)__n;
55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
61 _STLP_VERBOSE_ASSERT(__real_p->_M_size == __n, _StlMsg_DBA_SIZE_MISMATCH)
68 size_t __real_n = __n + __extra_before_chunk() + __extra_after_chunk();
70 for (__tmp= ((unsigned char*)__p) + __n * sizeof(value_type);
77 memset((char*)__p, __shred_byte, __n * sizeof(value_type))
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
debug_allocator.h 87 allocate(size_type __n)
89 pointer __res = _M_allocator.allocate(__n + _M_extra);
91 *__ps = __n;
96 allocate(size_type __n, const void* __hint)
98 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
100 *__ps = __n;
105 deallocate(pointer __p, size_type __n)
110 if (*reinterpret_cast<size_type*>(__real_p) != __n)
115 _M_allocator.deallocate(__real_p, __n + _M_extra);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 38 void * _STLP_CALL __debug_alloc<_Alloc>::allocate(size_t __n) {
40 size_t __real_n = __n + __total_extra;
41 if (__real_n < __n) {
42 //It means that we rolled on size_t, __n must be very large:
49 __result->_M_size = (_STLP_UINT32_T)__n;
55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
61 _STLP_VERBOSE_ASSERT(__real_p->_M_size == __n, _StlMsg_DBA_SIZE_MISMATCH)
68 size_t __real_n = __n + __extra_before_chunk() + __extra_after_chunk();
70 for (__tmp= ((unsigned char*)__p) + __n * sizeof(value_type);
77 memset((char*)__p, __shred_byte, __n * sizeof(value_type))
    [all...]