HomeSort by relevance Sort by last modified time
    Searched refs:allocator_ (Results 26 - 50 of 132) sorted by null

12 3 4 5 6

  /hardware/qcom/display/msm8998/libgralloc1/
gr_buf_mgr.cpp 54 allocator_ = new Allocator();
55 allocator_->Init();
80 if (allocator_) {
81 delete allocator_;
109 descriptor->SetColorFormat(allocator_->GetImplDefinedFormat(descriptor->GetProducerUsage(),
118 shared = allocator_->CheckForBufferSharing(num_descriptors, descriptors, &max_buf_index);
165 allocator_->GetAlignedWidthAndHeight(descriptor, &alignedw, &alignedh);
200 if (allocator_->FreeBuffer(reinterpret_cast<void *>(hnd->base), hnd->size, hnd->offset,
206 if (allocator_->FreeBuffer(reinterpret_cast<void *>(hnd->base_metadata), meta_size,
229 int ion_handle = allocator_->ImportBuffer(hnd->fd)
    [all...]
  /art/compiler/optimizing/
reference_type_propagation_test.cc 32 ReferenceTypePropagationTest() : pool_(), allocator_(&pool_), propagation_(nullptr) {
33 graph_ = CreateGraph(&allocator_);
40 propagation_ = new (&allocator_) ReferenceTypePropagation(graph_,
71 ArenaAllocator allocator_; member in class:art::ReferenceTypePropagationTest
emit_swap_mips_test.cc 31 allocator_.reset(new ArenaAllocator(&pool_));
32 graph_ = CreateGraph(allocator_.get());
37 moves_ = new (allocator_.get()) HParallelMove(allocator_.get());
50 allocator_.reset();
110 std::unique_ptr<ArenaAllocator> allocator_; member in class:art::EmitSwapMipsTest
ssa_liveness_analysis.h 288 UsePosition* new_use = new (allocator_) UsePosition(instruction, temp_index, position);
339 UsePosition* new_use = new (allocator_) UsePosition(instruction, input_index, position);
350 new (allocator_) EnvUsePosition(environment, input_index, position);
354 UsePosition* new_use = new (allocator_) UsePosition(instruction, input_index, position);
368 new (allocator_) LiveRange(start_block_position, position, nullptr);
384 new (allocator_) LiveRange(start_block_position, position, first_range_);
394 new (allocator_) UsePosition(instruction, input_index, block->GetLifetimeEnd());
401 new (allocator_) LiveRange(start, end, first_range_);
410 first_range_ = range_search_start_ = new (allocator_) LiveRange(start, end, first_range_);
428 new (allocator_) LiveRange(start, end, nullptr)
1085 ArenaAllocator* const allocator_; member in class:art::LiveInterval
    [all...]
parallel_move_resolver.h 129 allocator_(allocator) {
197 ArenaAllocator* const allocator_; member in class:art::ParallelMoveResolverNoSwap
optimizing_cfi_test.cc 49 allocator_(&pool_),
54 blocks_(allocator_.Adapter()) {}
60 graph_ = CreateGraph(&allocator_);
145 ArenaAllocator allocator_; member in class:art::OptimizingCFITest
register_allocation_resolver.h 93 ArenaAllocator* const allocator_; member in class:art::RegisterAllocationResolver
register_allocator.h 92 ArenaAllocator* const allocator_; member in class:art::RegisterAllocator
  /art/runtime/
linear_alloc.h 57 ArenaAllocator allocator_ GUARDED_BY(lock_);
  /external/v8/src/
identity-map.h 93 : IdentityMapBase(heap), allocator_(allocator) {}
169 return static_cast<void**>(allocator_.New(sizeof(void*) * length));
171 void DeleteArray(void* array) override { allocator_.Delete(array); }
174 AllocationPolicy allocator_; member in class:v8::internal::IdentityMap
splay-tree.h 39 : root_(NULL), allocator_(allocator) {}
54 AllocationPolicy allocator() { return allocator_; }
195 AllocationPolicy allocator_; member in class:v8::internal::SplayTree
string-stream.h 108 : allocator_(allocator),
112 buffer_(allocator_->allocate(kInitialCapacity)) {
170 StringAllocator* allocator_; member in class:v8::internal::final
splay-tree-inl.h 26 root_ = new(allocator_) Node(key, Config::NoValue());
38 Node* node = new(allocator_) Node(key, Config::NoValue());
281 List<Node*, Allocator> nodes_to_visit(10, allocator_);
282 nodes_to_visit.Add(root_, allocator_);
286 if (node->left() != NULL) nodes_to_visit.Add(node->left(), allocator_);
287 if (node->right() != NULL) nodes_to_visit.Add(node->right(), allocator_);
  /external/ImageMagick/Magick++/lib/
Blob.cpp 115 Magick::Blob::Allocator allocator_)
123 _blobRef->allocator=allocator_;
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper.h 102 PageAllocator* allocator() { return &allocator_; }
175 mutable PageAllocator allocator_; member in class:google_breakpad::LinuxDumper
  /frameworks/native/vulkan/libvulkan/
api.cpp 51 allocator_(allocator),
60 allocator_.pfnFree(allocator_.pUserData, names_);
61 allocator_.pfnFree(allocator_.pUserData, implicit_layers_.elements);
62 allocator_.pfnFree(allocator_.pUserData, implicit_layers_.name_pool);
227 new_mem = allocator_.pfnReallocation(
228 allocator_.pUserData, arr.elements,
251 new_mem = allocator_.pfnReallocation
294 const VkAllocationCallbacks& allocator_; member in class:vulkan::api::__anon41547::OverrideLayerNames
360 const VkAllocationCallbacks& allocator_; member in class:vulkan::api::__anon41547::OverrideExtensionNames
463 const VkAllocationCallbacks& allocator_; member in class:vulkan::api::__anon41547::LayerChain
    [all...]
  /external/webrtc/webrtc/p2p/client/
portallocator_unittest.cc 105 allocator_.reset(new cricket::BasicPortAllocator(
109 allocator_->set_step_delay(cricket::kMinimumStepDelay);
139 return allocator_->SetPortRange(min_port, max_port);
143 allocator_.reset(new cricket::BasicPortAllocator(&network_manager_));
144 allocator_->set_step_delay(cricket::kMinimumStepDelay);
175 allocator_->AddTurnServer(turn_server);
206 allocator_->CreateSession(
324 return *allocator_;
341 for (size_t i = 0; i < allocator_->turn_servers().size(); ++i) {
342 cricket::RelayServerConfig server_config = allocator_->turn_servers()[i]
384 rtc::scoped_ptr<cricket::BasicPortAllocator> allocator_; member in class:PortAllocatorTest
    [all...]
  /hardware/qcom/display/sdm845/libgralloc1/
gr_buf_mgr.cpp 60 allocator_ = new Allocator();
61 allocator_->Init();
86 if (allocator_) {
87 delete allocator_;
115 descriptor->SetColorFormat(allocator_->GetImplDefinedFormat(descriptor->GetProducerUsage(),
124 shared = allocator_->CheckForBufferSharing(num_descriptors, descriptors, &max_buf_index);
203 if (allocator_->FreeBuffer(reinterpret_cast<void *>(hnd->base), hnd->size, hnd->offset,
209 if (allocator_->FreeBuffer(reinterpret_cast<void *>(hnd->base_metadata), meta_size,
230 int ion_handle = allocator_->ImportBuffer(hnd->fd);
235 int ion_handle_meta = allocator_->ImportBuffer(hnd->fd_metadata)
    [all...]
  /external/libchrome/base/containers/
stack_container.h 147 StackContainer() : allocator_(&stack_data_), container_(allocator_) {
178 Allocator allocator_; member in class:base::StackContainer
  /external/libchrome/base/metrics/
sparse_histogram_unittest.cc 41 if (allocator_) {
42 ASSERT_FALSE(allocator_->IsFull());
43 ASSERT_FALSE(allocator_->IsCorrupt());
66 allocator_ = GlobalHistogramAllocator::Get()->memory_allocator();
70 allocator_ = nullptr;
81 PersistentMemoryAllocator* allocator_ = nullptr; member in class:base::SparseHistogramTest
persistent_sample_map.h 97 PersistentHistogramAllocator* allocator_; member in class:base::PersistentSampleMap
100 // owned by the |allocator_| object (above) and so, like it, is expected to
  /external/gemmlowp/internal/
pack.h 53 : allocator_(allocator), pos_(0) {
56 allocator_->Reserve<std::uint8_t>(params_.l2_width * params_.l2_depth);
58 allocator_->Reserve<std::int32_t>(params_.l2_width);
76 return allocator_->GetPointer<std::uint8_t>(data_handle_) + pos_;
80 return allocator_->GetPointer<std::uint8_t>(data_handle_) + pos_;
84 return allocator_->GetPointer<std::int32_t>(sums_of_each_slice_handle_);
88 return allocator_->GetPointer<const std::int32_t>(
103 Allocator* const allocator_; member in class:gemmlowp::PackedSideBlock
  /external/v8/src/compiler/
zone-stats.cc 64 : max_allocated_bytes_(0), total_deleted_bytes_(0), allocator_(allocator) {}
88 Zone* zone = new Zone(allocator_, zone_name);
zone-stats.h 85 AccountingAllocator* allocator_; member in class:v8::internal::compiler::final
  /system/core/libmemunreachable/
HeapWalker.h 50 : allocator_(allocator),
93 Allocator<HeapWalker> allocator_; member in class:android::HeapWalker

Completed in 749 milliseconds

12 3 4 5 6