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

<<31323334353637383940>>

  /external/tensorflow/tensorflow/core/common_runtime/
step_stats_collector.cc 45 Allocator* allocator, TrackingAllocator* tracking_allocator) {
47 memory->set_allocator_name(allocator->Name());
54 allocator->GetStats(&stats);
287 // <device, allocator> -> AllocStats
301 // Only print the allocator that has OOM.
333 ", allocator: ", dev.second, "\n");
334 // Print allocations stats of the <device, allocator> pair.
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 698 SkBitmap::Allocator* alloc) {
804 HeapAllocator allocator; local
806 if (!bitmapCopyTo(&result, dstCT, src, &allocator)) {
809 auto bitmap = allocator.getStorageObjAndReset();
816 AshmemPixelAllocator allocator(env);
817 if (!bitmapCopyTo(&result, dstCT, src, &allocator)) {
820 auto bitmap = allocator.getStorageObjAndReset();
1242 HeapAllocator allocator; local
1539 HeapAllocator allocator; local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
malloc.go 5 // Memory allocator.
10 // The main allocator works in runs of pages.
17 // The allocator's data structures are:
19 // fixalloc: a free-list allocator for fixed-size off-heap objects,
20 // used to manage storage used by the allocator.
112 // Tiny allocator parameters, see "Tiny allocator" comment in malloc.go.
184 // NOTE: sysAlloc returns OS-aligned memory, but the heap allocator
206 // NOTE: SysReserve returns OS-aligned memory, but the heap allocator
391 // Initialize the rest of the allocator
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
malloc.go 5 // Memory allocator.
10 // The main allocator works in runs of pages.
17 // The allocator's data structures are:
19 // fixalloc: a free-list allocator for fixed-size off-heap objects,
20 // used to manage storage used by the allocator.
112 // Tiny allocator parameters, see "Tiny allocator" comment in malloc.go.
184 // NOTE: sysAlloc returns OS-aligned memory, but the heap allocator
206 // NOTE: SysReserve returns OS-aligned memory, but the heap allocator
391 // Initialize the rest of the allocator
    [all...]
  /art/runtime/gc/allocator/
rosalloc-inl.h 24 namespace allocator { namespace in namespace:art::gc
122 } // namespace allocator
  /art/runtime/gc/space/
dlmalloc_space.h 121 MallocSpace* CreateInstance(MemMap* mem_map, const std::string& name, void* allocator,
malloc_space.h 116 virtual MallocSpace* CreateInstance(MemMap* mem_map, const std::string& name, void* allocator,
147 // When true the low memory mode argument specifies that the heap wishes the created allocator to
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryTestsUtil.cpp 695 de::MovePtr<Allocation> bindImage (const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkImage image, const MemoryRequirement requirement)
697 de::MovePtr<Allocation> alloc = allocator.allocate(getImageMemoryRequirements(vk, device, image), requirement);
702 de::MovePtr<Allocation> bindBuffer (const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkBuffer buffer, const MemoryRequirement requirement)
704 de::MovePtr<Allocation> alloc(allocator.allocate(getBufferMemoryRequirements(vk, device, buffer), requirement));
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationCommonEdgeTests.cpp 249 Allocator& allocator = context.getDefaultAllocator(); local
333 const Buffer vertexBuffer(vk, device, allocator,
353 const Image colorAttachmentImage (vk, device, allocator,
360 const Buffer colorBuffer (vk, device, allocator, makeBufferCreateInfo(colorBufferSizeBytes, VK_BUFFER_USAGE_TRANSFER_DST_BIT), MemoryRequirement::HostVisible);
vktTessellationShaderInputOutputTests.cpp 78 Allocator& allocator = context.getDefaultAllocator(); local
82 const Buffer vertexBuffer(vk, device, allocator,
98 const Image colorAttachmentImage (vk, device, allocator,
105 const Buffer colorBuffer (vk, device, allocator, makeBufferCreateInfo(colorBufferSizeBytes, VK_BUFFER_USAGE_TRANSFER_DST_BIT), MemoryRequirement::HostVisible);
vktTessellationUtil.hpp 52 vk::Allocator& allocator,
57 , m_allocation (allocator.allocate(getBufferMemoryRequirements(vk, device, *m_buffer), memoryRequirement))
80 vk::Allocator& allocator,
85 , m_allocation (allocator.allocate(getImageMemoryRequirements(vk, device, *m_image), memoryRequirement))
  /external/dng_sdk/source/
dng_memory.h 307 // to 16-byte boundaries if the allocator does not do that already. The
320 // The allocator on Win64/Mac64 is 16-byte aligned already. iOS is too.
345 dng_memory_block * Clone (dng_memory_allocator &allocator) const;
511 /// \brief Interface for dng_memory_block allocator.
533 /// \brief Default memory allocator used if NULL is passed in for allocator
543 // C++ allocator (i.e. an implementation of the Allocator concept) that throws a
  /external/eigen/Eigen/src/StlSupport/
StdDeque.h 18 * std::deque such that for data types with alignment issues the correct allocator
25 class deque<__VA_ARGS__, std::allocator<__VA_ARGS__> > \
StdList.h 17 * std::list such that for data types with alignment issues the correct allocator
24 class list<__VA_ARGS__, std::allocator<__VA_ARGS__> > \
StdVector.h 18 * std::vector such that for data types with alignment issues the correct allocator
25 class vector<__VA_ARGS__, std::allocator<__VA_ARGS__> > \
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
iter_iter.pass.cpp 31 typedef std::allocator<T> Allocator;
32 typedef std::deque<T, Allocator> C;
41 template <class Allocator, class InputIterator>
46 typedef std::deque<T, Allocator> C;
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
PR20855_tuple_ref_binding_diagnostics.pass.cpp 88 std::allocator<void> alloc;
alloc_UTypes.pass.cpp 84 std::tuple<Explicit> t{std::allocator_arg, std::allocator<void>{}, 42};
135 // Check that uses-allocator construction is still selected when
148 // Stress test the SFINAE on the uses-allocator constructors and
move.pass.cpp 54 using Alloc = std::allocator<void>;
69 // uses-allocator special member constructors
76 // uses-allocator args constructors
  /external/libvterm/src/
vterm_internal.h 128 VTermAllocatorFunctions *allocator; member in struct:VTerm
  /external/python/cpython3/Modules/
hashtable.h 127 _Py_hashtable_allocator_t *allocator);
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
pool_allocator.h 51 // pool is effectively a thin wrapper around the allocator.
57 // "allocator" is the object that performs the underlying memory
58 // malloc/free operations. This object takes ownership of allocator.
60 SubAllocator* allocator, RoundUpInterface* size_rounder,
92 // allocator. Read locks are not taken on the theory that value
179 // Allocator for pinned CPU RAM that is made known to CUDA for the
  /external/tensorflow/tensorflow/core/kernels/data/
random_dataset_op.cc 102 Tensor value_tensor(ctx->allocator({}), DT_INT64, {});
range_dataset_op.cc 103 Tensor value_tensor(ctx->allocator({}), DT_INT64, {});
tensor_slice_dataset_op.cc 120 Tensor t_slice(ctx->allocator({}), t.dtype(),

Completed in 1302 milliseconds

<<31323334353637383940>>