Searched defs:new (Results 1 - 25 of 229) sorted by relevance

12345678910

/external/webkit/Source/WebKit2/
H A DWebKit2Prefix.h32 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro
33 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
/external/clang/test/CXX/special/class.free/
H A Dp1.cpp5 void *operator new(size_t) {
8 void *operator new[](size_t) {
/external/clang/test/SemaCXX/Inputs/
H A Dwarn-new-overaligned-3.h3 // This header file pretends to be <new> from the system library, for the
6 void* operator new(unsigned long) {
9 void* operator new[](unsigned long) {
13 void* operator new(unsigned long, void *) {
17 void* operator new[](unsigned long, void *) {
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/
H A DClass.pm14 sub new { subroutine
16 my $self = $class->SUPER::new(@args);
/external/bison/lib/
H A Dstrdup.c44 void *new = malloc (len); local
46 if (new == NULL)
49 return (char *) memcpy (new, s, len);
H A Dstrndup.c53 char *new = malloc (len + 1); local
55 if (new == NULL)
58 new[len] = '\0';
59 return memcpy (new, s, len);
/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/clang/test/CodeGenCXX/
H A DDynArrayInit.cpp7 inline void* operator new[](unsigned long, void* __p) { return __p; }
9 new (a) char[4]();
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_placement_new.h13 // The file provides 'placement new'.
29 inline void *operator new(__sanitizer::operator_new_ptr_type sz, void *p) {
/external/tcpdump/
H A Dsetsignal.c77 struct sigaction old, new; local
79 memset(&new, 0, sizeof(new));
80 new.sa_handler = func;
81 if (sigaction(sig, &new, &old) < 0)
/external/webkit/Source/WebCore/bindings/scripts/
H A DInFilesParser.pm62 sub new subroutine
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp19.cpp4 // Operator delete template for placement new with global lookup
9 static void* operator new(size_t) {
19 // Using the global operator new suppresses the search for a
21 ::new X0<2>;
23 new X0<3>; // expected-note 2{{instantiation}}
26 // Operator delete template for placement new[] with global lookup
31 static void* operator new[](size_t) {
41 // Using the global operator new suppresses the search for a
43 ::new X1<2> [17];
45 new X
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-new-overaligned.cpp15 new Test; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
16 new Test[10]; // expected-warning {{type 'test1::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
28 new Test; // expected-warning {{type 'test2::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
29 new Test[10]; // expected-warning {{type 'test2::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
40 void* operator new(unsigned long) {
49 new Test;
50 new Test[10]; // expected-warning {{type 'test3::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
61 void* operator new[](unsigned long) {
70 new Test; // expected-warning {{type 'test4::Test' requires 256 bytes of alignment and the default allocator only guarantees}}
71 new Tes
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_new_delete.cc12 // Interceptors for operators new and delete.
20 #include <new>
36 void *operator new(size_t size) { OPERATOR_NEW_BODY; }
37 void *operator new[](size_t size) { OPERATOR_NEW_BODY; }
39 void *operator new(size_t size) throw(std::bad_alloc) { OPERATOR_NEW_BODY; }
40 void *operator new[](size_t size) throw(std::bad_alloc) { OPERATOR_NEW_BODY; }
41 void *operator new(size_t size, std::nothrow_t const&) throw()
43 void *operator new[](size_t size, std::nothrow_t const&) throw()
/external/webkit/Source/WebCore/bindings/js/
H A DScriptFunctionCall.h72 void* operator new(size_t) { ASSERT_NOT_REACHED(); return reinterpret_cast<void*>(0xbadbeef); }
73 void* operator new[](size_t) { ASSERT_NOT_REACHED(); return reinterpret_cast<void*>(0xbadbeef); }
/external/ipsec-tools/src/racoon/
H A Dthrottle.c124 * No match, if auth failed, allocate a new throttle entry
144 time_t new; local
147 new = remaining + isakmp_cfg_config.auth_throttle;
149 if (new > THROTTLE_PENALTY_MAX)
150 new = THROTTLE_PENALTY_MAX;
152 te->penalty = now + new;
H A Dvmbuf.c124 vchar_t *new; local
131 if ((new = vmalloc(src->l)) == NULL)
134 memcpy(new->v, src->v, src->l);
136 return new;
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/webkit/Source/WebCore/platform/graphics/android/context/
H A DGraphicsOperation.cpp36 void* Operation::operator new(size_t size, LinearAllocator* allocator)
41 void* Operation::operator new(size_t size)
43 ALOGE("Cannot allocate a new Operation directly!");
/external/webkit/Source/WebCore/rendering/
H A DBidiRun.cpp55 void* BidiRun::operator new(size_t sz, RenderArena* renderArena) throw()
/external/oprofile/libutil++/tests/
H A Dutility_tests.cpp13 #include <new>
24 void* operator new(size_t size) throw(bad_alloc)
30 void* operator new[](size_t size) throw(bad_alloc)
54 cerr << "new(size_t) leak\n";
59 cerr << "new[](size_t) leak\n";
70 scoped_ptr<A> a(new A);
72 scoped_ptr<A> a(new A);
83 scoped_array<A> b(new A[10]);
85 scoped_array<A> a(new A[10]);
/external/valgrind/main/massif/tests/
H A Doverloaded-new.cpp1 // operator new(unsigned)
2 // operator new[](unsigned)
3 // operator new(unsigned, std::nothrow_t const&)
4 // operator new[](unsigned, std::nothrow_t const&)
8 #include <new>
17 __attribute__((noinline)) void* operator new (std::size_t n) throw (std::bad_alloc)
22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) throw ()
27 __attribute__((noinline)) void* operator new[] (std::size_t n) throw (std::bad_alloc)
32 __attribute__((noinline)) void* operator new[] (std::size_t n, std::nothrow_t const &) throw ()
49 s* p1 = new
[all...]
/external/chromium/base/allocator/
H A Dgeneric_allocators.cc6 // low-level functions malloc() and free(). This way, including a new
27 void* __cdecl operator new(size_t size) {
35 void* operator new[](size_t size) {
43 void* operator new(size_t size, const std::nothrow_t& nt) __THROW {
47 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW {
53 // If flag is 1, calls to malloc will behave like calls to new,
/external/icu4c/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...]

Completed in 972 milliseconds

12345678910