Home
last modified time | relevance | path

Searched refs:pageSize (Results 1 – 7 of 7) sorted by relevance

/hardware/google/aemu/base/
DSubAllocator_unittest.cpp53 for (size_t pageSize : pageSizesToTest) { in TEST() local
57 pageSize); in TEST()
68 pageSize * in TEST()
69 ((trySize + pageSize - 1) / pageSize); in TEST()
83 "pageSize " << pageSize << in TEST()
105 const size_t pageSize = 64; in TEST() local
113 (uint64_t)pageSize); in TEST()
115 const size_t fillCount = bufferSize / pageSize; in TEST()
120 void* ptr = subAlloc.alloc(pageSize); in TEST()
164 for (auto pageSize : pageSizesToTest) { in TEST() local
[all …]
DSubAllocator.cpp34 pageSize(_pageSize), in Impl()
76 stream->putBe64(pageSize); in save()
104 pageSize = stream->getBe64(); in load()
160 pageSize * in alloc()
161 ((wantedSize + pageSize - 1) / pageSize); in alloc()
180 pageSize * in allocFixed()
181 ((wantedSize + pageSize - 1) / pageSize); in allocFixed()
198 uint64_t pageSize; member in android::base::SubAllocator::Impl
208 uint64_t pageSize) : in SubAllocator() argument
210 new SubAllocator::Impl(buffer, totalSize, pageSize)) { } in SubAllocator()
/hardware/google/gfxstream/guest/android-emu/aemu/base/
DAndroidSubAllocator.cpp36 pageSize(_pageSize), in Impl()
78 stream->putBe64(pageSize); in save()
106 pageSize = stream->getBe64(); in load()
165 pageSize * in alloc()
166 ((wantedSize + pageSize - 1) / pageSize); in alloc()
186 uint64_t pageSize; member in gfxstream::guest::SubAllocator::Impl
196 uint64_t pageSize) : in SubAllocator() argument
198 new SubAllocator::Impl(buffer, totalSize, pageSize)) { } in SubAllocator()
DAndroidSubAllocator.h35 uint64_t pageSize);
/hardware/google/aemu/base/include/aemu/base/
DSubAllocator.h35 uint64_t pageSize);
/hardware/google/aemu/snapshot/include/snapshot/
Dcommon.h32 int32_t pageSize; member
/hardware/interfaces/graphics/mapper/4.0/vts/functional/
DVtsHalGraphicsMapperV4_0TargetTest.cpp2724 const int pageSize = getpagesize(); in TEST_P() local
2725 ASSERT_GE(pageSize, 0); in TEST_P()
2726 std::vector<uint64_t> requestedReservedSizes{1, 10, 333, static_cast<uint64_t>(pageSize) / 2, in TEST_P()
2727 static_cast<uint64_t>(pageSize)}; in TEST_P()
2756 const int pageSize = getpagesize(); in TEST_P() local
2757 ASSERT_GE(pageSize, 0); in TEST_P()
2758 std::vector<uint64_t> requestedReservedSizes{static_cast<uint64_t>(pageSize) * 2, in TEST_P()
2759 static_cast<uint64_t>(pageSize) * 10, in TEST_P()
2760 static_cast<uint64_t>(pageSize) * 1000}; in TEST_P()
2801 const int pageSize = getpagesize(); in TEST_P() local
[all …]