/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
heap-checker_unittest.cc | 216 return new Callback0(function); 221 return new Callback1<P1>(function, p1); 226 return new Callback2<P1,P2>(function, p1, p2); 244 void* operator new(size_t size, const Initialized&) { 245 // Below we use "p = new(initialized) Foo[1];" and "delete[] p;" 246 // instead of "p = new(initialized) Foo;" 252 void* operator new[](size_t size, const Initialized&) { 253 char* p = new char[size]; 360 void* p = new(initialized) char[size]; 398 void** p = reinterpret_cast<void**>(new(initialized) char[size]) [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
heap-checker_unittest.cc | 216 return new Callback0(function); 221 return new Callback1<P1>(function, p1); 226 return new Callback2<P1,P2>(function, p1, p2); 244 void* operator new(size_t size, const Initialized&) { 245 // Below we use "p = new(initialized) Foo[1];" and "delete[] p;" 246 // instead of "p = new(initialized) Foo;" 252 void* operator new[](size_t size, const Initialized&) { 253 char* p = new char[size]; 360 void* p = new(initialized) char[size]; 398 void** p = reinterpret_cast<void**>(new(initialized) char[size]) [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interceptors.cc | 538 void *operator new(__sanitizer::uptr size); 539 void *operator new(__sanitizer::uptr size) { 544 void *operator new[](__sanitizer::uptr size); 545 void *operator new[](__sanitizer::uptr size) { 550 void *operator new(__sanitizer::uptr size, std::nothrow_t const&); 551 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) { 556 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&); 557 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) { 850 Report("ThreadSanitizer: starting new threads after multi-threaded " 854 VPrintf(1, "ThreadSanitizer: starting new threads after multi-threaded [all...] |
/external/icu/icu4c/source/common/unicode/ |
utypes.h | 386 * The ICU4C library must not use the global new and delete operators. 391 * that global new/delete are not used: 393 * a) Check for imports of global new/delete (see uobject.cpp for details) 394 * b) Verify that new is never imported. 403 * some Linux/Unix compilers have problems with defining global new/delete. 410 * Global operator new, defined only inside ICU4C, must not be used. 415 operator new(size_t /*size*/) { 422 /* This is only needed to suppress a Visual C++ 2008 warning for operator new[]. */ 426 * Global operator new[], defined only inside ICU4C, must not be used. 431 operator new[](size_t /*size*/) [all...] |
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
vfwprintf.c | 1471 unsigned char *new = mmap(NULL, newsize, PROT_WRITE|PROT_READ, local [all...] |
/external/blktrace/btt/ |
output.c | 379 struct seek_mode_info *new = malloc(sizeof(*new)); local 381 new->next = sip->head; 382 sip->head = new; 383 new->mode = *lp; 384 new->nseeks = mp->most_seeks; 386 add_buf(new);
|
/external/chromium_org/chrome/test/chromedriver/test/ |
run_py_tests.py | 218 """Wait for at least one new window to show up in 20 seconds. 221 old_handles: Handles to all old windows before the new window is added. 224 Handle to a new window. None if timeout. 413 ' div.innerHTML="new<br>";' 424 ' div.innerHTML="new<br>";' 435 ' div.innerHTML="new<br>";' 464 ' div.innerHTML = "new<br>";' 476 ' div.innerHTML="new<br>";' 536 ' div.innerHTML="new<br>";' 550 ' div.innerHTML="new<br>"; 950 new = [] variable in class:PerfTest._RunDriverPerfTest.Results [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
ListHashSet.h | 158 // and a bool that is true if an new entry was added. 257 m_allocator = adoptPtr(new ListHashSetAllocator); 361 void* operator new(size_t, NodeAllocator* allocator) 657 location = new (const_cast<V*>(&allocator)) T(key); [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkTypes.h | 76 #include <new> 78 inline void* operator new(size_t size) { 463 /** Assign a new ptr allocated with sk_malloc (or null), and return the 519 * malloc a new block of the smaller size. 532 * Reallocates the block to a new size. The ptr may or may not change. 630 * Return a new block of the requested size, freeing (as necessary) any
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
pprof | 789 my $term = new Term::ReadLine 'pprof'; 3503 sub new { subroutine [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/ |
cv-symline.c | 470 /* and create new lineinfo structure */ 490 /* build new lineset if necessary */ 559 int new; local 575 yasm_object_get_general(object, ".debug$S", 1, 0, 0, &new, 0); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/ |
dwarf2-line.c | 244 /* Create and add a new line opcode to a section, updating offset on insertion; 271 /* Create and add a new extended line opcode to a section, updating offset on 692 int new; local 711 &new, 0); [all...] |
/external/chromium_org/v8/src/ |
deoptimizer.h | 141 static Deoptimizer* New(JSFunction* function, 159 // patching. If there is not enough room a new relocation 448 void* operator new(size_t size, uint32_t frame_size) {
|
/external/clang/lib/AST/ |
DeclBase.cpp | 48 void *Decl::operator new(std::size_t Size, const ASTContext &Context, 66 void *Decl::operator new(std::size_t Size, const ASTContext &Ctx, 69 return ::operator new(Size + Extra, Ctx); 236 Decl::MultipleDC *MDC = new (Ctx) Decl::MultipleDC(); 985 /// built a lookup map. For every name in the map, pull in the new names from 1070 // We have both existing declarations and new declarations for this name. 1079 // Add in any new declarations. [all...] |
Stmt.cpp | 52 void *Stmt::operator new(size_t bytes, const ASTContext& C, 54 return ::operator new(bytes, C, alignment); 267 Body = new (C) Stmt*[Stmts.size()]; 277 Body = new (C) Stmt*[NumStmts]; 291 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); 299 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); 403 this->Names = new (C) IdentifierInfo*[NumExprs]; 407 this->Exprs = new (C) Stmt*[NumExprs]; 411 this->Constraints = new (C) StringLiteral*[NumExprs]; 415 this->Clobbers = new (C) StringLiteral*[NumClobbers] [all...] |
/external/e2fsprogs/e2fsck/ |
dict.c | 79 * child of C. The left subtree of C is inherited as the new right subtree 257 dict_t *new = malloc(sizeof *new); local 259 if (new) { 260 new->compare = comp; 261 new->allocnode = dnode_alloc; 262 new->freenode = dnode_free; 263 new->context = NULL; 264 new->nodecount = 0; 265 new->maxcount = maxcount 984 dnode_t *new = malloc(sizeof *new); local 1262 char *new = malloc(sz); local [all...] |
/external/e2fsprogs/resize/ |
resize2fs.c | 18 * 1. Adjust superblock and write out new parts of the inode 21 * contents of blocks from their old locations to the new ones. 25 * point at the new block locations. 28 * new ones. 32 * 4. Update the directory blocks with the new inode locations. 262 * initialize any new parts of the inode table. The new parts of the 270 * release them in the new filesystem data structure, and mark them as 450 int new; local 452 new = ((int) fs->super->s_reserved_gdt_blocks) [all...] |
/external/fio/ |
options.c | 766 * indicate a new file. 3754 char *new = malloc(strlen(opt) + 1); local [all...] |
/external/ipsec-tools/src/racoon/ |
oakley.c | 2366 cert_t *new; local 2401 cert_t *new; local 2924 cert_t *new; local 3138 vchar_t *buf = NULL, *new = NULL; local 3259 vchar_t *buf = 0, *new = 0; local [all...] |
pfkey.c | 2886 struct secpolicy *new = NULL; local [all...] |
/external/jemalloc/bin/ |
pprof | 789 my $term = new Term::ReadLine 'pprof'; 3512 sub new { subroutine [all...] |
/external/libpng/contrib/libtests/ |
pngunknown.c | 138 # define new not_the_cpp_new macro 1007 check_error(d, test, "new known chunk before IDAT"); 1009 check_error(d, test, "new unknown chunk before IDAT"); 1011 check_error(d, test, "new known chunk after IDAT"); 1013 check_error(d, test, "new unknown chunk after IDAT"); [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
builtin-kmem.c | 427 struct rb_node **new = &(root->rb_node); local 431 while (*new) { 435 this = rb_entry(*new, struct alloc_stat, node); 436 parent = *new; 445 new = &((*new)->rb_left); 447 new = &((*new)->rb_right); 450 rb_link_node(&data->node, parent, new);
|
builtin-lock.c | 134 static void thread_stat_insert(struct thread_stat *new) 144 if (new->tid < p->tid) 146 else if (new->tid > p->tid) 152 rb_link_node(&new->rb, parent, rb); 153 rb_insert_color(&new->rb, &thread_stats); 311 struct lock_stat *ret, *new; local 318 new = zalloc(sizeof(struct lock_stat)); 319 if (!new) 322 new->addr = addr; 323 new->name = zalloc(sizeof(char) * strlen(name) + 1) [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
session.c | 625 static void __queue_event(struct sample_queue *new, struct perf_session *s) 629 u64 timestamp = new->timestamp; 633 os->last_sample = new; 636 list_add(&new->list, &os->samples); 643 * the last queued event. We expect that the new event is close to 650 list_add_tail(&new->list, &os->samples); 656 list_add_tail(&new->list, &sample->list); 661 list_add(&new->list, &os->samples); 666 list_add(&new->list, &sample->list); 678 struct sample_queue *new; local 1210 void *new = realloc(buf, size); local [all...] |