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

/external/stlport/stlport/stl/
H A D_new.h123 # define _STLP_CHECK_NULL_ALLOC(__x) void* __y = __x; if (__y == 0) { _STLP_THROW_BAD_ALLOC; } return __y macro
125 # define _STLP_CHECK_NULL_ALLOC(__x) return __x
131 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n, __FILE__, __LINE__)); }
134 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n)); }

Completed in 62 milliseconds