HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 126 - 150 of 452) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/ipsec-tools/src/racoon/
str2val.c 55 caddr_t new; local
59 if ((new = racoon_malloc(len)) == 0) return(0);
62 snprintf(&new[j], len - j, "%02x", (u_char)buf[i]);
65 new[j++] = ' ';
66 new[j] = '\0';
69 new[j] = '\0';
71 return(new);
  /external/libchrome/base/memory/
manual_constructor.h 36 static void* operator new[](size_t size) {
58 new(space_.void_data()) Type(params...);
  /external/libcxx/test/std/containers/sequences/list/list.modifiers/
insert_iter_iter_iter.pass.cpp 15 // UNSUPPORTED: sanitizer-new-delete
30 void* operator new(std::size_t s) throw(std::bad_alloc)
insert_iter_size_value.pass.cpp 14 // UNSUPPORTED: sanitizer-new-delete
29 void* operator new(std::size_t s) throw(std::bad_alloc)
insert_iter_value.pass.cpp 14 // UNSUPPORTED: sanitizer-new-delete
29 void* operator new(std::size_t s) throw(std::bad_alloc)
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/
new_array_nothrow_replace.pass.cpp 10 // test operator new [] nothrow by replacing only operator new
12 // UNSUPPORTED: sanitizer-new-delete
14 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
44 A* ap = new (std::nothrow) A[3];
new_array_replace.pass.cpp 10 // test operator new[] replacement by replacing only operator new
12 // UNSUPPORTED: sanitizer-new-delete
14 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
44 A* ap = new A[3];
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
new_nothrow_replace.pass.cpp 10 // test operator new nothrow by replacing only operator new
12 // UNSUPPORTED: sanitizer-new-delete
14 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
44 A* ap = new (std::nothrow) A;
new_replace.pass.cpp 10 // test operator new replacement
12 // UNSUPPORTED: sanitizer-new-delete
14 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
44 A* ap = new A;
  /external/libcxx/test/std/localization/locales/locale/locale.cons/
locale_facetptr.pass.cpp 11 // UNSUPPORTED: sanitizer-new-delete
18 #include <new>
25 void* operator new(std::size_t s) throw(std::bad_alloc)
88 std::locale loc2(loc, new my_facet);
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
auto_ptr.pass.cpp 14 // UNSUPPORTED: sanitizer-new-delete
17 #include <new>
23 void* operator new(std::size_t s) throw(std::bad_alloc)
61 std::auto_ptr<A> ptr(new A);
76 std::auto_ptr<A> ptr(new A);
pointer_deleter_throw.pass.cpp 16 // UNSUPPORTED: sanitizer-new-delete
20 #include <new>
37 void* operator new(std::size_t s) throw(std::bad_alloc)
51 A* ptr = new A;
pointer_throw.pass.cpp 14 // UNSUPPORTED: sanitizer-new-delete
17 #include <new>
34 void* operator new(std::size_t s) throw(std::bad_alloc)
49 A* ptr = new A;
unique_ptr.pass.cpp 14 // UNSUPPORTED: sanitizer-new-delete
17 #include <new>
23 void* operator new(std::size_t s) throw(std::bad_alloc)
67 std::unique_ptr<A> ptr(new A);
78 std::unique_ptr<A> ptr(new A);
104 fn(std::unique_ptr<int>(new int));
  /external/llvm/include/llvm/IR/
GlobalAlias.h 40 void *operator new(size_t s) {
41 return User::operator new(s, 1);
GlobalVariable.h 36 void *operator new(size_t, unsigned) = delete;
49 void *operator new(size_t s) {
50 return User::operator new(s, 1);
  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 63 inline void *operator new(size_t size,
  /external/llvm/lib/MC/
MCSymbol.cpp 23 void *MCSymbol::operator new(size_t s, const StringMapEntry<bool> *Name,
  /external/lzma/CPP/Common/
NewHandler.cpp 44 operator new(size_t size)
68 operator new[](size_t size)
100 void * __cdecl operator new(size_t size)
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_live_variables.h 55 static void* operator new(size_t size, void *ctx)
  /external/skia/src/gpu/batches/
GrBatch.cpp 41 void* GrBatch::operator new(size_t size) {
  /external/v8/src/
allocation.h 18 // Superclass for classes managed with new & delete.
21 void* operator new(size_t size) { return New(size); }
24 static void* New(size_t size);
31 // superclass. The macro prevents the use of new & delete in debug mode.
39 void* operator new(size_t size);
52 void* operator new(size_t size);
60 T* result = new T[size];
73 // and StrNDup uses new and calls the FatalProcessOutOfMemory handler
83 INLINE(void* New(size_t size)) { return Malloced::New(size);
    [all...]
  /external/valgrind/memcheck/tests/
new_override.cpp 3 #include <new>
10 void *operator new[](size_t size) throw(std::bad_alloc)
23 toto = new Test[2];
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/
insert_iter_iter_iter.pass.cpp 28 void* operator new(std::size_t s) throw(std::bad_alloc)
insert_iter_size_value.pass.cpp 27 void* operator new(std::size_t s) throw(std::bad_alloc)

Completed in 1772 milliseconds

1 2 3 4 56 7 8 91011>>