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

12 3 4 5

  /external/chromium_org/third_party/skia/src/core/
SkBitmapFilter.cpp 81 SkBitmapFilter *SkBitmapFilter::Allocate() {
123 fBitmapFilter = SkBitmapFilter::Allocate();
  /external/llvm/include/llvm/Support/
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/llvm/lib/Support/
Allocator.cpp 45 /// StartNewSlab - Allocate a new slab and move the bump pointers over into
49 // to allocate more. Increase slab size to reduce mallocs and possibly memory
54 MemSlab *NewSlab = Allocator.Allocate(SlabSize);
89 /// Allocate - Allocate space at the specified alignment.
91 void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) {
101 // Allocate the aligned space, going forwards from CurPtr.
114 // If Size is really big, allocate a separate slab for it.
117 MemSlab *NewSlab = Allocator.Allocate(PaddedSize);
134 assert(CurPtr <= End && "Unable to allocate memory!")
    [all...]
  /external/skia/src/core/
SkBitmapFilter.cpp 81 SkBitmapFilter *SkBitmapFilter::Allocate() {
123 fBitmapFilter = SkBitmapFilter::Allocate();
  /external/chromium_org/media/video/capture/
fake_video_capture_device.cc 69 void FakeVideoCaptureDevice::Allocate(
  /external/chromium_org/skia/ext/
bitmap_platform_device_linux.cc 193 bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) {
bitmap_platform_device_mac.cc 29 // Allocate a bitmap context with 4 components per pixel (BGRA). Apple
286 bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) {
bitmap_platform_device_win.cc 332 bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.h 226 // We allocate STL objects in our own arena.
228 static void *Allocate(size_t n) {
thread_cache.h 91 // Allocate an object of the given size and class. The size given
93 void* Allocate(size_t size, size_t cl);
307 // Allocate a new heap. REQUIRES: Static::pageheap_lock is held.
335 inline void* ThreadCache::Allocate(size_t size, size_t cl) {
  /external/chromium_org/v8/src/
list-inl.h 149 void List<T, P>::Allocate(int length, P allocator) {
scopeinfo.h 179 static Handle<ModuleInfo> Allocate(Isolate* isolate, int length) {
interface.h 118 void Allocate(int index) {
  /external/chromium_org/v8/test/cctest/
cctest.cc 102 virtual void* Allocate(size_t length) { return malloc(length); }
  /external/clang/include/clang/Sema/
ParsedTemplate.h 185 Allocate(unsigned NumArgs, SmallVectorImpl<TemplateIdAnnotation*> &List) {
  /external/compiler-rt/lib/lsan/
lsan_allocator.cc 75 void *Allocate(const StackTrace &stack, uptr size, uptr alignment,
80 Report("WARNING: LeakSanitizer failed to allocate %zu bytes\n", size);
83 void *p = allocator.Allocate(&cache, size, alignment, cleared);
97 Report("WARNING: LeakSanitizer failed to allocate %zu bytes\n", new_size);
  /hardware/ti/omap3/dspbridge/inc/
dynamic_loader.h 292 * Allocate
303 void *(*Allocate) (struct Dynamic_Loader_Sym * thisptr,
336 * A class used by the dynamic loader to allocate and deallocate target memory.
386 * Function allocate
403 int (*Allocate) (struct Dynamic_Loader_Allocate * thisptr,
  /external/chromium_org/content/browser/renderer_host/media/
desktop_capture_device.cc 37 void Allocate(int width, int height,
81 // Requested size specified to Allocate().
84 // Frame rate specified to Allocate().
128 void DesktopCaptureDevice::Core::Allocate(int width, int height,
184 // the source frame size and the requested size supplied to Allocate().
187 // TODO(wez): Constraints should be passed from getUserMedia to Allocate.
395 void DesktopCaptureDevice::Allocate(
398 core_->Allocate(capture_format.width,
  /external/chromium_org/media/video/capture/linux/
video_capture_device_linux.cc 27 // Max number of video buffers VideoCaptureDeviceLinux can allocate.
200 void VideoCaptureDeviceLinux::Allocate(
384 SetErrorState("Allocate buffer failed");
  /external/chromium_org/media/video/capture/win/
video_capture_device_win.cc 342 void VideoCaptureDeviceWin::Allocate(
  /external/chromium_org/remoting/host/plugin/
host_plugin.cc 157 &Allocate,
225 static NPObject* Allocate(NPP npp, NPClass* aClass) {
226 VLOG(2) << "static Allocate";
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
relayserver_unittest.cc 78 void Allocate() {
200 // Send an allocate request without a username and verify it is rejected.
239 // Send an allocate request and verify that it is accepted.
266 // Send a second allocate request and verify that it is also accepted, though
269 Allocate();
299 Allocate();
334 Allocate();
344 Allocate();
367 Allocate();
392 Allocate();
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.h 250 // We allocate STL objects in our own arena.
252 static void *Allocate(size_t n) {
thread_cache.h 85 // Allocate an object of the given size and class. The size given
87 void* Allocate(size_t size, size_t cl);
330 // Allocate a new heap. REQUIRES: Static::pageheap_lock is held.
362 inline void* ThreadCache::Allocate(size_t size, size_t cl) {
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 93 /// \brief Allocate new storage.
94 Storage *Allocate() {
127 /// \brief Allocator used to allocate storage for this diagnostic.
136 DiagStorage = Allocator->Allocate();

Completed in 578 milliseconds

12 3 4 5