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

  /external/chromium_org/base/memory/
discardable_memory_manager.h 123 struct AllocationInfo {
124 explicit AllocationInfo(size_t bytes) : bytes(bytes), purgable(false) {}
130 typedef HashingMRUCache<Allocation*, AllocationInfo> AllocationMap;
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
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...]
  /art/runtime/gc/space/
large_object_space.cc 197 class AllocationInfo {
199 AllocationInfo() : prev_free_(0), alloc_size_(0) {
218 AllocationInfo* GetNextInfo() {
221 const AllocationInfo* GetNextInfo() const {
227 AllocationInfo* GetPrevFreeInfo() {
250 // Used to implement best fit object allocation. Each allocation has an AllocationInfo which
262 size_t FreeListSpace::GetSlotIndexForAllocationInfo(const AllocationInfo* info) const {
264 DCHECK_LT(info, reinterpret_cast<AllocationInfo*>(allocation_info_map_->End()));
268 AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) {
272 const AllocationInfo* FreeListSpace::GetAllocationInfoForAddress(uintptr_t address) const
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp     [all...]
  /external/chromium_org/v8/src/heap/
spaces.h 96 class AllocationInfo;
    [all...]

Completed in 223 milliseconds