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

  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
ScriptYuvMeans1d.java 23 import android.hardware.camera2.cts.rs.AllocationInfo.ElementInfo;
38 private static AllocationInfo createOutputInfo(AllocationInfo inputInfo) {
41 return AllocationInfo.newInstance(Element.U8_3(getRS()), UNIT_SQUARE);
44 public ScriptYuvMeans1d(AllocationInfo inputInfo) {
ScriptYuvMeans2dTo1d.java 25 import android.hardware.camera2.cts.rs.AllocationInfo.ElementInfo;
41 private static AllocationInfo createOutputInfo(AllocationInfo inputInfo) {
44 return AllocationInfo.newInstance(inputInfo.getElement(),
48 public ScriptYuvMeans2dTo1d(AllocationInfo inputInfo) {
AllocationInfo.java 37 * <p>Note that when creating a new {@link AllocationInfo} the usage flags <b>always</b> get ORd
40 public class AllocationInfo {
49 private static final String TAG = "AllocationInfo";
53 * Create a new {@link AllocationInfo} holding the element, size, and usage
58 * @return A new {@link AllocationInfo}
62 public static AllocationInfo newInstance(Allocation allocation) {
65 return new AllocationInfo(allocation.getElement(),
71 * Create a new {@link AllocationInfo} holding the specified format, {@link Size},
82 * @return A new {@link AllocationInfo} holding the given arguments.
89 public static AllocationInfo newInstance(Size size, int format, int usage)
    [all...]
ScriptYuvToRgb.java 22 import android.hardware.camera2.cts.rs.AllocationInfo.ElementInfo;
35 private static AllocationInfo createOutputInfo(AllocationInfo outputInfo) {
40 public ScriptYuvToRgb(AllocationInfo inputInfo) {
ScriptYuvCrop.java 25 import android.hardware.camera2.cts.rs.AllocationInfo.ElementInfo;
53 private static AllocationInfo createOutputInfo(AllocationInfo inputInfo,
74 return AllocationInfo.newInstance(Element.U8_3(getRS()), outputSize);
77 public ScriptYuvCrop(AllocationInfo inputInfo,
Script.java 38 * <li>{@code ScriptSubclass(AllocationInfo inputInfo)}
40 * <li>{@code ScriptSubclass(AllocationInfo inputInfo, ParameterMap<T> parameterMap))}
184 protected final AllocationInfo mInputInfo;
185 protected final AllocationInfo mOutputInfo;
194 * Gets the {@link AllocationInfo info} associated with this script's input.
196 * @return A non-{@code null} {@link AllocationInfo} object.
200 public AllocationInfo getInputInfo() {
206 * Gets the {@link AllocationInfo info} associated with this script's output.
208 * @return A non-{@code null} {@link AllocationInfo} object.
212 public AllocationInfo getOutputInfo()
    [all...]
ScriptGraph.java 472 AllocationInfo inputInfo = AllocationInfo.newInstance(mSize, mFormat, mUsage);
556 * <p>The {@link Script scriptClass} should have a {@code Script(AllocationInfo inputInfo)}
560 * {@code Script(AllocationInfo inputInfo, ParameterMap<T> parameterMap)} constructor.</p>
563 Class<T> scriptClass, AllocationInfo inputInfo, ParameterMap<T> parameterMap) {
569 // Script(AllocationInfo inputInfo)
570 ctor = scriptClass.getConstructor(AllocationInfo.class);
572 // Script(AllocationInfo inputInfo, ParameterMap<T> parameterMap)
573 ctor = scriptClass.getConstructor(AllocationInfo.class, ParameterMap.class);
  /art/runtime/gc/space/
large_object_space.h 34 class AllocationInfo;
206 size_t GetSlotIndexForAllocationInfo(const AllocationInfo* info) const;
207 AllocationInfo* GetAllocationInfoForAddress(uintptr_t address);
208 const AllocationInfo* GetAllocationInfoForAddress(uintptr_t address) const;
212 uintptr_t GetAddressForAllocationInfo(const AllocationInfo* info) const {
216 void RemoveFreePrev(AllocationInfo* info) REQUIRES(lock_);
222 bool operator()(const AllocationInfo* a, const AllocationInfo* b) const;
224 typedef std::set<AllocationInfo*, SortByPrevFree,
225 TrackingAllocator<AllocationInfo*, kAllocatorTagLOSFreeList>> FreeBlocks
    [all...]
large_object_space.cc 254 // allocation. Each allocation has an AllocationInfo which contains the size of the previous free
257 class AllocationInfo {
259 AllocationInfo() : prev_free_(0), alloc_size_(0) {
289 AllocationInfo* GetNextInfo() {
292 const AllocationInfo* GetNextInfo() const {
298 AllocationInfo* GetPrevFreeInfo() {
332 size_t FreeListSpace::GetSlotIndexForAllocationInfo(const AllocationInfo* info) const {
334 DCHECK_LT(info, reinterpret_cast<AllocationInfo*>(allocation_info_map_.End()));
338 AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) {
342 const AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) const
    [all...]
  /external/tensorflow/tensorflow/lite/
arena_planner.h 32 struct AllocationInfo;
102 std::vector<AllocationInfo> alloc_queue_;
arena_planner.cc 20 struct AllocationInfo {
83 alloc_queue_.push_back({node, tensor, AllocationInfo::ALLOC});
96 alloc_queue_.push_back({node, tensor, AllocationInfo::DEALLOC});
233 if (alloc_info.type == AllocationInfo::ALLOC) {
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp     [all...]
  /external/skia/third_party/vulkanmemoryallocator/include/
vk_mem_alloc.h     [all...]
  /external/skqp/third_party/vulkanmemoryallocator/include/
vk_mem_alloc.h     [all...]

Completed in 648 milliseconds