/external/toybox/toys/posix/ |
du.c | 90 } *new; local 92 for (new = *list; new; new = new->next) 93 if(new->ino == st->st_ino && new->dev == st->st_dev) 96 new = xzalloc(sizeof(*new)); 97 new->ino = st->st_ino [all...] |
/external/v8/src/ |
allocation.cc | 21 void* Malloced::New(size_t size) { 24 V8::FatalProcessOutOfMemory("Malloced operator new"); 39 void* Embedded::operator new(size_t size) { 50 void* AllStatic::operator new(size_t size) {
|
/external/valgrind/drd/tests/ |
annotate_sem.c | 40 unsigned old, new; local 46 new = old - 1; 49 } while (!old || !__sync_bool_compare_and_swap(&p->value, old, new));
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/ |
sample10_unittest.cc | 55 // operator new and operator delete help us control water allocation. 56 void* operator new(size_t allocation_size) { 99 Water* water = new Water; 106 Water* water = new Water; 139 // We don't need to worry about deleting the new listener later, as 141 listeners.Append(new LeakChecker);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/ |
F.pass.cpp | 17 #include <new> 23 void* operator new(std::size_t s) throw(std::bad_alloc)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/ |
swap.pass.cpp | 18 #include <new> 24 void* operator new(std::size_t s) throw(std::bad_alloc)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/ |
swap.pass.cpp | 17 #include <new> 23 void* operator new(std::size_t s) throw(std::bad_alloc)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
make_shared.pass.cpp | 17 #include <new> 23 void* operator new(std::size_t s) throw(std::bad_alloc)
|
/ndk/sources/third_party/googletest/googletest/samples/ |
sample10_unittest.cc | 55 // operator new and operator delete help us control water allocation. 56 void* operator new(size_t allocation_size) { 99 Water* water = new Water; 106 Water* water = new Water; 139 // We don't need to worry about deleting the new listener later, as 141 listeners.Append(new LeakChecker);
|
/sdk/find_java2/src/ |
WinLauncher2App.cpp | 26 #define new DEBUG_NEW
macro 93 CShellManager *pShellManager = new CShellManager;
|
/art/runtime/ |
monitor.h | 143 void* operator new(size_t size) { 331 // If we allow new monitor registration during sweeping this monitor may be incorrectly freed as
|
/bionic/libc/upstream-openbsd/lib/libc/net/ |
inet_pton.c | 86 u_int new = *tp * 10 + (pch - digits); local 88 if (new > 255) 95 *tp = new;
|
/external/avahi/avahi-python/avahi-discover/ |
avahi-discover.py | 68 self.new() 242 def new(self): member in class:Main_window
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/ |
crcmod.py | 90 # Don't want to perform the initialization when using new or copy 91 # to create a new instance. 118 def new(self, arg=None): member in class:Crc 119 '''Create a new instance of the Crc class initialized to the same 138 '''Create a new instance of the Crc class initialized to the same 143 c = self.new()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/ |
crcmod.py | 91 # Don't want to perform the initialization when using new or copy 92 # to create a new instance. 119 def new(self, arg=None): member in class:Crc 120 '''Create a new instance of the Crc class initialized to the same 139 '''Create a new instance of the Crc class initialized to the same 144 c = self.new()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/ |
crcmod.py | 90 # Don't want to perform the initialization when using new or copy 91 # to create a new instance. 118 def new(self, arg=None): member in class:Crc 119 '''Create a new instance of the Crc class initialized to the same 138 '''Create a new instance of the Crc class initialized to the same 143 c = self.new()
|
/external/clang/include/clang/Analysis/Analyses/ |
ThreadSafetyUtil.h | 67 inline void *operator new(size_t Sz, 263 Data = new VectorData(); 281 Data = new VectorData(); 287 Data = new VectorData(*Data); 320 // Push a new element onto the end. The vector must be writable.
|
/external/clang/test/CXX/expr/expr.unary/expr.new/ |
p20.cpp | 8 static void* operator new(size_t); 15 new X0<1>; // expected-note{{instantiation}} 23 static void* operator new(size_t); 30 new X1<1>; // expected-note{{instantiation}} 33 // Overloaded operator delete for placement new 38 static void* operator new(size_t, double, double); 39 static void* operator new(size_t, int, int); 49 new (0, 0) X2<1>; // expected-note{{instantiation}} 52 // Operator delete template for placement new 56 static void* operator new(size_t, double, double) [all...] |
/external/ipsec-tools/src/racoon/ |
isakmp_unity.c | 268 struct isakmp_data *new; local 282 new = (struct isakmp_data *)buffer->v; 283 new->type = attr->type; 284 new->lorv = htons(len); 286 network = (struct unity_network *)(new + 1); 311 * allocate new netentry and copy 312 * new splitnet network data
|
vendorid.c | 188 vchar_t vid, *new; local
|
/external/libnl/lib/ |
object.c | 38 * Allocate a new object of kind specified by the operations handle 40 * @return The new object or NULL 44 struct nl_object *new; local 46 if (ops->oo_size < sizeof(*new)) 49 new = calloc(1, ops->oo_size); 50 if (!new) 53 new->ce_refcnt = 1; 54 nl_init_list_head(&new->ce_list); 56 new->ce_ops = ops; 58 ops->oo_constructor(new); 96 struct nl_object *new; local [all...] |
/external/mesa3d/src/glsl/ |
glsl_symbol_table.cpp | 29 /* Callers of this ralloc-based new need not call delete. It's 31 static void* operator new(size_t size, void *ctx) 97 /* If not declared at this scope, add a new entry. But if an existing 99 * the new variable declaration would shadow the function. 101 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); 113 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); 119 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(t); 133 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f); 139 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(u); 145 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f) [all...] |
/external/skia/bench/ |
GrMemoryPoolBench.cpp | 19 // change this to 0 to compare GrMemoryPool to default new / delete 25 void* operator new (size_t size) { return gBenchPool.allocate(size); } 71 objects[count] = new A; 87 void* operator new (size_t size) { return gBenchPool.allocate(size); } 118 objects[idx].reset(new B); 132 void* operator new (size_t size) { return gBenchPool.allocate(size); } 162 objects[i] = new C; 176 DEF_BENCH( return new GrMemoryPoolBenchStack(); ) 177 DEF_BENCH( return new GrMemoryPoolBenchRandom(); ) 178 DEF_BENCH( return new GrMemoryPoolBenchQueue(); [all...] |
/external/skia/include/core/ |
SkTextBlob.h | 43 * @return A new SkTextBlob representing the serialized data, or NULL if the buffer is 61 // Memory for objects of this class is created with sk_malloc rather than operator new and must 64 void* operator new(size_t) { 65 SkFAIL("All blobs are created by placement new."); 68 void* operator new(size_t, void* p) { return p; } 114 * Allocates a new default-positioned run and returns its writable glyph buffer 130 * Allocates a new horizontally-positioned run and returns its writable glyph and position 146 * Allocates a new fully-positioned run and returns its writable glyph and position
|
/external/srtp/crypto/kernel/ |
crypto_kernel.c | 334 /* set head of list to new cipher type */ 379 /* set head of list to new auth type */ 470 kernel_debug_module_t *kdm, *new; local 486 new = (kernel_debug_module_t *)crypto_alloc(sizeof(kernel_debug_module_t)); 487 if (new == NULL) 491 new->mod = new_dm; 492 new->next = crypto_kernel.debug_module_list; 494 /* set head of list to new cipher type */ 495 crypto_kernel.debug_module_list = new;
|