HomeSort by relevance Sort by last modified time
    Searched refs:Allocations (Results 1 - 22 of 22) sorted by null

  /frameworks/rs/tests/lldb/cpp/Allocations/
Android.mk 7 Allocations.cpp \
  /art/test/098-ddmc/src/
Main.java 37 Allocations empty = new Allocations(DdmVmInternal.getRecentAllocations());
45 System.out.println("Capture some allocations (note just this causes allocations)");
46 Allocations before = new Allocations(DdmVmInternal.getRecentAllocations());
54 Allocations after = new Allocations(DdmVmInternal.getRecentAllocations());
64 Allocations reset = new Allocations(DdmVmInternal.getRecentAllocations())
    [all...]
  /frameworks/rs/tests/lldb/java/Allocations/
Android.mk 10 LOCAL_PACKAGE_NAME := Allocations
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 39 std::vector<void *> Allocations;
45 AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {}
47 Allocations = std::move(RHS.Allocations);
52 for (void *Allocation : Allocations)
56 void add(void *Mem) { Allocations.push_back(Mem); }
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
Interpreter.h 41 std::vector<void*> Allocations;
45 void add(void *mem) { Allocations.push_back(mem); }
47 for (unsigned i = 0; i < Allocations.size(); ++i)
48 free(Allocations[i]);
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_executable.cc 79 CHECK_EQ(buffers->size(), assignment_->Allocations().size());
80 VLOG(3) << "Allocating " << assignment_->Allocations().size()
81 << " allocations for module " << module().name();
82 for (BufferAllocation::Index i = 0; i < assignment_->Allocations().size();
297 std::vector<se::DeviceMemoryBase> buffers(assignment_->Allocations().size());
304 std::vector<bool> buffers_in_result(assignment_->Allocations().size(), false);
329 std::vector<se::DeviceMemoryBase> buffers(assignment_->Allocations().size());
334 std::vector<bool> buffers_in_result(assignment_->Allocations().size(), false);
parallel_cpu_executable.cc 315 // TODO(b/27458679) Avoid dynamic allocations in Executor.
329 CHECK_EQ(buffers->size(), assignment_->Allocations().size());
330 VLOG(3) << "Allocating " << assignment_->Allocations().size()
331 << " allocations for module " << module().name();
332 for (BufferAllocation::Index i = 0; i < assignment_->Allocations().size();
462 std::vector<se::DeviceMemoryBase> buffers(assignment_->Allocations().size());
476 std::vector<bool> buffers_in_result(assignment_->Allocations().size(), false);
cpu_compiler.cc     [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
buffer_allocations.cc 44 const int64 num_buffers = buffer_assignment.Allocations().size();
116 const int64 num_buffers = buffer_assignment.Allocations().size();
gpu_executable.cc 261 for (BufferAllocation::Index i = 0; i < assignment_->Allocations().size();
ir_emitter_unnested.cc     [all...]
  /system/core/libmemunreachable/
HeapWalker.h 74 size_t Allocations();
HeapWalker.cpp 96 size_t HeapWalker::Allocations() {
105 // Recursively walk pointers from roots to mark referenced allocations
MemUnreachable.cpp 61 size_t Allocations() { return heap_walker_.Allocations(); }
89 MEM_ALOGI("searching process %d for allocations", pid_);
343 size_t num_allocations = unreachable.Allocations();
  /frameworks/rs/script_api/
rs_object_info.spec 24 <h5>Allocations:</h5>
26 Allocations are the primary method used to pass data to and from RenderScript kernels.
34 See the <a href='http://developer.android.com/reference/android/renderscript/Allocation.html'>android.renderscript.Allocation</a> for details on to create Allocations.
57 When creating Allocations of common elements, you can simply use one of the many predefined
64 Samplers objects define how Allocations can be read as structure within a kernel.
rs_allocation_create.spec 20 The functions below can be used to create Allocations from a Script.
142 only supported usage flags for Allocations created from within a RenderScript
146 create Allocations of scalar and vector numerical types without creating
  /external/tensorflow/tensorflow/compiler/xla/service/
buffer_assignment_test.cc 230 for (auto& allocation : buffers.Allocations()) {
570 LOG(INFO) << "LogicalBuffer count " << buffers->Allocations().size()
625 LOG(INFO) << "LogicalBuffer count " << buffers->Allocations().size()
    [all...]
buffer_assignment.h 74 // inside of a map or reduce computation. Such allocations need to be thread
270 // Returns the vector containing all buffer allocations in this assignment.
271 const std::vector<BufferAllocation>& Allocations() const {
330 // REQUIRES: BufferAssignment assigned allocations to both instructions.
414 // Mutable accessors for allocations.
418 // Combines allocations of temporary buffers into one big BufferAllocation.
424 // The vector of buffer allocations. Indexed by BufferAllocation::Index.
buffer_assignment.cc 348 // Combines allocations of temporary buffers of the same color into one big
354 // Move all temp allocations into a single run at the end of the allocations
362 // Walk over the run of temp allocations, collecting the allocations belonging
371 // the other temp allocations of the same color into it.
391 // Replace all existing temporary allocations with the new combined
392 // allocations.
413 for (auto& allocation : Allocations()) {
516 for (const BufferAllocation& allocation : Allocations()) {
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_jit_compiled_cpu_function.cc 55 const std::vector<xla::BufferAllocation>& allocations = local
56 buffer_assignment.Allocations();
58 temp_sizes.reserve(allocations.size());
59 for (const xla::BufferAllocation& allocation : allocations) {
  /prebuilts/go/darwin-x86/src/runtime/
mprof.go 18 // All memory allocations are local and do not escape outside of the profiler.
68 // of mark termination. Allocations count toward the next mark
276 // This is called by mark termination during STW so allocations and
479 // MemProfileRate controls the fraction of memory allocations
535 // This is to avoid skewing the profile toward allocations; because
536 // allocations happen in real time but frees are delayed until the garbage
537 // collector performs sweeping, the profile only accounts for allocations
  /prebuilts/go/linux-x86/src/runtime/
mprof.go 18 // All memory allocations are local and do not escape outside of the profiler.
68 // of mark termination. Allocations count toward the next mark
276 // This is called by mark termination during STW so allocations and
479 // MemProfileRate controls the fraction of memory allocations
535 // This is to avoid skewing the profile toward allocations; because
536 // allocations happen in real time but frees are delayed until the garbage
537 // collector performs sweeping, the profile only accounts for allocations

Completed in 467 milliseconds