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

<<21222324252627282930>>

  /system/libhidl/transport/allocator/1.0/default/
AshmemAllocator.cpp 26 namespace allocator { namespace in namespace:android::hidl
99 } // namespace allocator
  /art/compiler/optimizing/
prepare_for_register_allocation.cc 60 ArenaAllocator* allocator = GetGraph()->GetAllocator(); local
61 HEnvironment* environment = new (allocator) HEnvironment(allocator,
intrinsics_x86.cc 178 static void CreateFPToIntLocations(ArenaAllocator* allocator, HInvoke* invoke, bool is64bit) {
180 new (allocator) LocationSummary(invoke, LocationSummary::kNoCall, kIntrinsified);
188 static void CreateIntToFPLocations(ArenaAllocator* allocator, HInvoke* invoke, bool is64bit) {
190 new (allocator) LocationSummary(invoke, LocationSummary::kNoCall, kIntrinsified);
258 static void CreateIntToIntLocations(ArenaAllocator* allocator, HInvoke* invoke) {
260 new (allocator) LocationSummary(invoke, LocationSummary::kNoCall, kIntrinsified);
265 static void CreateLongToIntLocations(ArenaAllocator* allocator, HInvoke* invoke) {
267 new (allocator) LocationSummary(invoke, LocationSummary::kNoCall, kIntrinsified);
272 static void CreateLongToLongLocations(ArenaAllocator* allocator, HInvoke* invoke) {
274 new (allocator) LocationSummary(invoke, LocationSummary::kNoCall, kIntrinsified)
    [all...]
  /art/compiler/utils/arm/
jni_macro_assembler_arm_vixl.h 40 explicit ArmVIXLJNIMacroAssembler(ArenaAllocator* allocator)
41 : JNIMacroAssemblerFwd(allocator),
42 exception_blocks_(allocator->Adapter(kArenaAllocAssembler)) {}
  /art/compiler/utils/
assembler.h 93 explicit AssemblerBuffer(ArenaAllocator* allocator);
405 explicit Assembler(ArenaAllocator* allocator) : buffer_(allocator), cfi_(this) {}
jni_macro_assembler.h 50 ArenaAllocator* allocator,
279 explicit JNIMacroAssemblerFwd(ArenaAllocator* allocator) : asm_(allocator) {}
assembler_thumb_test.cc 170 ArmVIXLAssemblerTest() : pool(), allocator(&pool), assembler(&allocator) { }
173 ArenaAllocator allocator; member in class:art::arm::ArmVIXLAssemblerTest
213 JniCallingConvention::Create(&allocator,
221 &allocator, is_static, is_synchronized, shorty, InstructionSet::kThumb2));
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrUtil.hpp 89 vk::Allocator& allocator,
98 vk::Allocator& allocator,
116 vk::Allocator& allocator,
  /external/libchrome/base/metrics/
persistent_histogram_allocator.h 41 // Constructs the data manager. The allocator must live longer than any
44 PersistentMemoryAllocator* allocator);
57 // don't have to also keep their own pointer to the appropriate allocator.
78 // Weak-pointer to the allocator used by the sparse histograms.
81 // Iterator within the allocator for finding sample records.
128 // don't have to also keep their own pointer to the appropriate allocator.
179 // Iterator used for fetching persistent histograms from an allocator.
184 // Constructs an iterator on a given |allocator|, starting at the beginning.
185 // The allocator must live beyond the lifetime of the iterator.
186 explicit Iterator(PersistentHistogramAllocator* allocator);
    [all...]
  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
construct_iter_iter_alloc.pass.cpp 57 std::allocator<int> alloc;
97 using Alloc = std::allocator<T>;
113 using Alloc = std::allocator<T>;
  /external/libcxx/test/std/utilities/template.bitset/bitset.members/
to_string.pass.cpp 12 // template <class charT, class traits, class Allocator>
13 // basic_string<charT, traits, Allocator>
17 // basic_string<charT, traits, allocator<charT> > to_string() const;
20 // basic_string<charT, char_traits<charT>, allocator<charT> > to_string() const;
22 // basic_string<char, char_traits<char>, allocator<char> > to_string() const;
53 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >();
88 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0');
123 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0', '1');
  /external/tensorflow/tensorflow/core/kernels/
quantized_matmul_op_test.cc 22 #include "tensorflow/core/framework/allocator.h"
80 Tensor expected(allocator(), DT_QINT32, TensorShape({2, 4}));
130 Tensor expected(allocator(), DT_QINT32, TensorShape({a_cols, b_cols}));
255 Tensor expected(allocator(), DT_QINT32, TensorShape({a_cols, b_cols}));
  /external/v8/src/parsing/
parse-info.cc 45 : ParseInfo(shared->GetIsolate()->allocator()) {
82 : ParseInfo(script->GetIsolate()->allocator()) {
107 ParseInfo* p = new ParseInfo(isolate->allocator());
  /external/webrtc/webrtc/p2p/client/
httpportallocator.cc 104 HttpPortAllocatorBase* allocator,
113 : BasicPortAllocatorSession(allocator, content_name, component,
141 if (allocator()->flags() & PORTALLOCATOR_DISABLE_RELAY) {
  /hardware/google/av/codec2/vndk/bufferpool/vts/
multi.cpp 38 #include "allocator.h"
99 std::shared_ptr<C2Allocator> allocator = variable
101 ASSERT_TRUE((bool)allocator);
103 mAllocator = std::make_shared<VtsBufferPoolAllocator>(allocator);
single.cpp 35 #include "allocator.h"
65 std::shared_ptr<C2Allocator> allocator = variable
67 ASSERT_TRUE((bool)allocator);
69 mAllocator = std::make_shared<VtsBufferPoolAllocator>(allocator);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
alloc_traits.h 0 // Allocator traits -*- C++ -*-
38 # include <bits/allocator.h> // for __alloc_swap
54 struct __allocator_always_compares_equal<std::allocator<_Tp>>
58 const bool __allocator_always_compares_equal<std::allocator<_Tp>>::value;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
alloc_traits.h 0 // Allocator traits -*- C++ -*-
38 # include <bits/allocator.h> // for __alloc_swap
54 struct __allocator_always_compares_equal<std::allocator<_Tp>>
58 const bool __allocator_always_compares_equal<std::allocator<_Tp>>::value;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/bitset.members/
to_string.pass.cpp 12 // template <class charT, class traits, class Allocator>
13 // basic_string<charT, traits, Allocator>
17 // basic_string<charT, traits, allocator<charT> > to_string() const;
20 // basic_string<charT, char_traits<charT>, allocator<charT> > to_string() const;
22 // basic_string<char, char_traits<char>, allocator<char> > to_string() const;
53 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >();
88 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0');
123 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0', '1');
  /system/libhidl/libhidlcache/
libhidlcache_test.cpp 19 #include <android/hidl/allocator/1.0/IAllocator.h>
43 using ::android::hidl::allocator::V1_0::IAllocator;
52 ASSERT_TRUE(ashmemAllocator->isRemote()); // allocator is always remote
113 using ::android::hidl::allocator::V1_0::IAllocator;
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleBaseResolve.cpp 47 Allocator& allocator = m_context.getDefaultAllocator(); local
83 const de::UniquePtr<Image> imageMS(new Image(deviceInterface, device, allocator, imageMSInfo, MemoryRequirement::Any));
90 const de::UniquePtr<Image> imageRS(new Image(deviceInterface, device, allocator, imageRSInfo, MemoryRequirement::Any));
205 de::SharedPtr<Buffer> vertexBuffer = de::SharedPtr<Buffer>(new Buffer(deviceInterface, device, allocator, makeBufferCreateInfo(vertexDataDesc.dataSize, VK_BUFFER_USAGE_VERTEX_BUFFER_BIT), MemoryRequirement::HostVisible));
493 const de::UniquePtr<Buffer> bufferRS(new Buffer(deviceInterface, device, allocator, bufferRSInfo, MemoryRequirement::HostVisible));
  /external/libchrome/base/debug/
activity_tracker.cc 90 PersistentMemoryAllocator* allocator,
94 PersistentMemoryAllocator::Iterator iter(allocator);
97 DCHECK_LE(size, allocator->GetAllocSize(ref));
100 if (allocator->ChangeType(ref, to_type, from_type, /*clear=*/false))
104 return allocator->Allocate(size, to_type);
171 PersistentMemoryAllocator* allocator,
177 : allocator_(allocator),
183 iterator_(allocator),
186 DCHECK(allocator);
656 // allocator that holds this structure and to which this object has n
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
cudnn_convolution_algorithm_picker.cc 176 // allocator either points to this->allocator_ or, if that's null, to a
178 DeviceMemoryAllocator* allocator; local
181 allocator = allocator_;
186 allocator = &*se_allocator;
195 ScratchAllocator input_output_allocator(device_ordinal, allocator);
219 ScratchAllocator scratch_allocator(device_ordinal, allocator);
  /external/tensorflow/tensorflow/python/client/
timeline.py 34 """Stores the maximum allocation for a given allocator within the timelne.
50 allocator_maximums: A dict mapping allocator names to AllocationMaximum.
268 def __init__(self, name, object_id, timestamp, pid, allocator, num_bytes):
279 allocator: Name of the allocator used to create the Tensor.
289 self._allocator = allocator
320 def allocator(self): member in class:_TensorTracker
321 """Name of the allocator used to create this tensor (string)."""
371 self._alloc_times = {} # tensor_name -> ( time, allocator, size )
372 self._allocator_maximums = {} # allocator name => maximum bytes lon
    [all...]
  /hardware/google/av/codec2/vndk/platform/
C2BqBuffer.cpp 136 // TODO: get proper allocator? and mutex?
296 Impl(const std::shared_ptr<C2Allocator> &allocator)
297 : mInit(C2_OK), mProducerId(0), mAllocator(allocator) {
447 const std::shared_ptr<C2Allocator> &allocator, const local_id_t localId)
448 : mAllocator(allocator), mLocalId(localId), mImpl(new Impl(allocator)) {}

Completed in 1053 milliseconds

<<21222324252627282930>>