Home
last modified time | relevance | path

Searched refs:trySize (Results 1 – 3 of 3) sorted by relevance

/hardware/google/aemu/base/
DSubAllocator_unittest.cpp65 size_t trySize = allocSize / allocCount; in TEST() local
69 ((trySize + pageSize - 1) / pageSize); in TEST()
75 void* ptr = subAlloc.alloc(trySize); in TEST()
81 (trySize == 0) || in TEST()
85 "trySize " << trySize << in TEST()
/hardware/google/gfxstream/guest/GoldfishAddressSpace/include/
DAddressSpaceStream.h57 ssize_t speculativeRead(unsigned char* readBuffer, size_t trySize);
/hardware/google/gfxstream/guest/GoldfishAddressSpace/
DAddressSpaceStream.cpp398 ssize_t AddressSpaceStream::speculativeRead(unsigned char* readBuffer, size_t trySize) { in speculativeRead() argument
417 uint32_t toRead = readAvail > trySize ? trySize : readAvail; in speculativeRead()