HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 926 - 950 of 1428) sorted by null

<<31323334353637383940>>

  /external/deqp/external/vulkancts/modules/vulkan/binding_model/
vktBindingShaderAccessTests.cpp 360 de::MovePtr<vk::Allocation> allocateAndBindObjectMemory (const vk::DeviceInterface& vki, vk::VkDevice device, vk::Allocator& allocator, vk::VkBuffer buffer, vk::MemoryRequirement requirement)
363 de::MovePtr<vk::Allocation> allocation = allocator.allocate(requirements, requirement);
369 de::MovePtr<vk::Allocation> allocateAndBindObjectMemory (const vk::DeviceInterface& vki, vk::VkDevice device, vk::Allocator& allocator, vk::VkImage image, vk::MemoryRequirement requirement)
372 de::MovePtr<vk::Allocation> allocation = allocator.allocate(requirements, requirement);
466 vk::Allocator& allocator,
505 vk::Allocator& m_allocator;
538 vk::Allocator& allocator
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 38 #include "gc/allocator/dlmalloc.h"
118 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentNonMovingAllocator(); local
123 allocator);
145 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentAllocator(); local
151 allocator);
  /art/runtime/verifier/
reg_type_cache.cc 277 RegTypeCache::RegTypeCache(bool can_load_classes, ScopedArenaAllocator& allocator, bool can_suspend)
278 : entries_(allocator.Adapter(kArenaAllocVerifier)),
279 klass_entries_(allocator.Adapter(kArenaAllocVerifier)),
281 allocator_(allocator) {
reg_type_cache.h 60 // Use 8 bytes since that is the default arena allocator alignment.
65 RegTypeCache(bool can_load_classes, ScopedArenaAllocator& allocator, bool can_suspend = true);
172 // Add a string piece to the arena allocator so that it stays live for the lifetime of the
202 // Arena allocator.
  /device/google/marlin/camera/QCamera2/HAL/
QCameraStream.h 57 QCameraStream(QCameraAllocator &allocator,
  /external/clang/test/Analysis/Inputs/
system-header-simulator-objc.h 121 extern CFMutableDictionaryRef CFDictionaryCreateMutable(CFAllocatorRef allocator, CFIndex capacity, const CFDictionaryKeyCallBacks *keyCallBacks, const CFDictionaryValueCallBacks *valueCallBacks);
  /external/deqp/external/vulkancts/framework/vulkan/
vkAllocationCallbackUtil.cpp 35 // System default allocator
229 AllocationCallbackRecorder::AllocationCallbackRecorder (const VkAllocationCallbacks* allocator, deUint32 callCountHint)
230 : ChainedAllocator (allocator)
280 DeterministicFailAllocator::DeterministicFailAllocator (const VkAllocationCallbacks* allocator, Mode mode, deUint32 numPassingAllocs)
281 : ChainedAllocator (allocator)
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTestsUtil.cpp 38 Allocator& allocator,
43 m_allocation = allocator.allocate(getBufferMemoryRequirements(vk, device, *m_buffer), memoryRequirement);
49 Allocator& allocator,
54 m_allocation = allocator.allocate(getImageMemoryRequirements(vk, device, *m_image), memoryRequirement);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemUtils.cpp 283 vk::Allocator& allocator = context.getDefaultAllocator(); local
320 return de::MovePtr<vk::ImageWithMemory>(new vk::ImageWithMemory(vk, device, allocator, params, memReq));
332 vk::Allocator& allocator = context.getDefaultAllocator(); local
359 return de::MovePtr<vk::BufferWithMemory>(new vk::BufferWithMemory(vk, device, allocator, params, requirement));
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesTestsUtil.cpp 491 de::MovePtr<Allocation> bindImage (const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkImage image, const MemoryRequirement requirement)
493 de::MovePtr<Allocation> alloc = allocator.allocate(getImageMemoryRequirements(vk, device, image), requirement);
498 de::MovePtr<Allocation> bindBuffer (const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkBuffer buffer, const MemoryRequirement requirement)
500 de::MovePtr<Allocation> alloc(allocator.allocate(getBufferMemoryRequirements(vk, device, buffer), requirement));
    [all...]
  /external/dexmaker/dexmaker-mockito-inline/src/main/jni/dexmakerjvmtiagent/
agent.cc 94 struct Allocator : public Writer::Allocator {
99 Allocator allocator; local
102 std::shared_ptr<jbyte> isolatedClass((jbyte*)writer.CreateImage(&allocator,
783 Allocator allocator; local
    [all...]
  /external/dng_sdk/source/
dng_camera_profile.h 868 void BuildHueSatMapEncodingTable (dng_memory_allocator &allocator,
dng_lens_correction.h 621 dng_memory_allocator &allocator);
dng_negative.h 279 dng_memory_allocator &allocator);
285 virtual dng_metadata * Clone (dng_memory_allocator &allocator) const;
327 void RebuildIPTC (dng_memory_allocator &allocator,
385 dng_memory_block * BuildExifBlock (dng_memory_allocator &allocator,
545 // The negative stores an associated allocator. It does not do
547 // Hence, clients will need to make sure that the allocator's lifespan
847 /// Provide access to the memory allocator used for this object.
849 dng_memory_allocator & Allocator () const
    [all...]
dng_stream.h 212 /// \param allocator Allocator used to allocate memory.
214 dng_memory_block * AsMemoryBlock (dng_memory_allocator &allocator);
  /external/eigen/Eigen/src/Core/util/
Memory.h 161 eigen_assert((size<16 || (std::size_t(result)%16)==0) && "System's malloc returned an unaligned pointer. Compile with EIGEN_MALLOC_ALREADY_ALIGNED=0 to fallback to handmade alignd memory allocator.");
699 * \brief STL compatible allocator to use with with 16 byte aligned types
706 * // Vector3f does not require 16 bytes alignment, no need to use Eigen's allocator:
713 class aligned_allocator : public std::allocator<T>
730 aligned_allocator() : std::allocator<T>() {}
732 aligned_allocator(const aligned_allocator& other) : std::allocator<T>(other) {}
735 aligned_allocator(const aligned_allocator<U>& other) : std::allocator<T>(other) {}
    [all...]
  /external/libchrome/base/metrics/
persistent_memory_allocator.cc 104 // describe the state of the allocator to all processes. The size of this
149 const PersistentMemoryAllocator* allocator)
150 : allocator_(allocator), last_record_(kReferenceQueue), record_count_(0) {}
153 const PersistentMemoryAllocator* allocator,
155 : allocator_(allocator), last_record_(0), record_count_(0) {
189 // made to the allocator, notably "freeptr" (see comment in loop for why
320 // all the requirements of use within the allocator. They access private
407 // The allocator is attaching to a previously initialized segment of
430 // some issue with the underlying memory segment. The "Local" allocator
464 // in case development of a new use of the allocator could benefit fro
    [all...]
  /external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
construct_types.pass.cpp 102 // NotUsesAllocator provides valid signatures for each uses-allocator
130 // doing non-pmr uses-allocator construction.
163 using STDA = std::allocator<char>;
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
PR22806_constrain_tuple_like_ctor.pass.cpp 94 std::allocator<int> A;
121 { // rvalue reference via uses-allocator
126 { // const lvalue reference via uses-allocator
135 { // lvalue reference via uses-allocator
141 { // const rvalue reference via uses-allocator
  /external/tensorflow/tensorflow/core/kernels/
cast_op_test.cc 60 Tensor expected(allocator(), out_type, TensorShape({1, 2, 2, 1}));
  /external/tensorflow/tensorflow/core/kernels/data/
batch_dataset_op.cc 147 Tensor batch_component(ctx->allocator({}), first_element.dtype(),
  /external/tensorflow/tensorflow/core/util/
example_proto_helper.h 24 #include "tensorflow/core/framework/allocator.h"
107 // allocated using a provided Allocator within this method.
112 const std::vector<VarLenFeature>& var_len_features, Allocator* allocator,
  /external/v8/src/compiler/
jump-threading.cc 98 // to build a frame or not in the register allocator, and trickle it
147 Zone local_zone(code->isolate()->allocator(), ZONE_NAME);
  /external/v8/src/
handles.cc 122 : isolate_(isolate), zone_(isolate->allocator(), ZONE_NAME) {
  /external/webrtc/talk/app/webrtc/
peerconnectioninterface.h 531 rtc::scoped_ptr<cricket::PortAllocator> allocator,

Completed in 1404 milliseconds

<<31323334353637383940>>