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

<<11121314

  /external/llvm/include/llvm/IR/
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
628 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
682 void *operator new(size_t s)
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 140 void *operator new ( size_t Size
531 Doc->reset(new Document(S));
  /external/llvm/lib/IR/
ConstantsContext.h 36 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
39 void *operator new(size_t s) {
40 return User::operator new(s, 1);
53 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
56 void *operator new(size_t s) {
57 return User::operator new(s, 2);
74 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
77 void *operator new(size_t s) {
78 return User::operator new(s, 3);
95 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION
    [all...]
  /external/quake/quake/src/QW/client/
zone.c 158 memblock_t *start, *rover, *new, *base; local
190 new = (memblock_t *) ((byte *)base + size );
191 new->size = extra;
192 new->tag = 0; // free block
193 new->prev = base;
194 new->id = ZONEID;
195 new->next = base->next;
196 new->next->prev = new;
197 base->next = new;
582 cache_system_t *new; local
687 cache_system_t *cs, *new; local
    [all...]
view.c 540 qboolean new; local
549 new = false;
555 new = true;
561 new = true;
577 if (!new && !force)
634 qboolean new; local
642 new = false;
648 new = true;
654 new = true;
670 if (!new && !force
    [all...]
  /external/quake/quake/src/QW/server/
pr_edict.c 71 Either finds a free edict, or allocates a new one.
687 char *new, *new_p; local
691 new = Hunk_Alloc (l);
692 new_p = new;
708 return new;
789 Parses an edict out of the given string, returning the new position
  /external/skia/src/core/
SkTLList.h 16 inline void* operator new(size_t, SkTLList<T>* list,
87 /** Adds a new element to the list before the location indicated by the iterator. If the
88 iterator refers to a NULL location then the new element is added at the tail */
93 /** Adds a new element to the list after the location indicated by the iterator. If the
94 iterator refers to a NULL location then the new element is added at the head */
212 // For use with operator new
318 // Support in-place initializing of objects inserted into the list via operator new.
319 friend void* operator new<T>(size_t,
325 // Helpers that insert the node and returns a pointer to where the new object should be init'ed.
351 void *operator new(size_t, SkTLList<T>* list
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorV8.pm 69 sub new subroutine
614 my $signature = "v8::Signature::New(" . $className . "::GetRawTemplate())";
625 static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New($newTemplateString);
634 static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New($newTemplateString);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/context/
RTree.cpp 38 void* RecordingData::operator new(size_t size, android::LinearAllocator* allocator)
116 // To find the leaf node N where we can insert a new element (RTree::insert(),
118 // adding the new element will result in the least growth of its bounds,
128 // we then create a new node NN that we try to attach to N's parent.
139 m_listA = new ElementList(M);
140 m_listB = new ElementList(M);
198 m_children = new Node*[size];
265 ALOGV("-> New Node %d", m_tid);
328 m_children = new Node*[m_tree->m_maxChildren + 1];
477 // build new roo
    [all...]
  /ndk/sources/host-tools/make-3.81/
file.c 33 don't add new rules (via $(eval ...)) afterwards. In the future it would
37 in the hash have been snapped (a new boolean flag?) and having snap_deps()
138 register struct file *new; local
179 new = (struct file *) xmalloc (sizeof (struct file));
180 bzero ((char *) new, sizeof (struct file));
181 new->name = new->hname = name;
182 new->update_status = -1;
186 new->last = new;
415 struct dep *new = (struct dep *) local
472 struct dep *new, *d1; local
    [all...]
  /system/core/sh/
exec.c 225 char **new; local
266 new = ckmalloc(i + ((char *)ap2 - (char *)argv));
267 ap = newargs, ap2 = new;
272 shellexec(new, envp, pathval(), 0);
688 * Called before PATH is changed. The argument is the new value of PATH;
696 const char *old, *new; local
702 new = newval;
707 if (*old != *new) {
709 if ((*old == '\0' && *new == ':')
710 || (*old == ':' && *new == '\0')
    [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/clang/include/clang/Lex/
PreprocessingRecord.h 34 void* operator new(size_t bytes, clang::PreprocessingRecord& PR,
99 // in PreprocessingRecord or by doing a placement new.
100 void* operator new(size_t bytes, PreprocessingRecord& PR,
102 return ::operator new(bytes, PR, alignment);
105 void* operator new(size_t bytes, void* mem) throw() {
118 // Make vanilla 'new' and 'delete' illegal for preprocessed entities.
119 void* operator new(size_t bytes) throw();
353 /// \brief Allocate space for a new set of loaded preprocessed entities.
359 /// \brief Register a new macro definition.
363 /// \brief Construct a new preprocessing record
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 51 void *Stmt::operator new(size_t bytes, ASTContext& C,
53 return ::operator new(bytes, C, alignment);
56 void *Stmt::operator new(size_t bytes, ASTContext* C,
58 return ::operator new(bytes, *C, alignment);
267 Body = new (C) Stmt*[Stmts.size()];
276 Body = new (C) Stmt*[NumStmts];
290 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt);
298 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs);
424 this->Names = new (C) IdentifierInfo*[NumExprs];
428 this->Exprs = new (C) Stmt*[NumExprs]
    [all...]
  /external/clang/test/Preprocessor/
cxx_oper_keyword_ms_compat.cpp 54 #define new macro
139 new
  /external/clang/test/SemaCXX/
new-delete.cpp 14 // A special new, to verify that the global version isn't used.
15 void* operator new(size_t, S*); // expected-note {{candidate}}
22 void* operator new(const size_t); // expected-note 2 {{candidate}}
23 void* operator new(size_t, int*); // expected-note 3 {{candidate}}
24 void* operator new(size_t, float*); // expected-note 3 {{candidate}}
25 void* operator new(size_t, S); // expected-note 2 {{candidate}}
31 int *pi = new int;
32 float *pf = new (pi) float();
33 pi = new int(1);
34 pi = new int('c')
    [all...]
  /external/dnsmasq/src/
cache.c 105 struct crec **new, **old, *p, *tmp; local
113 new = safe_malloc(new_size * sizeof(struct crec *));
114 else if (new_size <= hash_size || !(new = whine_malloc(new_size * sizeof(struct crec *))))
118 new[i] = NULL;
122 hash_table = new;
199 /* insert a new cache entry at the head of the list (youngest entry) */
362 struct crec *new; local
387 if (!(new = cache_tail)) /* no entries left - cache is too small, bail */
397 if (new->flags & (F_FORWARD | F_REVERSE))
412 cache_scan_free(cache_get_name(new), &new->addr.addr, now, new->flags)
    [all...]
  /external/hyphenation/
hyphen.c 55 char *new; local
59 new = hnj_malloc (l + 1);
60 memcpy (new, s, l);
61 new[l] = 0;
62 return new;
166 /* Get the state number, allocating a new state if necessary. */
860 /* now create a new char string showing hyphenation positions */
861 /* count the hyphens and allocate space for the new hyphenated string */
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_cfg.c 167 * Decrypt the packet. If this is the beginning of a new
760 vchar_t *new; local
762 new = vmalloc(s->l + append->l);
763 if (new == NULL) {
769 memcpy(new->v, s->v, s->l);
770 memcpy(new->v + s->l, append->v, append->l);
773 return new;
924 struct isakmp_data *new;
931 new = (struct isakmp_data *)buffer->v;
933 new->type = attr->type
968 struct isakmp_data *new; local
993 struct isakmp_data *new; local
1028 struct isakmp_data *new; local
1056 struct isakmp_data *new; local
    [all...]
  /external/libselinux/src/
avc.c 125 struct avc_node *new; local
162 new = avc_malloc(sizeof(*new));
163 if (!new) {
169 memset(new, 0, sizeof(*new));
170 new->next = avc_node_freelist;
171 avc_node_freelist = new;
301 struct avc_node *new; local
308 new = avc_node_freelist
    [all...]
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
TocGenerator.pm 71 #--- HTML::TocGenerator::new() ------------------------------------------------
74 sub new { subroutine
77 my $self = $aType->SUPER::new;
90 } # new()
518 # No, don't use existing anchors; insert new anchor;
591 my $tokenTocBeginParser = HTML::_TokenTocBeginParser->new(
594 my $tokenTocEndParser = HTML::_TokenTocEndParser->new();
1310 sub new { subroutine
1392 sub new { subroutine
1613 sub new { subroutine
    [all...]
  /external/linux-tools-perf/
builtin-kmem.c 438 struct rb_node **new = &(root->rb_node); local
442 while (*new) {
446 this = rb_entry(*new, struct alloc_stat, node);
447 parent = *new;
456 new = &((*new)->rb_left);
458 new = &((*new)->rb_right);
461 rb_link_node(&data->node, parent, new);
  /external/oprofile/libop/
op_events.c 312 struct op_unit_mask *new, *um; local
319 new = new_unit_mask();
320 new->name = xstrdup(value);
321 new->used = 1;
332 new->default_mask |= um->default_mask;
333 new->num += um->num;
334 if (new->num > MAX_UNIT_MASK)
337 new->um[num] = um->um[c];
338 new->um[num].desc = xstrdup(new->um[num].desc)
    [all...]
  /external/skia/include/core/
SkTypes.h 75 #include <new>
77 inline void* operator new(size_t size) {
407 /** Assign a new ptr allocated with sk_malloc (or null), and return the
462 * malloc a new block of the smaller size.
475 * Reallocates the block to a new size. The ptr may or may not change.
566 * Return a new block of the requested size, freeing (as necessary) any
  /external/skia/legacy/include/core/
SkTypes.h 75 #include <new>
77 inline void* operator new(size_t size) {
377 /** Assign a new ptr allocated with sk_malloc (or null), and return the
432 * malloc a new block of the smaller size.
445 * Reallocates the block to a new size. The ptr may or may not change.
536 * Return a new block of the requested size, freeing (as necessary) any

Completed in 1224 milliseconds

<<11121314