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

<<1112131415161718

  /external/chromium_org/third_party/mesa/src/src/mesa/program/
ir_to_mesa.cpp 153 /* Callers of this ralloc-based new need not call delete. It's
155 static void* operator new(size_t size, void *ctx)
353 ir_to_mesa_instruction *inst = new(mem_ctx) ir_to_mesa_instruction();
705 storage = new(mem_ctx) variable_storage(ir, PROGRAM_STATE_VAR, -1);
712 * elements that we're going to copy into the new temporary.
716 storage = new(mem_ctx) variable_storage(ir, PROGRAM_TEMPORARY,
761 counter = new(mem_ctx) ir_dereference_variable(ir->counter);
767 new(mem_ctx) ir_assignment(counter, ir->from, NULL);
776 new(mem_ctx) ir_expression(ir->cmp, glsl_type::bool_type,
778 ir_if *if_stmt = new(mem_ctx) ir_if(e)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-info.c 264 int new; local
270 yasm_object_get_general(object, ".debug_abbrev", 4, 0, 0, &new, 0);
272 yasm_object_get_general(object, ".debug_info", 4, 0, 0, &new, 0);
  /external/dnsmasq/src/
option.c 668 struct dhcp_opt *new = opt_malloc(sizeof(struct dhcp_opt)); local
675 new->len = 0;
676 new->flags = flags;
677 new->netid = NULL;
678 new->val = NULL;
679 new->opt = 0;
691 new->opt = atoi(arg);
702 new->opt = opttab[i].val;
711 new->u.vendor_class = (unsigned char *)opt_string_alloc(arg+7);
712 new->flags |= DHOPT_VENDOR
1150 struct resolvc *new, *list = daemon->resolv_files; local
1180 struct mx_srv_record *new; local
1227 struct hostsfile *new = opt_malloc(sizeof(struct hostsfile)); local
1250 struct cond_domain *new = safe_malloc(sizeof(struct cond_domain)); local
1301 struct iname *new = opt_malloc(sizeof(struct iname)); local
1316 struct iname *new = opt_malloc(sizeof(struct iname)); local
1351 struct iname *new = opt_malloc(sizeof(struct iname)); local
1629 struct dhcp_bridge *new = opt_malloc(sizeof(struct dhcp_bridge)); local
1661 struct dhcp_context *new = opt_malloc(sizeof(struct dhcp_context)); local
1799 struct dhcp_config *new; local
1983 struct dhcp_boot *new = opt_malloc(sizeof(struct dhcp_boot)); local
1998 struct dhcp_opt *new = opt_malloc(sizeof(struct dhcp_opt)); local
2042 struct pxe_service *new = opt_malloc(sizeof(struct pxe_service)); local
2119 struct dhcp_mac *new = opt_malloc(sizeof(struct dhcp_mac)); local
2144 struct dhcp_vendor *new = opt_malloc(sizeof(struct dhcp_vendor)); local
2216 struct dhcp_netid_list *new = opt_malloc(sizeof(struct dhcp_netid_list)); local
2260 struct doctor *new = opt_malloc(sizeof(struct doctor)); local
2295 struct interface_name *new, **up; local
2316 struct cname *new; local
2344 struct ptr_record *new; local
2367 struct naptr *new; local
2401 struct txt_record *new; local
2466 struct mx_srv_record *new; local
    [all...]
rfc2131.c 581 struct dhcp_config *new = find_config(daemon->dhcp_conf, context, NULL, 0, local
584 if (new && !have_config(new, CONFIG_CLID) && !new->hwaddr)
586 config = new;
1804 int new = do_opt(opt, NULL, NULL, null_term) + 2; local
    [all...]
  /external/ipsec-tools/src/racoon/
ipsec_doi.c 171 * make new SA payload to be replyed not including general header.
174 * positive: the pointer to new buffer of SA payload.
183 vchar_t *newsa; /* new SA payload approved. */
206 * return a new SA payload to be reply to peer.
287 plog(LLV_DEBUG, LOCATION, NULL, "gss id in new sa '%.*s'\n",
882 * make new SA payload to be replyed not including general header.
1111 * return a new SA payload to be reply to peer.
3873 vchar_t *new = NULL; local
3898 vchar_t *new = NULL; local
4093 vchar_t *new; local
4184 vchar_t *new; local
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h 258 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
264 void *operator new(size_t s) {
265 return User::operator new(s, 2);
385 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
391 void *operator new(size_t s) {
392 return User::operator new(s, 0);
448 /// specified value is in a memory location, and, if it is, stores a new value
452 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
459 void *operator new(size_t s) {
460 return User::operator new(s, 3)
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 76 default: // Map unknown/new linkages to external
203 void *operator new(size_t s) {
204 return User::operator new(s, 1);
271 Constant *C = new ConstantPlaceHolder(Ty, Context);
289 Value *V = new Argument(Ty);
314 // new value. If they reference more than one placeholder, update them all
328 // constant with a new constant that has *all* placeholder uses updated.
352 // Make the new constant.
395 // Deleting PrevVal sets Idx value in MDValuePtrs to null. Set new
877 } else // Otherwise, create a new struct
    [all...]
  /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...]
  /external/mesa3d/src/glsl/
ast.h 52 /* Callers of this ralloc-based new need not call delete. It's
54 static void* operator new(size_t size, void *ctx)
341 /* Callers of this ralloc-based new need not call delete. It's
343 static void* operator new(size_t size, void *ctx)
  /external/mesa3d/src/mesa/program/
ir_to_mesa.cpp 153 /* Callers of this ralloc-based new need not call delete. It's
155 static void* operator new(size_t size, void *ctx)
353 ir_to_mesa_instruction *inst = new(mem_ctx) ir_to_mesa_instruction();
705 storage = new(mem_ctx) variable_storage(ir, PROGRAM_STATE_VAR, -1);
712 * elements that we're going to copy into the new temporary.
716 storage = new(mem_ctx) variable_storage(ir, PROGRAM_TEMPORARY,
761 counter = new(mem_ctx) ir_dereference_variable(ir->counter);
767 new(mem_ctx) ir_assignment(counter, ir->from, NULL);
776 new(mem_ctx) ir_expression(ir->cmp, glsl_type::bool_type,
778 ir_if *if_stmt = new(mem_ctx) ir_if(e)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa.cpp 40 iCopyBmp = new (ELeave) CFbsBitmap();
99 iBmp = new (ELeave) CFbsBitmap();
177 iBitGdiBmp = new CFbsBitmap();
640 iSurface1 = new (ELeave) CDsbSurface(*this);
642 iSurface2 = new (ELeave) CDsbSurface(*this);
682 return new (ELeave) CDsaB(aSession, flags);
686 return new (ELeave) CBitmapSurface<CDsaBitgdi>(aSession);
690 return new (ELeave) CBitmapSurface<CDsaA>(aSession);
930 CFbsBitmap* s = new CFbsBitmap();
943 CFbsBitmap* s = new CFbsBitmap()
    [all...]
  /frameworks/base/libs/hwui/
DisplayListOp.h 61 // standard new() intentionally not implemented, and delete/deconstructor should never be used.
64 /** static void* operator new(size_t size); PURPOSELY OMITTED **/
65 static void* operator new(size_t size, LinearAllocator& allocator) {
748 // The atlas entry is stale, let's get a new one
965 // The atlas entry is stale, let's get a new one
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 128 default: // Map unknown/new linkages to external
217 void *operator new(size_t s) {
218 return User::operator new(s, 1);
286 Constant *C = new ConstantPlaceHolder(Ty, Context);
304 Value *V = new Argument(Ty);
329 // new value. If they reference more than one placeholder, update them all
343 // constant with a new constant that has *all* placeholder uses updated.
367 // Make the new constant.
410 // Deleting PrevVal sets Idx value in MDValuePtrs to null. Set new
680 } 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
497 void *operator new(size_t s) {
498 return User::operator new(s, 1);
566 Constant *C = new ConstantPlaceHolder(Ty, Context);
584 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...]
  /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/chromium_org/third_party/WebKit/Source/core/dom/
Node.cpp 100 void* Node::operator new(size_t size)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 201 /* Callers of this ralloc-based new need not call delete. It's
203 static void* operator new(size_t size, void *ctx)
493 glsl_to_tgsi_instruction *inst = new(mem_ctx) glsl_to_tgsi_instruction();
893 entry = new(mem_ctx) immediate_storage(values, size, datatype);
1050 storage = new(mem_ctx) variable_storage(ir, PROGRAM_STATE_VAR, -1);
1057 * elements that we're going to copy into the new temporary.
1061 storage = new(mem_ctx) variable_storage(ir, PROGRAM_TEMPORARY,
    [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
6543 LIBMTP_folder_t *new = (LIBMTP_folder_t *) malloc(sizeof(LIBMTP_folder_t)); local
6837 LIBMTP_playlist_t *new = (LIBMTP_playlist_t *) malloc(sizeof(LIBMTP_playlist_t)); local
7665 LIBMTP_album_t *new = (LIBMTP_album_t *) malloc(sizeof(LIBMTP_album_t)); local
7989 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/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 201 /* Callers of this ralloc-based new need not call delete. It's
203 static void* operator new(size_t size, void *ctx)
493 glsl_to_tgsi_instruction *inst = new(mem_ctx) glsl_to_tgsi_instruction();
893 entry = new(mem_ctx) immediate_storage(values, size, datatype);
1050 storage = new(mem_ctx) variable_storage(ir, PROGRAM_STATE_VAR, -1);
1057 * elements that we're going to copy into the new temporary.
1061 storage = new(mem_ctx) variable_storage(ir, PROGRAM_TEMPORARY,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.cpp 125 void* RenderObject::operator new(size_t sz)
146 RenderImage* image = new RenderImage(element);
162 return new RenderRubyAsInline(element);
164 return new RenderRubyAsBlock(element);
168 return new RenderRubyText(element);
170 return new RenderRegion(element, 0);
181 return new RenderInline(element);
187 return new RenderMultiColumnBlock(element);
188 return new RenderBlock(element);
190 return new RenderListItem(element)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-type.c 518 int new; local
525 yasm_object_get_general(object, ".debug$T", 1, 0, 0, &new, 0);
    [all...]
  /external/chromium_org/v8/src/
hydrogen.h 452 uint32_instructions_ = new(zone()) ZoneList<HInstruction*>(4, zone());
740 // new and delete.
1004 HInstruction* NewUncasted() { return I::New(zone(), context()); }
1007 I* New() { return I::cast(NewUncasted<I>()); }
1017 return I::New(zone(), context(), p1);
1021 I* New(P1 p1) { return I::cast(NewUncasted<I>(p1)); }
1040 return I::New(zone(), context(), p1, p2);
1044 I* New(P1 p1, P2 p2) {
    [all...]

Completed in 5785 milliseconds

<<1112131415161718