/external/icu4c/test/perf/perldriver/ |
Dataset.pm | 13 # 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 one, maintaining th [all...] |
/external/ipsec-tools/src/racoon/ |
genlist.c | 44 struct genlist *new = calloc(sizeof(struct genlist), 1); local 45 TAILQ_INIT(new); 46 return new;
|
str2val.c | 55 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/llvm/include/llvm/Support/ |
RecyclingAllocator.h | 60 inline void *operator new(size_t,
|
/external/llvm/lib/IR/ |
User.cpp | 49 Use *Begin = static_cast<Use*>(::operator new(size)); 51 (void) new(End) Use::UserRef(const_cast<User*>(this), 1); 56 // User operator new Implementations 59 void *User::operator new(size_t s, unsigned Us) { 60 void *Storage = ::operator new(s + sizeof(Use) * Us);
|
/external/qemu/ |
qemu-malloc.c | 87 char *new; local 93 new = qemu_malloc(size + 1); 94 new[size] = 0; 96 return memcpy(new, str, size);
|
/external/v8/src/ |
zone-inl.h | 42 inline void* Zone::New(int size) { 73 return static_cast<T*>(New(length * sizeof(T))); 97 // TODO(isolates): for performance reasons, this should be replaced with a new 100 void* ZoneObject::operator new(size_t size) { 101 return ZONE->New(static_cast<int>(size)); 104 void* ZoneObject::operator new(size_t size, Zone* zone) { 105 return zone->New(static_cast<int>(size)); 109 inline void* ZoneListAllocationPolicy::New(int size) { 110 return ZONE->New(size); 115 void* ZoneList<T>::operator new(size_t size) [all...] |
/external/valgrind/main/memcheck/tests/ |
new_override.cpp | 9 void *operator new[](size_t size) 22 toto = new Test[2];
|
/external/webkit/Source/WebCore/ |
WebCorePrefix.h | 24 * 3) the special trick to catch us using new or delete without including "config.h" 96 #include <new> 126 // We can remove this once the new ColorSync APIs are available in an internal Safari SDK. 147 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro 148 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
|
/external/webkit/Source/WebCore/bindings/scripts/ |
IDLParser.pm | 47 sub new subroutine 217 my $newDataNode = new domAttribute(); 219 $newDataNode->signature(new domSignature()); 279 my $newDataNode = new domAttribute(); 281 $newDataNode->signature(new domSignature()); 310 my $newDataNode = new domFunction(); 312 $newDataNode->signature(new domSignature()); 337 my $paramDataNode = new domSignature(); 358 my $newDataNode = new domConstant(); 404 $document = new idlDocument() [all...] |
/external/webkit/Source/WebCore/rendering/ |
LayoutState.cpp | 83 // If we establish a new page height, then cache the offset to the top of the first page. 91 // If we don't establish a new page height, then propagate the old page height and offset down. 147 void* LayoutState::operator new(size_t sz, RenderArena* renderArena) throw()
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.modifiers/ |
insert_iter_iter_iter.pass.cpp | 22 void* operator new(std::size_t s) throw(std::bad_alloc)
|
insert_iter_size_value.pass.cpp | 21 void* operator new(std::size_t s) throw(std::bad_alloc)
|
insert_iter_value.pass.cpp | 21 void* operator new(std::size_t s) throw(std::bad_alloc)
|
/ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/new.delete/new.delete.array/ |
new_array_nothrow_replace.pass.cpp | 10 // 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];
|
new_array_replace.pass.cpp | 10 // 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];
|
/ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/new.delete/new.delete.single/ |
new_nothrow_replace.pass.cpp | 10 // 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;
|
new_replace.pass.cpp | 10 // test operator new replacement 12 #include <new> 20 void* operator new(std::size_t s) throw(std::bad_alloc) 42 A* ap = new A;
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale/locale.cons/ |
locale_facetptr.pass.cpp | 15 #include <new> 22 void* operator new(std::size_t s) throw(std::bad_alloc) 85 std::locale loc2(loc, new my_facet);
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale/locale.members/ |
combine.pass.cpp | 15 #include <new> 20 void* operator new(std::size_t s) throw(std::bad_alloc) 82 std::locale loc2(loc, new my_facet);
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
F.pass.cpp | 17 #include <new> 23 void* operator new(std::size_t s) throw(std::bad_alloc)
|
F_assign.pass.cpp | 20 #include <new> 26 void* operator new(std::size_t s) throw(std::bad_alloc)
|
alloc_function.pass.cpp | 17 #include <new> 25 void* operator new(std::size_t s) throw(std::bad_alloc)
|
alloc_rfunction.pass.cpp | 23 void* operator new(std::size_t s) throw(std::bad_alloc)
|
copy.pass.cpp | 17 #include <new> 23 void* operator new(std::size_t s) throw(std::bad_alloc)
|