Searched defs:__buf_size (Results 1 - 3 of 3) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_num_put.c375 // Do not use __buf_size to define __buf static buffer, some compilers (HP aCC) do not accept const variable as
378 const ptrdiff_t __buf_size = sizeof(__buf) / sizeof(char); local
380 char* __ibeg = __write_integer_backward((char*)__buf + __buf_size, __flags, __x);
381 return __put_integer(__ibeg, (char*)__buf + __buf_size, __s, __f, __flags, __fill);
H A D_pthread_alloc.h134 size_type __buf_size = __n * sizeof(value_type); local
135 _Tp* __ret = __REINTERPRET_CAST(value_type*, _S_Alloc::allocate(__buf_size));
137 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size);
173 size_type __buf_size = __n * sizeof(value_type); local
174 _Tp* __ret = __REINTERPRET_CAST(value_type*, _S_Alloc::allocate(__buf_size));
176 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size);
178 __allocated_n = __buf_size / sizeof(value_type);
317 size_type __buf_size = __n * sizeof(value_type); local
318 _Tp* __ret = __REINTERPRET_CAST(_Tp*, _S_Alloc::allocate(__buf_size, _M_state));
320 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size);
359 size_type __buf_size = __n * sizeof(value_type); local
[all...]
H A D_alloc.h306 size_type __buf_size = __n * sizeof(value_type); local
307 _Tp* __ret = __REINTERPRET_CAST(_Tp*, __sgi_alloc::allocate(__buf_size));
309 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size);
347 size_type __buf_size = __n * sizeof(value_type); local
348 _Tp* __ret = __REINTERPRET_CAST(_Tp*, __sgi_alloc::allocate(__buf_size));
350 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size);
352 __allocated_n = __buf_size / sizeof(value_type);

Completed in 68 milliseconds