Searched refs:new (Results 276 - 300 of 1611) sorted by relevance

<<11121314151617181920>>

/external/qemu/
H A Dpath.c51 struct pathelem *new = malloc(sizeof(*new)); local
52 new->name = strdup(name);
53 if (asprintf(&new->pathname, "%s/%s", root, name) == -1) {
57 new->num_entries = 0;
58 return new;
/external/valgrind/main/coregrind/m_gdbserver/
H A Dregcache.c227 Bool new; local
228 VG_(dmemcpy) (register_data_for_supply (n, 0, &new),
230 if (new)
236 Bool new; local
239 VG_(dmemcpy) (register_data_for_supply (n, 0, &new),
241 if (new)
/external/valgrind/main/nightly/bin/
H A Dnightly95 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose
96 rm -rf sendmail.log unchanged.log valgrind-old valgrind-new
125 for logfile in old new ; do
127 # Remove old short and verbose log files, and start the new ones
139 # Get dates for the old and new versions
182 valgrind_revision="`svn info valgrind-new | grep Revision | sed 's/Revision[ ]*:[ ]*//'`"
183 vex_revision="`svn info valgrind-new/VEX | grep Revision | sed 's/Revision[ ]*:[ ]*//'`"
206 # 'final' shows the difference between the old and new results
213 diff -C1 old.short new
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSStyleSheet.h41 return adoptRef(new CSSStyleSheet(static_cast<CSSStyleSheet*>(0), String(), KURL(), String()));
45 return adoptRef(new CSSStyleSheet(ownerNode, String(), KURL(), String()));
49 return adoptRef(new CSSStyleSheet(ownerNode, originalURL, finalURL, String()));
53 return adoptRef(new CSSStyleSheet(ownerNode, originalURL, finalURL, charset));
57 return adoptRef(new CSSStyleSheet(ownerRule, originalURL, finalURL, charset));
61 return adoptRef(new CSSStyleSheet(ownerNode, finalURL.string(), finalURL, String()));
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DPODArena.h64 return adoptRef(new FastMallocAllocator);
74 // Creates a new PODArena configured with a FastMallocAllocator.
77 return adoptRef(new PODArena);
80 // Creates a new PODArena configured with the given Allocator.
83 return adoptRef(new PODArena(allocator));
91 // Use placement operator new to allocate a T at this location.
92 new(ptr) T();
102 // Use placement operator new to allocate a T at this location.
103 new(ptr) T(argument1);
146 m_chunks.append(adoptPtr(new Chun
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dopensslidentity.h54 return new OpenSSLKeyPair(pkey_);
83 return new OpenSSLCertificate(x509_);
114 return new OpenSSLIdentity(key_pair_->GetReference(),
/external/valgrind/main/massif/tests/
H A Dignoring.post.exp40 99.22% (1,024B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
48 98.46% (512B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
61 98.46% (512B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
87 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
102 97.96% (768B) (heap allocation functions) malloc/new/new[],
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DCrossThreadRefCounted.h59 return adoptRef(new CrossThreadRefCounted<T>(data, 0));
157 m_threadSafeRefCounter = new ThreadSafeRefCountedBase(2);
159 return adoptRef(new CrossThreadRefCounted<T>(m_data, m_threadSafeRefCounter));
/external/webkit/Source/WebCore/platform/
H A DSharedBuffer.h54 static PassRefPtr<SharedBuffer> create() { return adoptRef(new SharedBuffer); }
55 static PassRefPtr<SharedBuffer> create(const char* c, int i) { return adoptRef(new SharedBuffer(c, i)); }
56 static PassRefPtr<SharedBuffer> create(const unsigned char* c, int i) { return adoptRef(new SharedBuffer(c, i)); }
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Dscanresults.ui.h30 timer = new QTimer(this);
67 new Q3ListViewItem(scanResultsView, ssid, bssid, freq, signal, flags);
94 NetworkConfig *nc = new NetworkConfig();
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Drule-methods.rb46 lexer = Parameters::Lexer.new( 'a a a' )
47 parser = Parameters::Parser.new lexer
100 lexer = MultipleReturnValues::Lexer.new( ' a' )
101 parser = MultipleReturnValues::Parser.new lexer
/external/e2fsprogs/lib/ext2fs/
H A Direl.h18 ext2_ino_t new;
86 errcode_t (*move)(ext2_irel irel, ext2_ino_t old, ext2_ino_t new);
112 #define ext2fs_irel_move(irel, old, new) ((irel)->move((irel), old, new))
/external/e2fsprogs/tests/progs/
H A Dtest_rel.c95 printf("Old= %u, New= %u, Owner= %u:%u\n", old, ent->new,
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
317 if (parse_block(argv[0], "new block", argv[2], &new))
384 ext2_ino_t old, new, max_refs; local
616 ext2_ino_t old, new; local
[all...]
/external/llvm/lib/Target/NVPTX/
H A DManagedStringPool.h41 std::string *Str = new std::string(S);
/external/regex-re2/util/
H A Dsparse_set.h61 sparse_to_dense_ = new int[max_size];
62 dense_ = new int[max_size];
94 int* a = new int[new_max_size];
105 a = new int[new_max_size];
144 // Set the value at the new index i to v.
/external/v8/src/
H A Dzone.h68 // allocating new segments of memory on demand using malloc().
126 // Creates a new segment, sets it size, and pushes it to the front
127 // of the segment chain. Returns the new segment.
150 // Allocate a new ZoneObject of 'size' bytes in the Zone.
151 INLINE(void* operator new(size_t size));
152 INLINE(void* operator new(size_t size, Zone* zone));
187 INLINE(void* operator new(size_t size));
188 INLINE(void* operator new(size_t size, Zone* zone));
190 // Construct a new ZoneList with the given capacity; the length is
195 // Construct a new ZoneLis
[all...]
/external/webkit/Source/JavaScriptCore/API/
H A DJSWeakObjectMapRefInternal.h46 return adoptRef(new OpaqueJSWeakObjectMap(data, callback));
/external/webkit/Source/JavaScriptCore/
H A DJavaScriptCorePrefix.h29 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro
30 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalueiterator_p.h111 return new QScriptStringPrivate();
112 return new QScriptStringPrivate(QScriptConverter::toString(m_idx.value()));
118 return new QScriptValuePrivate();
122 return new QScriptValuePrivate(engine(), value);
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DAtomicStringHash.h54 static void constructDeletedValue(WTF::AtomicString& slot) { new (&slot) WTF::AtomicString(HashTableDeletedValue); }
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityMenuList.h40 static PassRefPtr<AccessibilityMenuList> create(RenderMenuList* renderer) { return adoptRef(new AccessibilityMenuList(renderer)); }
/external/webkit/Source/WebCore/bindings/js/
H A DJSCustomApplicationInstalledCallback.h41 return adoptRef(new JSCustomApplicationInstalledCallback(callback, globalObject));
H A DJSCustomVoidCallback.h45 return adoptRef(new JSCustomVoidCallback(callback, globalObject));
/external/webkit/Source/WebCore/bindings/objc/
H A DObjCNodeFilterCondition.h44 return adoptRef(new ObjCNodeFilterCondition(filter));
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptHeapSnapshot.h55 return adoptRef(new ScriptHeapSnapshot(snapshot));

Completed in 582 milliseconds

<<11121314151617181920>>