/external/ipsec-tools/src/racoon/ |
isakmp_cfg.c | 167 * Decrypt the packet. If this is the beginning of a new 760 vchar_t *new; local 762 new = vmalloc(s->l + append->l); 763 if (new == NULL) { 769 memcpy(new->v, s->v, s->l); 770 memcpy(new->v + s->l, append->v, append->l); 773 return new; 924 struct isakmp_data *new; 931 new = (struct isakmp_data *)buffer->v; 933 new->type = attr->type 968 struct isakmp_data *new; local 993 struct isakmp_data *new; local 1028 struct isakmp_data *new; local 1056 struct isakmp_data *new; local [all...] |
/external/libselinux/src/ |
avc.c | 125 struct avc_node *new; local 162 new = avc_malloc(sizeof(*new)); 163 if (!new) { 169 memset(new, 0, sizeof(*new)); 170 new->next = avc_node_freelist; 171 avc_node_freelist = new; 301 struct avc_node *new; local 308 new = avc_node_freelist [all...] |
/external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/ |
TocGenerator.pm | 71 #--- HTML::TocGenerator::new() ------------------------------------------------ 74 sub new { subroutine 77 my $self = $aType->SUPER::new; 90 } # new() 518 # No, don't use existing anchors; insert new anchor; 591 my $tokenTocBeginParser = HTML::_TokenTocBeginParser->new( 594 my $tokenTocEndParser = HTML::_TokenTocEndParser->new(); 1310 sub new { subroutine 1392 sub new { subroutine 1613 sub new { subroutine [all...] |
/external/linux-tools-perf/ |
builtin-kmem.c | 438 struct rb_node **new = &(root->rb_node); local 442 while (*new) { 446 this = rb_entry(*new, struct alloc_stat, node); 447 parent = *new; 456 new = &((*new)->rb_left); 458 new = &((*new)->rb_right); 461 rb_link_node(&data->node, parent, new);
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_dataflow.c | 481 struct rc_reader * new; local 484 new = &data->Readers[data->ReaderCount++]; 485 new->Inst = inst; 486 new->WriteMask = mask; 487 return new; 497 struct rc_reader * new = add_reader(pool, data, inst, mask); local 498 new->U.I.Src = src; 510 struct rc_reader * new = add_reader(pool, data, inst, mask); local 511 new->U.P.Src = src; 512 new->U.P.Arg = arg [all...] |
/external/mesa3d/src/glsl/ |
glsl_parser_extras.h | 63 /* Callers of this ralloc-based new need not call delete. It's 65 static void* operator new(size_t size, void *ctx)
|
glsl_types.h | 88 /* Callers of this ralloc-based new need not call delete. It's 90 static void* operator new(size_t size) 474 * Set on the first call to \c glsl_type::new.
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs.h | 69 /* Callers of this ralloc-based new need not call delete. It's 71 static void* operator new(size_t size, void *ctx) 129 /* Callers of this ralloc-based new need not call delete. It's 131 static void* operator new(size_t size, void *ctx)
|
brw_vec4.h | 82 /* Callers of this ralloc-based new need not call delete. It's 84 static void* operator new(size_t size, void *ctx) 120 /* Callers of this ralloc-based new need not call delete. It's 122 static void* operator new(size_t size, void *ctx) 149 /* Callers of this ralloc-based new need not call delete. It's 151 static void* operator new(size_t size, void *ctx)
|
/external/oprofile/libop/ |
op_events.c | 312 struct op_unit_mask *new, *um; local 319 new = new_unit_mask(); 320 new->name = xstrdup(value); 321 new->used = 1; 332 new->default_mask |= um->default_mask; 333 new->num += um->num; 334 if (new->num > MAX_UNIT_MASK) 337 new->um[num] = um->um[c]; 338 new->um[num].desc = xstrdup(new->um[num].desc) [all...] |
/external/skia/include/core/ |
SkTypes.h | 75 #include <new> 77 inline void* operator new(size_t size) { 402 /** Assign a new ptr allocated with sk_malloc (or null), and return the 457 * malloc a new block of the smaller size. 470 * Reallocates the block to a new size. The ptr may or may not change. 567 * Return a new block of the requested size, freeing (as necessary) any
|
/external/tremolo/Tremolo/ |
framing.c | 116 /* allocate a new buffer */ 136 /* allocate a new reference */ 271 /* make a new reference to tail the second piece */ 486 If a page consists of a packet begun on a previous page, and a new 624 allocate new fragment and expose it 646 /* current fragment used/full; get new fragment */ 648 ogg_reference *new=ogg_buffer_alloc(oy->bufferpool,bytes); local 649 oy->fifo_head->next=new; 650 oy->fifo_head=new;
|
/external/v8/src/ |
deoptimizer.h | 125 static Deoptimizer* New(JSFunction* function, 145 // patching. If there is not enough room a new relocation 350 void* operator new(size_t size, uint32_t frame_size) {
|
/external/valgrind/main/coregrind/ |
m_redir.c | 73 That calls VG_(redir_notify_new_DebugInfo) when a new DebugInfo 74 (shared object symbol table, basically) appears. Appearance of new 75 symbols can cause new (active) redirections to appear for two 76 reasons: the symbols in the new table may match existing 78 symbols in the new table may themselves supply new redirect 79 specifications which match existing symbols (or ones in the new 179 When a new DebugInfo appears: 180 - it may be the source of new specs 181 - it may be the source of new matches for existing spec 697 Active *old, new; local [all...] |
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-linux.c | 83 VG_(acquire_BigLock)(tid, "thread_wrapper(starting new thread)"); 89 /* Make sure error reporting is enabled in the new thread. */ 349 (VG_(interim_stack)) it's better to allocate a new one, so that 2952 vki_sigaction_toK_t new, *newp; local [all...] |
/ndk/sources/host-tools/make-3.81/ |
alloca.c | 217 register pointer new = malloc (sizeof (header) + size); local 220 if (new == 0) 223 ((header *) new)->h.next = last_alloca_header; 224 ((header *) new)->h.deep = depth; 226 last_alloca_header = (header *) new; 230 return (pointer) ((char *) new + sizeof (header));
|
dir.c | 453 /* The directory was not found. Create a new entry for it. */ 815 register struct dirfile *new; 881 /* Make a new entry and put it in the table. */ 883 new = (struct dirfile *) xmalloc (sizeof (struct dirfile)); 884 new->name = xstrdup (filename); 885 new->length = strlen (filename); 886 new->impossible = 1; 887 hash_insert (&dir->contents->dirfiles, new); 1111 struct dirstream *new; 1124 new = (struct dirstream *) xmalloc (sizeof (struct dirstream)) 809 register struct dirfile *new; local 1101 struct dirstream *new; local [all...] |
/ndk/sources/host-tools/make-3.81/glob/ |
glob.c | 451 /* This call is to set a new vector, so clear out the 463 /* Construct the new glob expression. */ 1035 char *new = realloc (pglob->gl_pathv[i], len); 1036 if (new == NULL) 1041 strcpy (&new[len - 2], "/"); 1042 pglob->gl_pathv[i] = new; 1139 char *new = (char *) malloc (dirlen + 1 + eltlen); 1140 if (new == NULL) 1149 char *endp = (char *) mempcpy (new, dirname, dirlen); 1154 memcpy (new, dirname, dirlen) 1034 char *new = realloc (pglob->gl_pathv[i], len); local 1138 char *new = (char *) malloc (dirlen + 1 + eltlen); local 1335 struct globlink *new = (struct globlink *) local [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
alloca.c | 200 register header *new; local 206 new = malloc (combined_size); 208 if (! new) 211 new->h.next = last_alloca_header; 212 new->h.deep = depth; 214 last_alloca_header = new; 218 return (void *) (new + 1);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
unroll1.cpp | 14 inline void* operator new(size_t, void* __p) throw() { return __p; } 161 new (addr) double(); 166 new (addr) double(model); 245 char *tmp = new char[nsize]; 278 : RefBlockController(size), dataObjectPtr_m(new char), owned_m(true) {} 319 blockControllerPtr_m(new DataBlockController(size)) {}
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
unroll1.cpp | 14 inline void* operator new(size_t, void* __p) throw() { return __p; } 161 new (addr) double(); 166 new (addr) double(model); 245 char *tmp = new char[nsize]; 278 : RefBlockController(size), dataObjectPtr_m(new char), owned_m(true) {} 319 blockControllerPtr_m(new DataBlockController(size)) {}
|
/system/extras/ext4_utils/ |
allocate.c | 578 struct region *new; local 590 new = malloc(sizeof(struct region)); 592 new->bg = reg->bg; 593 new->block = reg->block + len; 594 new->len = reg->len - len; 595 new->next = reg->next; 596 new->prev = reg; 598 reg->next = new; 602 alloc->list.iter = new;
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
utypes.h | 525 * The ICU4C library must not use the global new and delete operators. 530 * that global new/delete are not used: 532 * a) Check for imports of global new/delete (see uobject.cpp for details) 533 * b) Verify that new is never imported. 542 * some Linux/Unix compilers have problems with defining global new/delete. 549 * Global operator new, defined only inside ICU4C, must not be used. 554 operator new(size_t /*size*/) { 561 /* This is only needed to suppress a Visual C++ 2008 warning for operator new[]. */ 565 * Global operator new[], defined only inside ICU4C, must not be used. 570 operator new[](size_t /*size*/) [all...] |
/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...] |