/external/quake/quake/src/QW/qwfwd/ |
misc.c | 385 char new[512];
402 sprintf (new, "\\%s\\%s", key, value);
404 if (strlen(new) + strlen(s) > MAX_INFO_STRING)
409 strcat (s, new);
384 char new[512]; local
|
/external/srec/portable/src/ |
pmemory_ext.c | 39 void* operator new(size_t size) function 293 /* PSOSIM's license manager calls new() before PSOS is running */ 347 /* PortMemCntReset() : reset the New/Delete count. 348 * This is useful for checking that each new has a corresponding delete once 358 /* PortMemGetCount() : return the accumulated new & delete counts */
|
/external/stlport/stlport/stl/config/ |
_evc.h | 114 // when using MFC, disable another placement new declaration, since there is one in wcealt.h 223 /* Workaround when using MFCCE and using <new> together: MFCCE's wcealt.h doesn't 224 * check for __PLACEMENT_NEW_INLINE before defining operator new, so when <new> 226 * "function 'void *__cdecl operator new(unsigned int,void *)' already has a body". 245 // evc3 has new, but no explicit header 295 // define placement new and delete operator 296 // note: when MFCCE headers are included first, don't define the new operator, 301 inline void *__cdecl operator new(size_t, void *_P) { return (_P); }
|
/external/v8/src/ |
deoptimizer.h | 110 static Deoptimizer* New(JSFunction* function, 120 // patching. If there is not enough room a new relocation 300 void* operator new(size_t size, uint32_t frame_size) {
|
/external/webkit/Source/JavaScriptCore/runtime/ |
JSCell.h | 117 void* operator new(size_t, ExecState*); 118 void* operator new(size_t, JSGlobalData*); 119 void* operator new(size_t, void* placementNewDestination) { return placementNewDestination; } 400 inline void* JSCell::operator new(size_t size, JSGlobalData* globalData) 405 inline void* JSCell::operator new(size_t size, ExecState* exec)
|
JSGlobalObject.cpp | 107 m_globalScopeChain.set(*m_globalData, this, new (m_globalData.get()) ScopeChainNode(0, this, m_globalData.get(), this, thisValue)); 172 m_functionPrototype.set(exec->globalData(), this, new (exec) FunctionPrototype(exec, this, FunctionPrototype::createStructure(exec->globalData(), jsNull()))); // The real prototype will be set once ObjectPrototype is created. 180 m_objectPrototype.set(exec->globalData(), this, new (exec) ObjectPrototype(exec, this, ObjectPrototype::createStructure(exec->globalData(), jsNull()), m_functionStructure.get())); 190 m_arrayPrototype.set(exec->globalData(), this, new (exec) ArrayPrototype(this, ArrayPrototype::createStructure(exec->globalData(), m_objectPrototype.get()))); 194 m_stringPrototype.set(exec->globalData(), this, new (exec) StringPrototype(exec, this, StringPrototype::createStructure(exec->globalData(), m_objectPrototype.get()))); 197 m_booleanPrototype.set(exec->globalData(), this, new (exec) BooleanPrototype(exec, this, BooleanPrototype::createStructure(exec->globalData(), m_objectPrototype.get()), m_functionStructure.get())); 200 m_numberPrototype.set(exec->globalData(), this, new (exec) NumberPrototype(exec, this, NumberPrototype::createStructure(exec->globalData(), m_objectPrototype.get()), m_functionStructure.get())); 203 m_datePrototype.set(exec->globalData(), this, new (exec) DatePrototype(exec, this, DatePrototype::createStructure(exec->globalData(), m_objectPrototype.get()))); 206 m_regExpPrototype.set(exec->globalData(), this, new (exec) RegExpPrototype(exec, this, RegExpPrototype::createStructure(exec->globalData(), m_objectPrototype.get()), m_functionStructure.get())); 211 ErrorPrototype* errorPrototype = new (exec) ErrorPrototype(exec, this, ErrorPrototype::createStructure(exec->globalData(), m_objectProt (…) [all...] |
/external/webkit/Source/WebCore/bindings/scripts/ |
CodeGeneratorJS.pm | 68 sub new subroutine 281 # FIXME: This method will go away once all SVG animated properties are converted to the new scheme. [all...] |
CodeGeneratorV8.pm | 69 sub new subroutine 614 my $signature = "v8::Signature::New(" . $className . "::GetRawTemplate())"; 625 static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New($newTemplateString); 634 static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New($newTemplateString); [all...] |
/external/yaffs2/yaffs2/ |
devextras.h | 29 #define new newHack macro 70 * Insert a new entry between two known consecutive entries. 75 static __inline__ void __list_add(struct list_head *new, 79 next->prev = new; 80 new->next = next; 81 new->prev = prev; 82 prev->next = new; 86 * list_add - add a new entry 87 * @new: new entry to be adde 266 #undef new macro [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
_evc.h | 114 // when using MFC, disable another placement new declaration, since there is one in wcealt.h 223 /* Workaround when using MFCCE and using <new> together: MFCCE's wcealt.h doesn't 224 * check for __PLACEMENT_NEW_INLINE before defining operator new, so when <new> 226 * "function 'void *__cdecl operator new(unsigned int,void *)' already has a body". 245 // evc3 has new, but no explicit header 295 // define placement new and delete operator 296 // note: when MFCCE headers are included first, don't define the new operator, 301 inline void *__cdecl operator new(size_t, void *_P) { return (_P); }
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/ |
_evc.h | 114 // when using MFC, disable another placement new declaration, since there is one in wcealt.h 223 /* Workaround when using MFCCE and using <new> together: MFCCE's wcealt.h doesn't 224 * check for __PLACEMENT_NEW_INLINE before defining operator new, so when <new> 226 * "function 'void *__cdecl operator new(unsigned int,void *)' already has a body". 245 // evc3 has new, but no explicit header 295 // define placement new and delete operator 296 // note: when MFCCE headers are included first, don't define the new operator, 301 inline void *__cdecl operator new(size_t, void *_P) { return (_P); }
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/ |
_evc.h | 114 // when using MFC, disable another placement new declaration, since there is one in wcealt.h 223 /* Workaround when using MFCCE and using <new> together: MFCCE's wcealt.h doesn't 224 * check for __PLACEMENT_NEW_INLINE before defining operator new, so when <new> 226 * "function 'void *__cdecl operator new(unsigned int,void *)' already has a body". 245 // evc3 has new, but no explicit header 295 // define placement new and delete operator 296 // note: when MFCCE headers are included first, don't define the new operator, 301 inline void *__cdecl operator new(size_t, void *_P) { return (_P); }
|
/system/core/liblinenoise/ |
linenoise.c | 301 /* Show the new entry */ 432 char **new; local 438 new = malloc(sizeof(char*)*len); 439 if (new == NULL) return 0; 441 memcpy(new,history+(history_max_len-tocopy), sizeof(char*)*tocopy); 443 history = new;
|
/system/core/toolbox/ |
mount.c | 69 char *new; local 71 new = realloc(extra->str, newlen + 1); /* +1 for NUL */ 72 if (!new) 75 extra->str = new;
|
/external/bison/lib/ |
hash.c | 508 /* Allocate and return a new hash table, or NULL upon failure. The initial 701 /* Get a new hash entry for a bucket overflow, possibly by reclying a 702 previously freed one. If this is not possible, allocate a new one. */ 707 struct hash_entry *new; local 711 new = table->free_entry_list; 712 table->free_entry_list = new->next; 717 new = obstack_alloc (&table->entry_stack, sizeof *new); 719 new = malloc (sizeof *new); [all...] |
/external/bluetooth/bluez/gdbus/ |
watch.c | 456 char *name, *old, *new; local 461 DBUS_TYPE_STRING, &new, 467 update_name_cache(name, new); 472 if (*new == '\0') { 625 error("Can't allocate new message");
|
/external/dnsmasq/src/ |
dhcp.c | 146 /* Very new Linux kernels return the actual size needed, 668 int count, new; local 709 (new = memcmp_masked(conf_addr->hwaddr, hwaddr, hw_len, conf_addr->wildcard_mask)) > count) 711 count = new;
|
/external/ipsec-tools/src/racoon/ |
handler.c | 277 /* Relocate phase2s to better phase1s or request a new phase1. */ 290 * the iph1 is new, migrate all phase2s that belong to a dying or dead ph1 350 * create new isakmp Phase 1 status record to handle isakmp in Phase1 357 /* create new iph1 */ 375 * delete new isakmp Phase 1 status record to handle isakmp in Phase1 467 * create new isakmp Phase 1 status record to handle isakmp in Phase1 692 * create new isakmp Phase 2 status record to handle isakmp in Phase2 699 /* create new iph2 */ 782 * delete new isakmp Phase 2 status record to handle isakmp in Phase2 826 * create new isakmp Phase 2 status record to handle isakmp in Phase 964 struct contacted *new; local 1098 struct recvdpkt *new = NULL; local [all...] |
isakmp_quick.c | 2081 vchar_t *buf = NULL, *new = NULL; local [all...] |
sockmisc.c | 731 struct sockaddr *new; local 733 if ((new = racoon_calloc(1, len)) == NULL) { 741 new->sa_family = AF_INET6; 743 new->sa_family = AF_INET; 746 new->sa_len = len; 749 return new;
|
/external/iptables/iptables/ |
iptables-xml.c | 78 /* global new argv and argc */ 535 unsigned int new = 0; local 539 while (new < newargc && old < oldargc) { 540 if (isTarget(oldargv[old]) && isTarget(newargv[new])) { 556 // break when old!=new 557 if (strcmp(oldargv[old], newargv[new]) != 0) { 563 new++; 689 /* New table */ 704 /* New chain. */ 718 DEBUGP("Creating new chain '%s'\n", chain) [all...] |
/external/llvm/include/llvm/ |
InstrTypes.h | 91 void *operator new(size_t, unsigned); // Do not implement 105 void *operator new(size_t s) { 106 return User::operator new(s, 1); 141 void *operator new(size_t, unsigned); // Do not implement 151 void *operator new(size_t s) { 152 return User::operator new(s, 2); 409 /// insert the new CastInst before InsertBefore (if it is non-null). 421 /// to automatically insert the new CastInst at the end of InsertAtEnd (if 629 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT 683 void *operator new(size_t s) [all...] |
/external/quake/quake/src/QW/client/ |
zone.c | 158 memblock_t *start, *rover, *new, *base; local 190 new = (memblock_t *) ((byte *)base + size ); 191 new->size = extra; 192 new->tag = 0; // free block 193 new->prev = base; 194 new->id = ZONEID; 195 new->next = base->next; 196 new->next->prev = new; 197 base->next = new; 582 cache_system_t *new; local 687 cache_system_t *cs, *new; local [all...] |
/external/quake/quake/src/QW/server/ |
pr_edict.c | 71 Either finds a free edict, or allocates a new one. 687 char *new, *new_p; local 691 new = Hunk_Alloc (l); 692 new_p = new; 708 return new; 789 Parses an edict out of the given string, returning the new position
|
/system/core/sh/ |
exec.c | 225 char **new; local 266 new = ckmalloc(i + ((char *)ap2 - (char *)argv)); 267 ap = newargs, ap2 = new; 272 shellexec(new, envp, pathval(), 0); 688 * Called before PATH is changed. The argument is the new value of PATH; 696 const char *old, *new; local 702 new = newval; 707 if (*old != *new) { 709 if ((*old == '\0' && *new == ':') 710 || (*old == ':' && *new == '\0') [all...] |