HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 376 - 400 of 437) sorted by null

<<1112131415161718

  /external/icu4c/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/stdio/
vfprintf.c 1209 unsigned char *new = (unsigned char *)mmap(NULL, local
1212 memmove(new, *typetable, *tablesize);
1214 *typetable = new;
  /dalvik/vm/compiler/codegen/x86/libenc/
encoder.h 202 void * operator new(size_t, void * mem) {
  /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/third_party/WebKit/Source/bindings/scripts/
deprecated_code_generator_v8.pm 32 # my $outer = new Block("Free Name 1", "namespace Foo {", "} // namespace Foo");
34 # my $inner = new Block("Free Name 2", "namespace Bar {", "} // namespace Bar");
47 sub new subroutine
246 sub new subroutine
303 my $parser = deprecated_idl_parser->new(1);
335 $header{root} = new Block("ROOT", "", "");
337 $header{conditional} = new Block("Conditional", "$conditionalIf", $conditionalEndif ? "$conditionalEndif\n" : "");
338 $header{includes} = new Block("Includes", "", "");
339 $header{nameSpaceWebCore} = new Block("Namespace WebCore", "\nnamespace WebCore {\n", "}\n");
340 $header{class} = new Block("Class definition", "", "")
    [all...]
deprecated_idl_parser.pm 129 sub new { subroutine
132 my $emptyToken = Token->new();
216 my $document = idlDocument->new();
276 my $token = Token->new();
517 my $interface = domInterface->new();
714 my $interface = domInterface->new();
773 my $enum = domEnum->new();
828 my $callback = callbackFunction->new();
852 my $typedef = Typedef->new();
889 my $newDataNode = domConstant->new();
    [all...]
  /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 176 static Deoptimizer* New(JSFunction* function,
196 // patching. If there is not enough room a new relocation
528 void* operator new(size_t size, uint32_t frame_size) {
  /external/clang/lib/AST/
Stmt.cpp 52 void *Stmt::operator new(size_t bytes, ASTContext& C,
54 return ::operator new(bytes, C, alignment);
57 void *Stmt::operator new(size_t bytes, ASTContext* C,
59 return ::operator new(bytes, *C, alignment);
268 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]
    [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...]
profile.c 1082 struct profile_node *new; local
1084 new = malloc(sizeof(struct profile_node));
1085 if (!new)
1087 memset(new, 0, sizeof(struct profile_node));
1088 new->name = strdup(name);
1089 if (new->name == 0) {
1090 profile_free_node(new);
1094 new->value = strdup(value);
1095 if (new->value == 0) {
1096 profile_free_node(new);
1147 struct profile_node *p, *last, *new; 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.
242 * initialize any new parts of the inode table. The new parts of the
250 * release them in the new filesystem data structure, and mark them as
418 int new; local
420 new = ((int) fs->super->s_reserved_gdt_blocks)
    [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/linux-tools-perf/
builtin-lock.c 142 static void thread_stat_insert(struct thread_stat *new)
152 if (new->tid < p->tid)
154 else if (new->tid > p->tid)
160 rb_link_node(&new->rb, parent, rb);
161 rb_insert_color(&new->rb, &thread_stats);
313 struct lock_stat *ret, *new; local
320 new = zalloc(sizeof(struct lock_stat));
321 if (!new)
324 new->addr = addr;
325 new->name = zalloc(sizeof(char) * strlen(name) + 1)
    [all...]
  /external/linux-tools-perf/util/
session.c 584 static void __queue_event(struct sample_queue *new, struct perf_session *s)
588 u64 timestamp = new->timestamp;
591 os->last_sample = new;
594 list_add(&new->list, &os->samples);
601 * the last queued event. We expect that the new event is close to
608 list_add_tail(&new->list, &os->samples);
614 list_add_tail(&new->list, &sample->list);
619 list_add(&new->list, &os->samples);
624 list_add(&new->list, &sample->list);
636 struct sample_queue *new; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa_new.cpp 179 iBmp = new (ELeave) CFbsBitmap();
206 iCopyBmp = new (ELeave) CFbsBitmap();
358 iSurface1 = new (ELeave) CDsbSurface(*this);
360 iSurface2 = new (ELeave) CDsbSurface(*this);
399 return new (ELeave) CDsaB(aSession, flags);
402 return new (ELeave) CDsaA(aSession);
689 CFbsBitmap* s = new CFbsBitmap();
702 CFbsBitmap* s = new CFbsBitmap();
1255 void* operator new(TUint aBytes, TAny* aMem);
1272 void* TRgbCopy<T>::operator new(TUint /*aBytes*/, TAny* aMem
    [all...]
dsa_old.cpp 70 iBmp = new (ELeave) CFbsBitmap();
230 iSurface1 = new (ELeave) CDsbSurface(*this);
231 iSurface2 = new (ELeave) CDsbSurface(*this);
476 CFbsBitmap* s = new CFbsBitmap();
489 CFbsBitmap* s = new CFbsBitmap();
668 return new (ELeave) CDsaB(aSession);
671 return new (ELeave) CDsaA(aSession);
951 void* operator new(TUint aBytes, TAny* aMem);
959 void* TRgbCopy<T>::operator new(TUint /*aBytes*/, TAny* aMem)
1038 return new (mem) TRgbCopy<TUint8>(aMode)
    [all...]
  /external/qemu/proxy/
proxy_http_rewriter.c 87 int new = strlen(value); local
88 char* s = realloc((char*)h->value, old+new+1);
91 memcpy(s + old, value, new+1);
579 /* now create new URI */
762 * accepting a new header */
    [all...]
  /external/clang/include/clang/AST/
ASTContext.h 685 /// \brief Notify the AST context that a new import declaration has been
    [all...]
  /external/checkpolicy/
policy_define.c 2038 role_datum_t *new; local
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 439 void* operator new(size_t size) { return (::operator new)(size); }
521 void* operator new(size_t size) { return (::operator new)(size); }
871 // before any new entries have been created. The intention is that the
931 // For new entry creation only
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ast.h 52 /* Callers of this ralloc-based new need not call delete. It's
54 static void* operator new(size_t size, void *ctx)
341 /* Callers of this ralloc-based new need not call delete. It's
343 static void* operator new(size_t size, void *ctx)

Completed in 1197 milliseconds

<<1112131415161718