HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 226 - 245 of 245) sorted by null

1 2 3 4 5 6 7 8 910

  /external/mdnsresponder/mDNSShared/
dnsextd.c 808 RRTableElem *ptr, *tmp, **new; local
811 VLog("Rehashing lease table (new size %d buckets)", newnbuckets);
812 new = malloc(sizeof(RRTableElem *) * newnbuckets);
813 if (!new) { LogErr("RehashTable", "malloc"); return; }
814 mDNSPlatformMemZero(new, newnbuckets * sizeof(RRTableElem *));
824 tmp->next = new[bucket];
825 new[bucket] = tmp;
830 d->table = new;
    [all...]
uds_daemon.c 141 // for each new request. This is because, until we've read the ipc_msg_hdr to find out what the
142 // operation is, we don't know if we're going to need to allocate a new request_state or not.
812 RecordUpdatedNiceLabel(m, 0); // Successfully got new name, tell user immediately
879 // with the old rdata (so that we can free it) and stores the new rdata in "rr->resrec.rdata". This means, (…)
1950 DNameListElem *new = mDNSPlatformMemAllocate(sizeof(DNameListElem)); local
    [all...]
  /external/mesa3d/src/glsl/
ast.h 52 /* Callers of this hieralloc-based new need not call delete. It's
54 static void* operator new(size_t size, void *ctx)
  /external/quake/quake/src/QW/client/
common.c 101 // ClearLink is used for new headnodes
1502 // open a new file on the pakfile
2011 char new[1024], *v; local
    [all...]
  /external/quake/quake/src/QW/server/
pr_cmds.c 101 Writes new values for v_forward, v_up, and v_right based on angles
291 float new; local
295 new = value1[0] * value1[0] + value1[1] * value1[1] + value1[2]*value1[2];
296 new = sqrt(new);
298 if (new == 0)
302 new = 1/new;
303 newvalue[0] = value1[0] * new;
304 newvalue[1] = value1[1] * new;
321 float new; local
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 129 default: // Map unknown/new linkages to external
207 void *operator new(size_t s) {
208 return User::operator new(s, 1);
276 Constant *C = new ConstantPlaceHolder(Ty, Context);
294 Value *V = new Argument(Ty);
319 // new value. If they reference more than one placeholder, update them all
333 // constant with a new constant that has *all* placeholder uses updated.
357 // Make the new constant.
400 // Deleting PrevVal sets Idx value in MDValuePtrs to null. Set new
699 } else // Otherwise, create a new struct
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 79 /// from the eh_selector call to the new landingpad instruction.
135 /// This function upgrades the old pre-3.0 exception handling system to the new
191 ExnSlot = new AllocaInst(ExnTy, "exn", Entry->getTerminator());
192 SelSlot = new AllocaInst(SelTy, "sel", Entry->getTerminator());
202 BasicBlock *NewBB = BasicBlock::Create(Context, "new.lpad",
370 default: // Map unknown/new linkages to external
486 void *operator new(size_t s) {
487 return User::operator new(s, 1);
555 Constant *C = new ConstantPlaceHolder(Ty, Context);
573 Value *V = new Argument(Ty)
    [all...]
  /ndk/sources/host-tools/make-3.81/
read.c 73 to new structures for included makefiles. */
273 /* Install a new conditional and return the previous one. */
276 install_conditionals (struct conditionals *new)
280 bzero ((char *) new, sizeof (*new));
281 conditionals = new;
423 struct conditionals new;
438 saved = install_conditionals (&new);
420 struct conditionals new; local
2256 struct nameseq *new = 0; local
2976 char *new = concat (home_dir, "", name + 1); local
3019 register struct nameseq *new = 0; local
    [all...]
  /build/core/
definitions.mk     [all...]
  /external/blktrace/
