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

<<1112131415161718

  /system/core/sh/
cd.c 244 char *new; local
270 STARTSTACKSTR(new);
274 STPUTC(*p++, new);
276 STUNPUTC(new);
280 while (new > stackblock() && (STUNPUTC(new), *new) != '/');
282 STPUTC('/', new);
284 STPUTC(*p++, new);
287 if (new == stackblock()
    [all...]
  /external/llvm/include/llvm/MC/
MCContext.h 187 /// to process a new module
195 /// CreateTempSymbol - Create and return a new assembler temporary symbol
417 // operator new and delete aren't allowed inside namespaces.
419 /// @brief Placement new for using the MCContext's allocator.
421 /// This placement form of operator new uses the MCContext's allocator for
422 /// obtaining memory. It is a non-throwing new, which means that it returns
428 /// IntegerLiteral *Ex = new (Context) IntegerLiteral(arguments);
430 /// IntegerLiteral *Ex2 = new (Context, 8) IntegerLiteral(arguments);
441 inline void *operator new(size_t Bytes, llvm::MCContext &C,
445 /// @brief Placement delete companion to the new above
    [all...]
  /art/compiler/dex/
growable_array.h 69 static void* operator new(size_t size, ArenaAllocator* arena) {
89 // Expand the list size to at least new length.
155 static void* operator new(size_t size, ArenaAllocator* arena) {
  /development/host/windows/usb/adb_winapi_test/
adb_winapi_test.cpp 26 #define new DEBUG_NEW macro
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
token.rb 213 CommonToken = Struct.new( :type, :channel, :text, :input, :start,
259 new( *args )
264 new(
288 EOF_TOKEN = CommonToken.new( EOF ).freeze
289 INVALID_TOKEN = CommonToken.new( INVALID_TOKEN_TYPE ).freeze
290 SKIP_TOKEN = CommonToken.new( INVALID_TOKEN_TYPE ).freeze
329 CommonTokenStream.new( self, options ) { | t, stream | yield( t, stream ) }
331 CommonTokenStream.new( self, options )
363 token_class.new( *args ) do |*targs|
367 token_class.new( *args
502 def self.new( tk_class = nil, &body ) singleton method in class:ANTLR3.with.ARecognizerOrSuch.provided.TokenScheme
    [all...]
  /external/bluetooth/bluedroid/main/
bte_main.c 241 int new; local
249 new = (hci_logging_enabled == TRUE) || (hci_logging_config == TRUE);
251 if ((old == new) || bt_disabled || (bt_hc_if == NULL)) {
255 bt_hc_if->logging(new ? BT_HC_LOGGING_ON : BT_HC_LOGGING_OFF, hci_logfile);
  /external/bsdiff/
bsdiff.c 142 static off_t matchlen(u_char *old,off_t oldsize,u_char *new,off_t newsize)
147 if(old[i]!=new[i]) break;
153 u_char *new,off_t newsize,off_t st,off_t en,off_t *pos)
158 x=matchlen(old+I[st],oldsize-I[st],new,newsize);
159 y=matchlen(old+I[en],oldsize-I[en],new,newsize);
171 if(memcmp(old+I[x],new,MIN(oldsize-I[x],newsize))<0) {
172 return search(I,old,oldsize,new,newsize,x,en,pos);
174 return search(I,old,oldsize,new,newsize,st,x,pos);
199 u_char *old,*new; local
238 ((new=malloc(newsize+1))==NULL) |
    [all...]
  /external/chromium_org/base/memory/
scoped_ptr_unittest.cc 55 void* operator new(size_t size) {
91 return scoped_ptr<ConDecLogger>(new ConDecLogger(constructed));
109 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
121 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
125 scoper.reset(new ConDecLogger(&constructed));
133 scoper.reset(new ConDecLogger(&constructed));
143 scoper.reset(new ConDecLogger(&constructed));
156 ConDecLogger* logger = new ConDecLogger(&constructed);
177 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
194 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed))
    [all...]
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 91 /* Initializes and returns a new xzfile pointer that will read from f. On
374 u_char *old, *new; local
395 40 8 length of new file
397 68 20 SHA1 of new file
462 if((new=malloc(newsize+1))==NULL) err(1,NULL);
477 cfread(&df, new + newpos, ctrl[0]);
482 new[newpos+i]+=old[oldpos+i];
493 cfread(&ef, new + newpos, ctrl[1]);
505 SHA1(new, newsize, sha1);
509 errx(1, "new hash mismatch: %s != %s"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.cpp 71 void* InlineBox::operator new(size_t sz)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 79 struct rc_instruction *new = rc_alloc_instruction(c); local
80 memcpy(new, ptr, sizeof(struct rc_instruction));
81 rc_insert_instruction(append_to, new);
82 append_to = new;
radeon_variable.c 279 struct rc_variable * new = local
281 memset(new, 0, sizeof(struct rc_variable));
282 new->C = c;
283 new->Dst.File = DstFile;
284 new->Dst.Index = DstIndex;
285 new->Dst.WriteMask = DstWriteMask;
287 new->Inst = reader_data->Writer;
288 new->ReaderCount = reader_data->ReaderCount;
289 new->Readers = reader_data->Readers;
291 return new;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
list.h 79 /* Callers of this ralloc-based new need not call delete. It's
81 static void* operator new(size_t size, void *ctx)
288 /* Callers of this ralloc-based new need not call delete. It's
290 static void* operator new(size_t size, void *ctx)
  /external/chromium_org/third_party/openssl/openssl/ssl/
s3_lib.c 887 /* New AES ciphersuites */
1272 /* New TLS Export CipherSuites from expired ID */
3510 DH *new=NULL,*dh; local
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkTArray.h 11 #include <new>
44 template <typename T, bool MEM_COPY> void* operator new(size_t, SkTArray<T, MEM_COPY>*, int);
73 * Copies one array to another. The new array will be heap allocated.
80 * Creates a SkTArray by copying contents of a standard C array. The new
159 * Adds 1 new default-constructed T value and returns in by reference. Note
170 * Version of above that uses a copy constructor to initialize the new item
180 * of that new range. Note: this address is only valid until the next API
386 // the new objects.
428 friend void* operator new<T>(size_t, SkTArray*, int);
448 void* operator new(size_t, SkTArray<T, MEM_COPY>* array, int atIndex)
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrEffect.h 26 * new draw operations separately from ownership within a deferred drawing queue. When the
31 * GrEffectRefs created by new are placed in a per-thread managed pool. The pool is destroyed when
46 void* operator new(size_t size);
49 void* operator new(size_t size, void* placement) {
50 return ::operator new(size, placement);
176 void* operator new(size_t size);
179 void* operator new(size_t size, void* placement) {
180 return ::operator new(size, placement);
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSSettings.py 188 new: an array of labels that are new to MSBuild.
191 def __init__(self, label_list, new=None):
196 if new is not None:
197 self._msbuild_values.update(new)
271 """Defines a setting that may have moved to a new section.
400 for old, new in replace_map.iteritems():
401 s = s.replace(old, new)
589 new=['Send'])) # /errorReport:send" variable
594 new=['SyncCThrow'])) # /EH variable
607 new=['Disabled'])) # \/Ob0 variable
631 new=['EnableAllWarnings'])) # \/Wall variable
751 new=['POSIX']) # \/SUBSYSTEM:POSIX variable
805 new=['LinkVerboseICF', # \/VERBOSE:ICF variable
822 new=['SendErrorReport'])) # \/ERRORREPORT:SEND variable
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-expr-1.cpp 158 void *operator new(__SIZE_TYPE__) {
167 new X(); // expected-note{{instantiation of}}
175 (void)new char[count]();
  /external/dnsmasq/contrib/wrt/
dhcp_release.c 80 void *new; local
85 if (!(new = malloc(size)))
93 memcpy(new, iov->iov_base, iov->iov_len);
97 iov->iov_base = new;
  /external/dnsmasq/src/
helper.c 324 struct script_data *new; local
330 if (!(new = whine_malloc(size)))
334 buf = new;
util.c 430 void *new; local
435 if (!(new = whine_malloc(size)))
443 memcpy(new, iov->iov_base, iov->iov_len);
447 iov->iov_base = new;
  /external/e2fsprogs/tests/progs/
test_rel.c 95 printf("Old= %u, New= %u, Owner= %u:%u\n", old, ent->new,
110 printf("Old= %lu, New= %lu, Original=%lu, Max_refs=%u\n", old,
111 ent->new, ent->orig, ent->max_refs);
177 blk_t old, new, offset=0, owner=0; local
188 if (parse_block(argv[0], "new block", argv[2], &new))
200 ent.new = new;
307 blk_t old, new; local
384 ext2_ino_t old, new, max_refs; local
616 ext2_ino_t old, new; local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_ident.c 1768 vchar_t *buf = NULL, *new = NULL; local
    [all...]
isakmp_quick.c 1740 vchar_t *buf = NULL, *new = NULL; local
    [all...]
proposal.c 82 struct saprop *new; local
84 new = racoon_calloc(1, sizeof(*new));
85 if (new == NULL)
88 return new;
94 struct saproto *new; local
96 new = racoon_calloc(1, sizeof(*new));
97 if (new == NULL)
100 return new;
156 struct satrns *new; local
    [all...]

Completed in 3919 milliseconds

<<1112131415161718