HomeSort by relevance Sort by last modified time
    Searched defs:Allocate (Results 51 - 75 of 108) sorted by null

1 23 4 5

  /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...]
  /external/stlport/test/eh/
nc_alloc.cpp 115 static void *Allocate(size_t s) {
175 char * const p = (char*)gFastAllocator.Allocate( s );
  /external/chromium_org/content/browser/renderer_host/java/
java_bound_object.cc 58 static NPObject* Allocate(NPP npp, NPClass* np_class);
71 JavaNPObject::Allocate,
83 NPObject* JavaNPObject::Allocate(NPP npp, NPClass* np_class) {
783 // allocate function directly, and we don't use it, so it's ok to be 0.
    [all...]
  /external/chromium_org/media/video/capture/win/
video_capture_device_mf_win.cc 342 void VideoCaptureDeviceMFWin::Allocate(
  /external/chromium_org/v8/src/
platform-cygwin.cc 104 void* OS::Allocate(const size_t requested,
111 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
180 // Allocate enough room to be able to store a full file name.
256 // The address range used to randomize RWX allocations in OS::Allocate
platform-freebsd.cc 112 void* OS::Allocate(const size_t requested,
120 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
platform-macos.cc 118 void* OS::Allocate(const size_t requested,
130 LOG(Isolate::Current(), StringEvent("OS::Allocate", "mmap failed"));
platform-solaris.cc 127 void* OS::Allocate(const size_t requested,
135 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
platform-linux.cc 355 void* OS::Allocate(const size_t requested,
364 StringEvent("OS::Allocate", "mmap failed"));
446 // Allocate enough room to be able to store a full file name.
platform-nullos.cc 250 void* OS::Allocate(const size_t requested,
platform-openbsd.cc 110 void* OS::Allocate(const size_t requested,
119 StringEvent("OS::Allocate", "mmap failed"));
188 // Allocate enough room to be able to store a full file name.
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 83 // Maximum required total memory to allocate all common symbols
102 // Add the common symbols to a list. We'll allocate them all below.
138 // Allocate common symbols
176 // Allocate memory for the section
181 report_fatal_error("Unable to allocate memory for common symbols!");
264 unsigned Allocate;
272 Allocate = DataSize + StubBufSize;
274 ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID)
275 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID, IsReadOnly);
277 report_fatal_error("Unable to allocate section memory!")
    [all...]
  /external/opencv/cxcore/include/
cvwimage.h 311 Allocate(width, height, nchannels);
318 // Allocate an image. Does nothing if current size is the same as
320 void Allocate(int width, int height, int nchannels);
330 Allocate(src.Width(), src.Height());
368 Allocate(width, height);
375 // Allocate an image. Does nothing if current size is the same as
377 void Allocate(int width, int height);
387 Allocate(src.Width(), src.Height());
528 // Allocate ImageData
531 inline void WImageBuffer<T>::Allocate(int width, int height, int nchannels
    [all...]
  /external/v8/src/
platform-nullos.cc 235 void* OS::Allocate(const size_t requested,
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.cc 210 Allocate();
245 Allocate();
498 // Begin allocate (or immediately re-allocate, if MSG_ALLOCATE pending)
499 void P2PTransportChannel::Allocate() {
507 // Cancels the pending allocate, if any.
693 Allocate();
711 Allocate();
746 Allocate();
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.cc 265 Allocate();
304 Allocate();
336 Allocate();
826 // Begin allocate (or immediately re-allocate, if MSG_ALLOCATE pending)
827 void P2PTransportChannel::Allocate() {
    [all...]
  /external/chromium_org/third_party/ots/src/
ots.cc 74 uint8_t* Allocate(size_t length) {
530 table_data = arena.Allocate(table_length);
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 353 /// \brief Allocate space for a new set of loaded preprocessed entities.
366 /// \brief Allocate memory in the preprocessing record.
367 void *Allocate(unsigned Size, unsigned Align = 8) {
368 return BumpAlloc.Allocate(Size, Align);
601 return PR.Allocate(bytes, alignment);
  /external/llvm/include/llvm/MC/
MCContext.h 403 void *Allocate(unsigned Size, unsigned Align = 8) {
404 return Allocator.Allocate(Size, Align);
436 /// @param Bytes The number of bytes to allocate. Calculated by the compiler.
443 return C.Allocate(Bytes, Alignment);
470 /// @param Bytes The number of bytes to allocate. Calculated by the compiler.
477 return C.Allocate(Bytes, Alignment);
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 150 "Cannot allocate an allocated block!");
162 /// FreeRangeHeader to allocate from.
277 virtual MemSlab *Allocate(size_t Size);
321 /// DefaultCodeSlabSize - When we have to go map more memory, we allocate at
325 /// DefaultSlabSize - Allocate data into slabs of this size unless we get
330 /// should allocate a separate slab.
349 /// startFunctionBody - When a function starts, allocate a block of free
370 // If this block isn't big enough for the allocation desired, allocate
381 // Allocate the entire memory block.
387 /// allocateNewCodeSlab - Helper method to allocate a new slab of cod
    [all...]
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 84 void RBaseStream::Allocate()
144 Allocate();
186 Allocate();
735 void WBaseStream::Allocate()
763 Allocate();
806 Allocate();
  /external/chromium_org/chrome/service/cloud_print/
print_system_win.cc 68 void Allocate(int size) {
137 dev_mode->Allocate(size);
  /external/chromium_org/content/browser/renderer_host/media/
web_contents_video_capture_device.cc     [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
debugallocation.cc 481 static MallocBlock* Allocate(size_t size, int type) {
681 // We don't want to allocate or deallocate memory here, so we use
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
debugallocation.cc 483 static MallocBlock* Allocate(size_t size, int type) {
685 // We don't want to allocate or deallocate memory here, so we use
    [all...]

Completed in 308 milliseconds

1 23 4 5