blktrace.c 102 * Each tracer will have a tracer_devpath_head that it will add new
226 * for scratch as new connections are established.
712 void *new; local
715 new = mmap(addr, length, prot, flags, fd, offset);
716 } while (new == MAP_FAILED && handle_mem_failure(length));
718 return new;
1338 * If there was some leftover before, tack this new
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 109 // Make vanilla 'new' and 'delete' illegal for Stmts.
111 void* operator new(size_t bytes) throw() {
112 llvm_unreachable("Stmts cannot be allocated with regular 'new'.");
301 // or by doing a placement new.
302 void* operator new(size_t bytes, ASTContext& C,
304 return ::operator new(bytes, C, alignment);
307 void* operator new(size_t bytes, ASTContext* C,
309 return ::operator new(bytes, *C, alignment);
312 void* operator new(size_t bytes, void* mem) throw() {
560 Body = new (C) Stmt*[NumStmts]
    [all...]
  /external/libmtp/src/
libmtp.c 243 * Create a new file mapping entry
273 filemap_t *new = NULL, *current; local
286 new = new_filemap_entry();
287 if(new == NULL) {
291 new->id = id;
293 new->description = strdup(description);
295 new->ptp_id = ptp_id;
299 filemap = new;
303 current->next = new;
414 * Create a new property mapping entr
444 propertymap_t *new = NULL, *current; local
3820 LIBMTP_file_t *new = (LIBMTP_file_t *) malloc(sizeof(LIBMTP_file_t)); local
4165 LIBMTP_track_t *new = (LIBMTP_track_t *) malloc(sizeof(LIBMTP_track_t)); local
6530 LIBMTP_folder_t *new = (LIBMTP_folder_t *) malloc(sizeof(LIBMTP_folder_t)); local
6824 LIBMTP_playlist_t *new = (LIBMTP_playlist_t *) malloc(sizeof(LIBMTP_playlist_t)); local
7652 LIBMTP_album_t *new = (LIBMTP_album_t *) malloc(sizeof(LIBMTP_album_t)); local
7976 LIBMTP_filesampledata_t *new = (LIBMTP_filesampledata_t *) malloc(sizeof(LIBMTP_filesampledata_t)); local
    [all...]
  /external/linux-tools-perf/
builtin-sched.c 949 struct rb_node **new = &(root->rb_node), *parent = NULL; local
951 while (*new) {
955 this = container_of(*new, struct work_atoms, node);
956 parent = *new;
961 new = &((*new)->rb_left);
963 new = &((*new)->rb_right);
966 rb_link_node(&data->node, parent, new);
    [all...]
  /external/mdnsresponder/mDNSCore/
uDNS.c 166 DNSServer *new; local
174 // penalize DNS server and no new servers to pick for the question and hence qDNSServer is NULL. If we
197 // We penalize the server so that new queries don't pick this server for DNSSERVER_PENALTY_TIME
216 new = GetServerForQuestion(m, q);
219 if (new == orig)
221 if (new)
222 LogMsg("PenalizeDNSServer: ERROR!! GetServerForQuestion returned the same server %#a:%d", &new->addr,
223 mDNSVal16(new->port));
230 // The new DNSServer is set in DNSServerChangeForQuestion
231 DNSServerChangeForQuestion(m, q, new);
4213 DNSServer *new; local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp 94 void* RenderObject::operator new(size_t sz, RenderArena* renderArena) throw()
117 RenderImage* image = new (arena) RenderImage(node);
128 return new (arena) RenderRubyAsInline(node);
130 return new (arena) RenderRubyAsBlock(node);
134 return new (arena) RenderRubyText(node);
140 return new (arena) RenderInline(node);
145 return new (arena) RenderBlock(node);
147 return new (arena) RenderListItem(node);
150 return new (arena) RenderTable(node);
154 return new (arena) RenderTableSection(node)
    [all...]
RenderLayer.cpp 116 void* ClipRects::operator new(size_t sz, RenderArena* renderArena) throw()
439 m_transform.set(new TransformationMatrix);
    [all...]
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 12 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
123 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
126 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 11 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
147 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
150 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 10 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
91 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
92 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
94 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END
    [all...]
  /external/v8/src/
ast.h 204 void* operator new(size_t size, Zone* zone) {
205 return zone->New(static_cast<int>(size));
244 void* operator new(size_t size);
    [all...]

Completed in 3138 milliseconds

1 2 3 4 5 6 7 8 910