/external/clang/test/SemaCXX/Inputs/ |
warn-new-overaligned-3.h | 3 // This header file pretends to be <new> from the system library, for the 6 void* operator new(unsigned long) { 9 void* operator new[](unsigned long) { 13 void* operator new(unsigned long, void *) { 17 void* operator new[](unsigned long, void *) {
|
/external/clang/test/CXX/special/class.free/ |
p1.cpp | 5 void *operator new(size_t) { 8 void *operator new[](size_t) {
|
/abi/cpp/src/ |
new.cc | 30 #include <new> 34 operator new(std::size_t size) throw (/*std::bad_alloc*/)
|
/external/bison/lib/ |
strdup.c | 42 void *new = malloc (len); local 44 if (new == NULL) 47 return (char *) memcpy (new, s, len);
|
strndup.c | 29 char *new = malloc (len + 1); local 31 if (new == NULL) 34 new[len] = '\0'; 35 return memcpy (new, s, len);
|
/external/chromium_org/third_party/libjingle/overrides/allocator_shim/ |
allocator_proxy.cc | 18 // Override the global new/delete routines and proxy them over to the allocator 21 void* operator new(std::size_t n) throw() {
|
/external/clang/test/Sema/ |
arm-darwin-aapcs.cpp | 9 void* operator new(size_t size)
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_placement_new.h | 13 // The file provides 'placement new'. 21 inline void *operator new(__sanitizer::operator_new_size_type sz, void *p) {
|
/bionic/libc/bionic/ |
new.cpp | 18 #include <new> 25 void* operator new(std::size_t size) { 28 __libc_fatal("new failed to allocate %zu bytes", size); 33 void* operator new[](std::size_t size) { 36 __libc_fatal("new[] failed to allocate %zu bytes", size); 49 void* operator new(std::size_t size, const std::nothrow_t&) { 53 void* operator new[](std::size_t size, const std::nothrow_t&) {
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
libc_override_redefine.h | 34 // malloc/new/etc. (Typically this will be a windows msvcrt.dll that 52 void* operator new(size_t size) { return tc_new(size); } 54 void* operator new[](size_t size) { return tc_newarray(size); } 56 void* operator new(size_t size, const std::nothrow_t& nt) __THROW { 59 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW {
|
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
get_mangled_names.cc | 33 // When you are porting perftools to a new compiler or architecture 35 // symbol names for operator new and friends at the top of 52 #include <new> // for nothrow_t 54 static char m; // some dummy memory so new doesn't return NULL. 56 void* operator new(size_t size) { return &m; } 58 void* operator new[](size_t size) { return &m; } 61 void* operator new(size_t size, const std::nothrow_t&) throw() { return &m; } 63 void* operator new[](size_t size, const std::nothrow_t&) throw() { return &m; }
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
libc_override_redefine.h | 34 // malloc/new/etc. (Typically this will be a windows msvcrt.dll that 52 void* operator new(size_t size) { return tc_new(size); } 54 void* operator new[](size_t size) { return tc_newarray(size); } 56 void* operator new(size_t size, const std::nothrow_t& nt) __THROW { 59 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW {
|
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/ |
get_mangled_names.cc | 33 // When you are porting perftools to a new compiler or architecture 35 // symbol names for operator new and friends at the top of 52 #include <new> // for nothrow_t 54 static char m; // some dummy memory so new doesn't return NULL. 56 void* operator new(size_t size) { return &m; } 58 void* operator new[](size_t size) { return &m; } 61 void* operator new(size_t size, const std::nothrow_t&) throw() { return &m; } 63 void* operator new[](size_t size, const std::nothrow_t&) throw() { return &m; }
|
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/ |
Class.pm | 14 sub new { subroutine 16 my $self = $class->SUPER::new(@args);
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
BidiCharacterRun.cpp | 36 void* BidiCharacterRun::operator new(size_t sz)
|
/external/clang/test/CodeGenCXX/ |
DynArrayInit.cpp | 7 inline void* operator new[](unsigned long, void* __p) { return __p; } 9 new (a) char[4]();
|
/external/chromium_org/sync/syncable/ |
syncable_read_transaction.h | 25 void* operator new(size_t size) { return (::operator new)(size); }
|
/external/chromium_org/third_party/WebKit/Source/build/mac/ |
Prefix.h | 24 * 3) the special trick to catch us using new or delete without including "config.h" 78 #include <new> 94 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro 95 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
nouveau_heap.c | 104 struct nouveau_heap *new = r->next; local 106 new->prev = r->prev; 108 r->prev->next = new; 109 new->size += r->size; 110 new->start = r->start; 113 r = new;
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
openssl_aes.py | 11 def new(key, mode, IV): function
|
openssl_rc4.py | 11 def new(key): function
|
openssl_tripledes.py | 11 def new(key, mode, IV): function
|
python_aes.py | 11 def new(key, mode, IV): function
|
python_rc4.py | 9 def new(key): function
|
/external/chromium_org/third_party/webrtc/voice_engine/test/win_test/ |
WinTest.cc | 16 #define new DEBUG_NEW macro
|