HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 201 - 225 of 307) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.h 209 // Better define placement new in the class instead of relying on the
211 void* operator new(size_t, void* location) {
sandbox_nt_util.cc 162 // Create a new heap using default values for everything.
238 *out_name = new(NT_ALLOC) wchar_t[size/sizeof(wchar_t)];
344 new(NT_ALLOC) char[name_bytes]);
400 new(NT_ALLOC) char[buffer_bytes]);
456 char* str_buffer = new(NT_ALLOC) char[size_bytes + sizeof(UNICODE_STRING)];
546 void* operator new(size_t size, sandbox::AllocationType type,
562 // TODO: Returning NULL from operator new has undefined behavior, but
591 void* __cdecl operator new(size_t size, void* buffer,
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h 121 void* operator new(size_t);
122 void* operator new(size_t, void* ptr) { return ptr; };
560 // There can only be a start of a new line if there are more characters
574 // But, there's only a start of a new line if there are more
  /external/chromium_org/third_party/boringssl/src/ssl/
s3_lib.c 237 /* New AES ciphersuites */
1497 DH *new=NULL,*dh; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTLList.h 16 inline void* operator new(size_t, SkTLList<T>* list,
105 /** Adds a new element to the list before the location indicated by the iterator. If the
106 iterator refers to a NULL location then the new element is added at the tail */
111 /** Adds a new element to the list after the location indicated by the iterator. If the
112 iterator refers to a NULL location then the new element is added at the head */
230 // For use with operator new
336 // Support in-place initializing of objects inserted into the list via operator new.
337 friend void* operator new<T>(size_t,
343 // Helpers that insert the node and returns a pointer to where the new object should be init'ed.
369 void *operator new(size_t, SkTLList<T>* list
    [all...]
  /external/clang/test/Analysis/
inline.cpp 9 // This is the standard placement new.
10 inline void* operator new(size_t, void* __p) throw()
312 // use the proper region for operator new.
319 IntWrapper *obj = new IntWrapper(42);
327 IntWrapper *alias = new (obj) IntWrapper(42);
384 Grandchild *g = new (b) Grandchild();
  /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;
network.c 394 * to create just a single new listener dynamically when our interface
397 * iface - input of the new interface details to listen on
398 * listeners - output. Creates a new struct listener and inserts at head of the list
409 struct listener *new = safe_malloc(sizeof(struct listener)); local
410 new->family = iface->addr.sa.sa_family;
411 new->iface = iface;
412 new->next = *listeners;
413 new->tftpfd = -1;
414 new->tcpfd = -1;
415 new->fd = -1
847 struct server *new, *tmp, *ret = NULL; local
    [all...]
  /external/ipsec-tools/src/racoon/
grabmyaddr.c 709 struct myaddrs *new; local
711 new = dupmyaddr(p);
712 new->udp_encap = 1;
763 struct myaddrs *new; local
765 new = racoon_calloc(1, sizeof(*new));
766 if (new == NULL) {
772 new->next = NULL;
773 new->addr = NULL;
775 return new;
781 struct myaddrs *new; local
    [all...]
handler.c 255 * create new isakmp Phase 1 status record to handle isakmp in Phase1
262 /* create new iph1 */
281 * delete new isakmp Phase 1 status record to handle isakmp in Phase1
382 * create new isakmp Phase 1 status record to handle isakmp in Phase1
572 * create new isakmp Phase 2 status record to handle isakmp in Phase2
579 /* create new iph2 */
648 * delete new isakmp Phase 2 status record to handle isakmp in Phase2
682 * create new isakmp Phase 2 status record to handle isakmp in Phase2
811 * create new isakmp Phase 2 status record to handle isakmp in Phase2
817 struct contacted *new; local
936 struct recvdpkt *new = NULL; local
    [all...]
sockmisc.c 840 struct sockaddr *new; local
842 if ((new = racoon_calloc(1, len)) == NULL) {
850 new->sa_family = AF_INET6;
852 new->sa_family = AF_INET;
855 new->sa_len = len;
858 return new;
  /external/iptables/iptables/
iptables-xml.c 74 /* global new argv and argc */
538 unsigned int new = 0; local
542 while (new < newargc && old < oldargc) {
543 if (isTarget(oldargv[old]) && isTarget(newargv[new])) {
559 // break when old!=new
560 if (strcmp(oldargv[old], newargv[new]) != 0) {
566 new++;
687 /* New table */
702 /* New chain. */
716 DEBUGP("Creating new chain '%s'\n", chain)
    [all...]
  /external/libnl/lib/
addr.c 160 * Allocate new abstract address object.
179 * Allocate new abstract address object based on a binary address.
209 * family and allocates a new abstract address based on it.
422 struct nl_addr *new; local
424 new = nl_addr_build(addr->a_family, addr->a_addr, addr->a_len);
425 if (new)
426 new->a_prefixlen = addr->a_prefixlen;
428 return new;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-help.c 128 char *new = strdup(path); local
129 char *dest = strrchr(new, '/');
133 path = new;
183 struct man_viewer_info_list *new = zalloc(sizeof(*new) + len + 1); local
185 strncpy(new->name, name, len);
186 new->info = strdup(value);
187 new->next = man_viewer_info_list;
188 man_viewer_info_list = new;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
map.c 457 * Now check if we need to create new maps for areas not
458 * overlapped by the new map:
512 struct map *new = map__clone(map); local
513 if (new == NULL)
515 map_groups__insert(mg, new);
  /external/llvm/include/llvm/IR/
Constants.h 53 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
59 void *operator new(size_t s) {
60 return User::operator new(s, 0);
235 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
242 void *operator new(size_t s) {
243 return User::operator new(s, 0);
298 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
305 void *operator new(size_t s) {
306 return User::operator new(s, 0);
484 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION
    [all...]
InstrTypes.h 90 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
104 void *operator new(size_t s) {
105 return User::operator new(s, 1);
139 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
149 void *operator new(size_t s) {
150 return User::operator new(s, 2);
407 /// insert the new CastInst before InsertBefore (if it is non-null).
419 /// to automatically insert the new CastInst at the end of InsertAtEnd (if
639 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
693 void *operator new(size_t s)
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 148 void *operator new(size_t Size, BumpPtrAllocator &Alloc,
538 Doc->reset(new Document(S));
  /external/llvm/lib/IR/
ConstantsContext.h 39 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
42 void *operator new(size_t s) {
43 return User::operator new(s, 1);
56 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
59 void *operator new(size_t s) {
60 return User::operator new(s, 2);
77 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
80 void *operator new(size_t s) {
81 return User::operator new(s, 3);
98 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 38 RecognizerSharedState = Struct.new(
137 Block = Scope.new( "name", "depth = 0", "variables = {}" )
138 Block.new # => #<struct Block name=nil, depth=0, variables={}>
139 Block.new( "function" ) # => #<struct Block name="function", depth=0, variables={}>
140 Block.new( 'a', 1, :x => 3 ) # => #<struct Block name="a", depth=1, variables={ :x => 3 }>
145 def self.new( *declarations, &body ) singleton method in class:ANTLR3.Scope
245 Struct.new( *members )
262 struct = Struct.new( *return_scope_members )
268 @imported_grammars ||= Set.new
315 Scope.new( *declarations, &body
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_dataflow.c 481 struct rc_reader * new; local
484 new = &data->Readers[data->ReaderCount++];
485 new->Inst = inst;
486 new->WriteMask = mask;
487 return new;
497 struct rc_reader * new = add_reader(pool, data, inst, mask); local
498 new->U.I.Src = src;
510 struct rc_reader * new = add_reader(pool, data, inst, mask); local
511 new->U.P.Src = src;
512 new->U.P.Arg = arg
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_parser_extras.h 63 /* Callers of this ralloc-based new need not call delete. It's
65 static void* operator new(size_t size, void *ctx)
glsl_types.h 88 /* Callers of this ralloc-based new need not call delete. It's
90 static void* operator new(size_t size)
474 * Set on the first call to \c glsl_type::new.
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs.h 69 /* Callers of this ralloc-based new need not call delete. It's
71 static void* operator new(size_t size, void *ctx)
129 /* Callers of this ralloc-based new need not call delete. It's
131 static void* operator new(size_t size, void *ctx)
brw_vec4.h 82 /* Callers of this ralloc-based new need not call delete. It's
84 static void* operator new(size_t size, void *ctx)
120 /* Callers of this ralloc-based new need not call delete. It's
122 static void* operator new(size_t size, void *ctx)
149 /* Callers of this ralloc-based new need not call delete. It's
151 static void* operator new(size_t size, void *ctx)

Completed in 578 milliseconds

1 2 3 4 5 6 7 891011>>