Searched refs:__p_size (Results 1 - 1 of 1) sorted by relevance

/external/stlport/src/
H A Dallocators.cpp269 // Allocates a chunk for nobjs of size __p_size. nobjs may be reduced
271 static char* _S_chunk_alloc(size_t __p_size, int& __nobjs);
935 char *_Pthread_alloc_impl::_S_chunk_alloc(size_t __p_size, size_t &__nobjs, _Pthread_alloc_per_thread_state *__a) { argument
944 __total_bytes = __p_size * __nobjs;
950 } else if (__bytes_left >= __p_size) {
951 __nobjs = __bytes_left/__p_size;
952 __total_bytes = __p_size * __nobjs;
985 return _S_chunk_alloc(__p_size, __nobjs, __a);

Completed in 76 milliseconds