HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 501 - 525 of 1382) sorted by null

<<21222324252627282930>>

  /frameworks/native/services/surfaceflinger/
Android.mk 74 android.hardware.graphics.allocator@2.0 \
101 android.hardware.graphics.allocator@2.0 \
134 android.hardware.graphics.allocator@2.0 \
  /prebuilts/go/darwin-x86/src/runtime/
mfixalloc.go 5 // Fixed-size object allocator. Returned memory is not zeroed.
13 // FixAlloc is a simple free-list allocator for fixed size objects.
51 // using the allocator to obtain chunks of memory.
  /prebuilts/go/linux-x86/src/runtime/
mfixalloc.go 5 // Fixed-size object allocator. Returned memory is not zeroed.
13 // FixAlloc is a simple free-list allocator for fixed size objects.
51 // using the allocator to obtain chunks of memory.
  /art/compiler/optimizing/
linearize_test.cc 40 ArenaAllocator allocator(&pool);
41 HGraph* graph = CreateCFG(&allocator, data);
  /build/make/target/product/
embedded.mk 24 android.hidl.allocator@1.0-service \
  /device/google/marlin/camera/QCamera2/HAL/
QCameraChannel.h 55 virtual int32_t addStream(QCameraAllocator& allocator,
126 int32_t addReprocStreamsFromSource(QCameraAllocator& allocator,
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_mac.cc 132 AtosSymbolizer::AtosSymbolizer(const char *path, LowLevelAllocator *allocator)
133 : process_(new(*allocator) AtosSymbolizerProcess(path, getpid())) {}
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsMakeUtil.hpp 49 de::MovePtr<vk::Allocation> bindImage (const vk::DeviceInterface& vk, const vk::VkDevice device, vk::Allocator& allocator, const vk::VkImage image, const vk::MemoryRequirement requirement);
50 de::MovePtr<vk::Allocation> bindBuffer (const vk::DeviceInterface& vk, const vk::VkDevice device, vk::Allocator& allocator, const vk::VkBuffer buffer, const vk::MemoryRequirement requirement);
  /external/dng_sdk/source/
dng_area_task.cpp 82 dng_memory_allocator * /* allocator */,
256 dng_memory_allocator *allocator,
262 task.Start (1, tileSize, allocator, sniffer);
dng_bad_pixels.h 70 dng_memory_allocator &allocator);
274 dng_memory_allocator &allocator);
dng_host.cpp 39 dng_host::dng_host (dng_memory_allocator *allocator,
42 : fAllocator (allocator)
69 dng_memory_allocator & dng_host::Allocator ()
93 return Allocator ().Allocate (logicalSize);
240 &Allocator (),
279 dng_xmp *result = new dng_xmp (Allocator ());
349 Allocator ());
dng_memory_stream.cpp 25 dng_memory_stream::dng_memory_stream (dng_memory_allocator &allocator,
33 , fAllocator (allocator)
  /external/elfutils/tests/
run-dwarf-getstring.sh 89 __normal_iterator<char*,std::basic_string<char, std::char_traits<char>, std::allocator<char> > >
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.sh 9 * so that it is possible to use jemalloc in conjunction with another allocator
  /external/libchrome/base/metrics/
persistent_histogram_allocator.cc 43 // The current globally-active persistent allocator for all new histograms.
98 PersistentMemoryAllocator* allocator)
99 : allocator_(allocator), record_iterator_(allocator) {}
245 PersistentHistogramAllocator* allocator)
246 : allocator_(allocator), memory_iter_(allocator->memory_allocator()) {}
294 // If the allocator is corrupt, don't waste time trying anything else.
296 // failed due to a corrupt allocator and the number of process instances
349 // array would have failed for being too large; the allocator support
    [all...]
  /external/libcxx/test/std/containers/sequences/deque/
types.pass.cpp 14 // template <class T, class Allocator = allocator<T> >
19 // typedef Allocator allocator_type;
40 template <class T, class Allocator>
44 typedef std::deque<T, Allocator> C;
47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "");
51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "")
    [all...]
  /external/libcxx/test/std/containers/sequences/vector/
types.pass.cpp 14 // template <class T, class Allocator = allocator<T> >
19 // typedef Allocator allocator_type;
42 template <class T, class Allocator>
46 typedef std::vector<T, Allocator> C;
49 // blindly pulling typedefs out of the allocator. This is why we can't call
52 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
53 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
54 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
55 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "")
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.native.obs/
string_alloc.pass.cpp 17 // class Allocator = allocator<ECharT>>
18 // basic_string<ECharT, Traits, Allocator>
19 // string(const Allocator& a = Allocator()) const;
42 using Alloc = std::allocator<CharT>;
64 { // Other allocator - provided copy
69 // don't allow another allocator to be default constructed.
86 { // Default allocator
87 using Alloc = std::allocator<CharT>
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
Allocator.cpp 1 //===--- Allocator.cpp - Simple memory allocation abstraction -------------===//
14 #include "llvm/Support/Allocator.h"
24 SlabAllocator &allocator)
25 : SlabSize(size), SizeThreshold(threshold), Allocator(allocator),
53 MemSlab *NewSlab = Allocator.Allocate(SlabSize);
71 Allocator.Deallocate(Slab);
111 MemSlab *NewSlab = Allocator.Allocate(PaddedSize);
170 MemSlab *Slab = (MemSlab*)Allocator.Allocate(Size, 0);
177 Allocator.Deallocate(Slab)
    [all...]
  /external/v8/src/compiler/
type-cache.h 18 AccountingAllocator allocator; member in class:v8::internal::compiler::final
24 TypeCache() : zone_(&allocator, ZONE_NAME) {}
  /external/v8/src/
string-stream.h 33 // Normal allocator uses new[] and delete[].
103 StringStream(StringAllocator* allocator,
105 : allocator_(allocator),
  /external/v8/src/zone/
zone.cc 44 Zone::Zone(AccountingAllocator* allocator, const char* name)
49 allocator_(allocator),
99 // Traverse the chained list of segments and return them all to the allocator.
  /external/webrtc/webrtc/p2p/base/
dtlstransport.h 33 PortAllocator* allocator,
35 : Base(name, allocator),
  /frameworks/base/libs/hwui/
ClipArea.h 176 WARN_UNUSED_RESULT const ClipBase* serializeClip(LinearAllocator& allocator);
177 WARN_UNUSED_RESULT const ClipBase* serializeIntersectedClip(LinearAllocator& allocator,
  /frameworks/base/libs/hwui/tests/unit/
LinearAllocatorTests.cpp 118 LinearAllocator allocator; local
119 LinearStdAllocator<void*> stdAllocator(allocator);

Completed in 2002 milliseconds

<<21222324252627282930>>