HomeSort by relevance Sort by last modified time
    Searched refs:Allocate (Results 1 - 25 of 383) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p11.cpp 9 void Allocate(unsigned Alignment
13 void f1(A<int> x) { x.Allocate(); }
  /external/chromium_org/third_party/libjingle/overrides/allocator_shim/
allocator_stub.cc 11 void* Allocate(std::size_t n) {
allocator_stub.h 19 void* Allocate(std::size_t n);
  /external/clang/test/Index/
index-file.cpp 4 template < typename T > *Allocate() { }
  /external/llvm/unittests/Support/
AllocatorTest.cpp 20 int *a = (int*)Alloc.Allocate(sizeof(int), 0);
21 int *b = (int*)Alloc.Allocate(sizeof(int) * 10, 0);
22 int *c = (int*)Alloc.Allocate(sizeof(int), 0);
34 // Allocate enough bytes to create three slabs.
37 Alloc.Allocate(3000, 0);
39 Alloc.Allocate(3000, 0);
41 Alloc.Allocate(3000, 0);
45 // Allocate enough bytes to create two slabs, reset the allocator, and do it
49 Alloc.Allocate(3000, 0);
51 Alloc.Allocate(3000, 0)
    [all...]
  /external/chromium_org/content/browser/loader/
resource_buffer_unittest.cc 18 char* ptr = buf->Allocate(&size);
33 char* ptr = buf->Allocate(&size);
53 buf->Allocate(&size);
59 buf->Allocate(&size);
69 buf->Allocate(&size);
72 buf->Allocate(&size);
78 buf->Allocate(&size);
90 buf->Allocate(&size);
93 buf->Allocate(&size);
96 buf->Allocate(&size)
    [all...]
resource_buffer.h 20 // You can think of the ResourceBuffer as a FIFO. The Allocate method reserves
21 // space in the buffer. Allocate may be called multiple times until the buffer
40 // char* ptr = buf->Allocate(&size);
56 // returning larger allocations from the Allocate method.
65 // the Allocate method. It will prefer to return segments that are
82 // Returns true if Allocate will succeed.
88 char* Allocate(int* size);
91 // returned by Allocate can be found.
94 // Called to reduce the size of the last allocation returned by Allocate. It
  /external/llvm/include/llvm/Support/
Allocator.h 36 void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); }
39 T *Allocate() { return static_cast<T*>(malloc(sizeof(T))); }
42 T *Allocate(size_t Num) {
61 /// by the JIT to allocate contiguous swathes of executable memory. The
67 virtual MemSlab *Allocate(size_t Size) = 0;
82 virtual MemSlab *Allocate(size_t Size) LLVM_OVERRIDE;
94 /// SlabSize - Allocate data into slabs of this size unless we get an
99 /// allocate a separate slab.
128 /// StartNewSlab - Allocate a new slab and move the bump pointers over into
148 /// Allocate - Allocate space at the specified alignment
    [all...]
RecyclingAllocator.h 40 /// Allocate - Return a pointer to storage for an object of type
44 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); }
46 T *Allocate() { return Base.Allocate(Allocator); }
66 return Allocator.Allocate();
Recycler.h 102 SubClass *Allocate(AllocatorType &Allocator) {
109 static_cast<SubClass *>(Allocator.Allocate(Size, Align));
113 T *Allocate(AllocatorType &Allocator) {
114 return Allocate<T>(Allocator);
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
heap-profiler_unittest.cc 59 static ATTRIBUTE_NOINLINE void Allocate(int start, int end, int size) {
91 Allocate(0, 40, 100);
110 Allocate(0, 40, 100);
133 Allocate(0, 40, 100);
136 Allocate(0, 40, 100);
137 Allocate(0, 40, 100);
142 Allocate(0, 100, 100000);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
heap-profiler_unittest.cc 59 static ATTRIBUTE_NOINLINE void Allocate(int start, int end, int size) {
91 Allocate(0, 40, 100);
110 Allocate(0, 40, 100);
133 Allocate(0, 40, 100);
136 Allocate(0, 40, 100);
137 Allocate(0, 40, 100);
142 Allocate(0, 100, 100000);
  /external/chromium_org/courgette/third_party/
paged_array_unittest.cc 20 EXPECT_TRUE(a.Allocate(kSize));
27 EXPECT_TRUE(a.Allocate(kSize));
35 a.Allocate(kAccessSize);
  /external/chromium_org/media/video/capture/
video_capture_device_dummy.cc 19 void VideoCaptureDeviceDummy::Allocate(
video_capture_device_dummy.h 22 virtual void Allocate(const VideoCaptureCapability& capture_format,
  /external/chromium_org/third_party/leveldatabase/src/util/
arena.h 21 char* Allocate(size_t bytes);
23 // Allocate memory with the normal alignment guarantees provided by malloc
52 inline char* Arena::Allocate(size_t bytes) {
  /external/chromium_org/cc/resources/
scoped_resource.h 28 bool Allocate(gfx::Size size,
scoped_resource_unittest.cc 37 texture->Allocate(
58 texture->Allocate(
69 texture->Allocate(
87 texture->Allocate(
  /external/compiler-rt/lib/lsan/
lsan_allocator.h 23 void *Allocate(const StackTrace &stack, uptr size, uptr alignment,
  /external/opencv/
WLNonFileByteStream.h 41 void Allocate(int data_size);
  /external/chromium/base/win/
scoped_bstr.h 34 // If you need to allocate a new BSTR instance, use |allocate| instead.
46 BSTR Allocate(const char16* str);
  /external/chromium_org/base/win/
scoped_bstr.h 33 // If you need to allocate a new BSTR instance, use |allocate| instead.
45 BSTR Allocate(const char16* str);
  /external/chromium_org/content/browser/renderer_host/media/
desktop_capture_device.h 41 virtual void Allocate(const media::VideoCaptureCapability& capture_format,
web_contents_video_capture_device.h 45 virtual void Allocate(const media::VideoCaptureCapability& capture_format,
  /external/chromium_org/media/video/capture/mac/
video_capture_device_mac.h 28 virtual void Allocate(const VideoCaptureCapability& capture_format,

Completed in 537 milliseconds

1 2 3 4 5 6 7 8 91011>>