HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 1 - 25 of 452) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
r6.s 3 new: maddf.s $f0,$f1,$f2 label
53 bc1eqz $f31,new
57 bc1nez $f31,new
61 bc2eqz $31,new
65 bc2nez $31,new
  /external/clang/test/SemaCXX/Inputs/
warn-new-overaligned-3.h 3 // 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/clang/test/CXX/special/class.free/
p1.cpp 5 void *operator new(size_t) {
8 void *operator new[](size_t) {
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
new.cc 1 #include <new>
9 operator new (std::size_t sz, const std::nothrow_t&) throw()
21 operator new (std::size_t sz) throw (std::bad_alloc)
38 operator new[] (std::size_t sz) throw (std::bad_alloc)
40 return ::operator new(sz);
44 operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
46 return ::operator new(sz, nothrow);
  /abi/cpp/src/
new.cc 30 #include <new>
34 operator new(std::size_t size) throw (/*std::bad_alloc*/)
  /external/bison/lib/
strdup.c 42 void *new = malloc (len); local
44 if (new == NULL)
47 return (char *) memcpy (new, s, len);
strndup.c 29 char *new = malloc (len + 1); local
31 if (new == NULL)
34 new[len] = '\0';
35 return memcpy (new, s, len);
  /external/boringssl/src/util/bot/go/
env.py 34 new = bootstrap.prepare_go_environ() variable
37 for key, value in sorted(new.iteritems()):
45 # Help Windows to find the executable in new PATH, do it only when
49 sys.exit(subprocess.call([exe] + sys.argv[2:], env=new))
  /external/clang/test/Sema/
arm-darwin-aapcs.cpp 10 void* operator new(size_t size)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_placement_new.h 13 // The file provides 'placement new'.
21 inline void *operator new(__sanitizer::operator_new_size_type sz, void *p) {
  /external/tcpdump/
setsignal.c 72 struct sigaction old, new; local
74 memset(&new, 0, sizeof(new));
75 new.sa_handler = func;
77 new.sa_flags = SA_RESTART;
78 if (sigaction(sig, &new, &old) < 0)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
md5.py 11 new = md5 variable
sha.py 11 new = sha variable
  /prebuilts/gdb/linux-x86/lib/python2.7/
md5.py 11 new = md5 variable
sha.py 11 new = sha variable
  /prebuilts/go/darwin-x86/src/net/http/cgi/testdata/
test.cgi 13 my $q = MiniCGI->new;
65 sub new { subroutine
  /prebuilts/go/linux-x86/src/net/http/cgi/testdata/
test.cgi 13 my $q = MiniCGI->new;
65 sub new { subroutine
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
md5.py 11 new = md5 variable
sha.py 11 new = sha variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
md5.py 11 new = md5 variable
sha.py 11 new = sha variable
  /bionic/libc/bionic/
new.cpp 18 #include <new>
25 void* operator new(std::size_t size) {
28 __libc_fatal("new failed to allocate %zu bytes", size);
33 void* operator new[](std::size_t size) {
36 __libc_fatal("new[] failed to allocate %zu bytes", size);
49 void* operator new(std::size_t size, const std::nothrow_t&) {
53 void* operator new[](std::size_t size, const std::nothrow_t&) {
  /ndk/sources/cxx-stl/gabi++/src/
new.cc 31 #include <new>
96 void* operator new(std::size_t size) throw(std::bad_alloc) {
113 void* operator new(std::size_t size, const std::nothrow_t& no)
116 return ::operator new(size);
123 void* operator new[](std::size_t size) throw(std::bad_alloc) {
124 return ::operator new(size);
128 void* operator new[](std::size_t size, const std::nothrow_t& no)
130 return ::operator new(size, no);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusbase.h 36 static void* operator new(size_t in_size)
40 static void* operator new[](size_t in_size)
  /external/ImageMagick/PerlMagick/
Magick.pm 76 sub new subroutine
86 sub New
110 $p = new Image::Magick;

Completed in 620 milliseconds

1 2 3 4 5 6 7 8 91011>>