/external/bluetooth/glib/glib/ |
gerror.c | 57 * Creates a new #GError with the given @domain and @code, 60 * Return value: a new #GError 87 * Creates a new #GError; unlike g_error_new(), @message is not 92 * Return value: a new #GError 136 * Return value: a new #GError 188 * be %NULL. A new #GError is created and assigned to *@err. 197 GError *new; local 205 new = g_error_new_valist (domain, code, format, args); 209 *err = new; 211 g_warning (ERROR_OVERWRITTEN_WARNING, new->message); 235 GError *new; local [all...] |
/external/bsdiff/ |
bspatch.c | 67 u_char *old, *new; local 142 if((new=malloc(newsize+1))==NULL) err(1,NULL); 160 lenread = BZ2_bzRead(&dbz2err, dpfbz2, new + newpos, ctrl[0]); 168 new[newpos+i]+=old[oldpos+i]; 179 lenread = BZ2_bzRead(&ebz2err, epfbz2, new + newpos, ctrl[1]); 196 /* Write the new file */ 198 (write(fd,new,newsize)!=newsize) || (close(fd)==-1)) 201 free(new);
|
/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/e2fsprogs/lib/ext2fs/ |
alloc.c | 2 * alloc.c --- allocate new inodes, blocks for ext2fs 204 blk64_t new; local 206 retval = (fs->get_alloc_block)(fs, (blk64_t) goal, &new); 209 block = (blk_t) new;
|
/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); 320 * allocate new netentry and copy 321 * new splitnet network data
|
rsalist.c | 94 struct rsa_key *new; local 96 new = calloc(sizeof(struct rsa_key), 1); 97 if (new == NULL) 101 new->rsa = key->rsa->d != NULL ? RSAPrivateKey_dup(key->rsa) : RSAPublicKey_dup(key->rsa); 102 if (new->rsa == NULL) 107 new->src = malloc(sizeof(*new->src)); 108 if (new->src == NULL) 110 memcpy(new->src, key->src, sizeof(*new->src)) [all...] |
vendorid.c | 189 vchar_t vid, *new; local
|
/external/mesa3d/src/glsl/ |
glsl_symbol_table.cpp | 29 /* Callers of this hieralloc-based new need not call delete. It's 31 static void* operator new(size_t size, void *ctx) 98 /* If not declared at this scope, add a new entry. But if an existing 100 * the new variable declaration would shadow the function. 102 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); 114 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); 120 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(t); 134 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f); 140 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f);
|
/external/qemu/ |
async.c | 39 * To achieve the desired semantics we switch into a new AsyncContext. 62 * Enter a new AsyncContext. Already scheduled Bottom Halves and AIO callbacks 67 struct AsyncContext *new = qemu_mallocz(sizeof(*new)); local 68 new->parent = async_context; 69 new->id = async_context->id + 1; 70 async_context = new;
|
path.c | 51 struct pathelem *new = malloc(sizeof(*new)); local 52 new->name = strdup(name); 53 if (asprintf(&new->pathname, "%s/%s", root, name) == -1) { 57 new->num_entries = 0; 58 return new;
|
/external/quake/quake/src/QW/client/ |
d_surf.c | 131 surfcache_t *new;
local 162 new = sc_rover;
166 while (new->size < size)
175 new->size += sc_rover->size;
176 new->next = sc_rover->next;
180 if (new->size - size > 256)
182 sc_rover = (surfcache_t *)( (byte *)new + size);
183 sc_rover->size = new->size - size;
184 sc_rover->next = new->next;
187 new->next = sc_rover; [all...] |
/external/skia/include/core/ |
SkPostConfig.h | 69 #define SkNEW(type_name) new type_name 70 #define SkNEW_ARGS(type_name, args) new type_name args 71 #define SkNEW_ARRAY(type_name, count) new type_name[count] 224 void * operator new( 231 void * operator new[]( 246 #define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__, 0) 248 #define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__) 250 #define new DEBUG_CLIENTBLOCK macro
|
/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;
|
/external/stlport/stlport/stl/ |
_construct.h | 84 #if defined (new) 85 # define _STLP_NEW_REDEFINE new 86 # undef new macro 91 new(__p) _T1(); 119 new(__p) _Tp(__val); 139 new(__p) _T1(__val); 160 new(__p) _T1(_STLP_PRIV _AsMoveSource(__val)); 183 # define new DEBUG_NEW macro
|
/external/v8/src/ |
allocation.h | 42 // Superclass for classes managed with new & delete. 45 void* operator new(size_t size) { return New(size); } 49 static void* New(size_t size); 56 // superclass. The macro prevents the use of new & delete in debug mode. 64 void* operator new(size_t size); 77 void* operator new(size_t size); 85 T* result = new T[size]; 98 // and StrNDup uses new and calls the FatalProcessOutOfMemory handler 108 INLINE(static void* New(size_t size)) { return Malloced::New(size); [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
BumpPointerAllocator.h | 39 // allocate a new pool (which will be added to this one in a chain). 90 // Placement operator new, returns the last 'size' bytes of allocation for use as this. 91 void* operator new(size_t size, const PageAllocation& allocation) 124 return new(allocation) BumpPointerPool(allocation); 154 // We've run to the end; allocate a new pool.
|
/external/webkit/Source/WebCore/bindings/scripts/ |
CodeGeneratorCPP.pm | 92 sub new subroutine 635 push(@implContent, " , m_impl(new ${className}Private(impl))\n"); 642 push(@implContent, " m_impl = copy.impl() ? new ${className}Private(copy.impl()) : 0;\n"); 648 push(@implContent, " m_impl = copy.impl() ? new ${className}Private(copy.impl()) : 0;\n"); 749 my $argName = "new" . ucfirst($attributeName); 797 # make a new parameter name if the original conflicts with a property name [all...] |
CodeGeneratorObjC.pm | 193 sub new subroutine 270 # If this class was not found in PublicDOMInterfaces.h then it should be considered as an entirely new public class. 833 my $setter = "- (void)$setterName(" . $attributeType . ")new" . ucfirst($attributeName) . $declarationSuffix; [all...] |
/external/webkit/Source/WebKit2/ |
config.h | 137 // Helps us catch if anyone uses new or delete by accident in code and doesn't include "config.h". 138 #undef new macro
|
/external/webkit/Tools/DumpRenderTree/ |
config.h | 57 #undef new macro
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
CodeGeneratorTestRunner.pm | 30 sub new subroutine
|
/external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/ |
alloca.c | 180 register pointer new = xmalloc (sizeof (header) + size); local 184 ((header *)new)->h.next = last_alloca_header; 185 ((header *)new)->h.deep = depth; 187 last_alloca_header = (header *)new; 191 return (pointer)((char *)new + sizeof(header));
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_construct.h | 84 #if defined (new) 85 # define _STLP_NEW_REDEFINE new 86 # undef new macro 91 new(__p) _T1(); 119 new(__p) _Tp(__val); 139 new(__p) _T1(__val); 160 new(__p) _T1(_STLP_PRIV _AsMoveSource(__val)); 183 # define new DEBUG_NEW macro
|
/ndk/sources/host-tools/make-3.81/ |
ar.c | 222 struct nameseq *new = (struct nameseq *) xmalloc (state->size); 223 new->name = concat (state->arname, mem, ")"); 224 new->next = state->chain; 225 state->chain = new; 219 struct nameseq *new = (struct nameseq *) xmalloc (state->size); local
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_construct.h | 84 #if defined (new) 85 # define _STLP_NEW_REDEFINE new 86 # undef new macro 91 new(__p) _T1(); 119 new(__p) _Tp(__val); 139 new(__p) _T1(__val); 160 new(__p) _T1(_STLP_PRIV _AsMoveSource(__val)); 183 # define new DEBUG_NEW macro
|