Searched defs:new (Results 51 - 75 of 368) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/test/perf/perldriver/
H A DDataset.pm13 # Create a new Dataset with the given data.
14 sub new { subroutine
26 my $stats = Statistics::Descriptive::Full->new();
69 # Divide two Datasets and return a new one, maintaining the
70 # mean+/-error. The new Dataset has no data points.
80 my $result = Dataset->new();
87 # subtracts two Datasets and return a new one, maintaining the
88 # mean+/-error. The new Dataset has no data points.
93 my $result = Dataset->new();
100 # adds two Datasets and return a new on
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_heap.c104 struct nouveau_heap *new = r->next; local
106 new->prev = r->prev;
108 r->prev->next = new;
109 new->size += r->size;
110 new->start = r->start;
113 r = new;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_list.c37 struct rc_list * new = memory_pool_malloc(pool, sizeof(struct rc_list)); local
38 new->Item = item;
39 new->Next = NULL;
40 new->Prev = NULL;
42 return new;
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dglsl_symbol_table.h29 #include <new>
54 /* Callers of this ralloc-based new need not call delete. It's
56 static void* operator new(size_t size, void *ctx)
/external/chromium_org/v8/src/
H A Dzone-inl.h47 void* ZoneObject::operator new(size_t size, Zone* zone) {
58 void* ZoneList<T>::operator new(size_t size, Zone* zone) {
64 void* ZoneSplayTree<T>::operator new(size_t size, Zone* zone) {
/external/clang/test/Analysis/
H A Dnew-with-exceptions.cpp9 // This is the standard placement new.
10 inline void* operator new(size_t, void* __p) throw()
16 void *operator new(size_t) throw();
20 void *operator new(size_t) noexcept;
24 void *operator new(size_t);
28 void *operator new(size_t) throw(int);
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}}
33 clang_analyzer_eval(new NoExcept); // expected-warning{{UNKNOWN}}
35 clang_analyzer_eval(new DefaultThrow); // expected-warning{{TRUE}}
36 clang_analyzer_eval(new ExplicitThro
[all...]
/external/icu/icu4c/source/test/perf/perldriver/
H A DDataset.pm13 # Create a new Dataset with the given data.
14 sub new { subroutine
26 my $stats = Statistics::Descriptive::Full->new();
69 # Divide two Datasets and return a new one, maintaining the
70 # mean+/-error. The new Dataset has no data points.
80 my $result = Dataset->new();
87 # subtracts two Datasets and return a new one, maintaining the
88 # mean+/-error. The new Dataset has no data points.
93 my $result = Dataset->new();
100 # adds two Datasets and return a new on
[all...]
/external/ipsec-tools/src/racoon/
H A Dgenlist.c44 struct genlist *new = calloc(sizeof(struct genlist), 1); local
45 TAILQ_INIT(new);
46 return new;
H A Dstr2val.c55 caddr_t new; local
59 if ((new = racoon_malloc(len)) == 0) return(0);
62 snprintf(&new[j], len - j, "%02x", (u_char)buf[i]);
65 new[j++] = ' ';
66 new[j] = '\0';
69 new[j] = '\0';
71 return(new);
/external/libcxx/test/containers/sequences/list/list.modifiers/
H A Dinsert_iter_size_value.pass.cpp27 void* operator new(std::size_t s) throw(std::bad_alloc)
H A Dinsert_iter_value.pass.cpp27 void* operator new(std::size_t s) throw(std::bad_alloc)
/external/libcxx/test/language.support/support.dynamic/new.delete/new.delete.array/
H A Dnew_array_nothrow_replace.pass.cpp10 // test operator new [] nothrow by replacing only operator new
12 #include <new>
20 void* operator new(std::size_t s) throw(std::bad_alloc)
42 A* ap = new (std::nothrow) A[3];
H A Dnew_array_replace.pass.cpp10 // test operator new[] replacement by replacing only operator new
12 #include <new>
20 void* operator new(std::size_t s) throw(std::bad_alloc)
42 A* ap = new A[3];
/external/libcxx/test/language.support/support.dynamic/new.delete/new.delete.single/
H A Dnew_nothrow_replace.pass.cpp10 // test operator new nothrow by replacing only operator new
12 #include <new>
20 void* operator new(std::size_t s) throw(std::bad_alloc)
42 A* ap = new (std::nothrow) A;
H A Dnew_replace.pass.cpp10 // test operator new replacement
12 #include <new>
20 void* operator new(std::size_t s) throw(std::bad_alloc)
42 A* ap = new A;
/external/libcxx/test/localization/locales/locale/locale.cons/
H A Dassign.pass.cpp16 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
H A Dcopy.pass.cpp16 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
H A Ddefault.pass.cpp15 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
H A Dlocale_facetptr.pass.cpp15 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
85 std::locale loc2(loc, new my_facet);
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A Dalloc_rfunction.pass.cpp23 void* operator new(std::size_t s) throw(std::bad_alloc)
/external/libcxx/test/utilities/memory/default.allocator/allocator.members/
H A Dallocate.pass.cpp16 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
H A Dauto_ptr.pass.cpp15 #include <new>
21 void* operator new(std::size_t s) throw(std::bad_alloc)
59 std::auto_ptr<A> ptr(new A);
74 std::auto_ptr<A> ptr(new A);
H A Dnullptr_t_deleter_throw.pass.cpp18 #include <new>
35 void* operator new(std::size_t s) throw(std::bad_alloc)
H A Dpointer_deleter_throw.pass.cpp18 #include <new>
35 void* operator new(std::size_t s) throw(std::bad_alloc)
49 A* ptr = new A;
H A Dpointer_throw.pass.cpp15 #include <new>
32 void* operator new(std::size_t s) throw(std::bad_alloc)
47 A* ptr = new A;

Completed in 436 milliseconds

1234567891011>>