#include <climits>
#include <stl/_cstdlib.h>
#include <stl/_uninitialized.h>
#include <stl/_tempbuf.c>
Go to the source code of this file.
◆ __get_temporary_buffer()
Definition at line 37 of file _tempbuf.c.
38{
41
42 while (__len > 0) {
43 _Tp* __tmp = (_Tp*)
malloc((
size_t)__len *
sizeof(_Tp));
44 if (__tmp != 0)
46 __len /= 2;
47 }
48
50}
__kernel_ptrdiff_t ptrdiff_t
Referenced by get_temporary_buffer().
◆ get_temporary_buffer() [1/2]
Definition at line 54 of file _tempbuf.h.
54 {
56}
_STLP_BEGIN_NAMESPACE pair< _Tp *, ptrdiff_t > _STLP_CALL __get_temporary_buffer(ptrdiff_t __len, _Tp *)
◆ get_temporary_buffer() [2/2]
◆ return_temporary_buffer()