OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_STLP_CHECK_NULL_ALLOC
(Results
1 - 9
of
9
) sorted by null
/external/stlport/stlport/stl/
_new.h
123
# define
_STLP_CHECK_NULL_ALLOC
(__x) void* __y = __x; if (__y == 0) { _STLP_THROW_BAD_ALLOC; } return __y
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)); }
/ndk/sources/cxx-stl/stlport/stlport/stl/
_new.h
123
# define
_STLP_CHECK_NULL_ALLOC
(__x) void* __y = __x; if (__y == 0) { _STLP_THROW_BAD_ALLOC; } return __y
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)); }
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_new.h
123
# define
_STLP_CHECK_NULL_ALLOC
(__x) void* __y = __x; if (__y == 0) { _STLP_THROW_BAD_ALLOC; } return __y
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)); }
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_new.h
123
# define
_STLP_CHECK_NULL_ALLOC
(__x) void* __y = __x; if (__y == 0) { _STLP_THROW_BAD_ALLOC; } return __y
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)); }
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_new.h
123
# define
_STLP_CHECK_NULL_ALLOC
(__x) void* __y = __x; if (__y == 0) { _STLP_THROW_BAD_ALLOC; } return __y
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)); }
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_new.h
123
# define
_STLP_CHECK_NULL_ALLOC
(__x) void* __y = __x; if (__y == 0) { _STLP_THROW_BAD_ALLOC; } return __y
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)); }
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_new.h
123
# define
_STLP_CHECK_NULL_ALLOC
(__x) void* __y = __x; if (__y == 0) { _STLP_THROW_BAD_ALLOC; } return __y
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)); }
/external/stlport/src/
allocators.cpp
61
void *__chunk =
_STLP_CHECK_NULL_ALLOC
(::operator new(__bytes, __FILE__, __LINE__));
69
// do not use
_STLP_CHECK_NULL_ALLOC
, this macro is dedicated to new operator.
[
all
...]
/ndk/sources/cxx-stl/stlport/src/
allocators.cpp
61
void *__chunk =
_STLP_CHECK_NULL_ALLOC
(::operator new(__bytes, __FILE__, __LINE__));
69
// do not use
_STLP_CHECK_NULL_ALLOC
, this macro is dedicated to new operator.
[
all
...]
Completed in 210 milliseconds