Home
last modified time | relevance | path

Searched refs:alignedSize (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/tests/benchmark/src/native/decoder/
DC2Decoder.cpp109 int alignedSize = ALIGN(size, getpagesize()); in decodeFrames() local
113 alignedSize, {C2MemoryUsage::CPU_READ, C2MemoryUsage::CPU_WRITE}, &block); in decodeFrames()
/frameworks/base/ravenwood/runtime-helper-src/framework/com/android/platform/test/ravenwood/nativesubstitution/
DParcel_host.java196 final var alignedSize = align4(len); in nativeWriteBlob() local
200 p.ensureMoreCapacity(alignedSize); in nativeWriteBlob()
203 p.mPos += alignedSize; in nativeWriteBlob()
/frameworks/base/libs/androidfw/
DCursorWindow.cpp325 size_t alignedSize = (size + 3) & ~3; in alloc() local
326 size_t newOffset = mAllocOffset + alignedSize; in alloc()
329 newOffset = mAllocOffset + alignedSize; in alloc()
/frameworks/av/media/codec2/fuzzer/
DC2Fuzzer.cpp274 int32_t alignedSize = C2FUZZER_ALIGN(frameSize, kPageSize); in decodeFrames() local
278 alignedSize, {C2MemoryUsage::CPU_READ, C2MemoryUsage::CPU_WRITE}, &block); in decodeFrames()
/frameworks/av/media/codec2/hal/hidl/1.0/vts/functional/video/
DVtsHalMediaC2V1_0TargetVideoDecTest.cpp504 auto alignedSize = ALIGN(size, kPageSize); in decodeNFrames() local
508 alignedSize, in decodeNFrames()
518 ASSERT_EQ((size_t)alignedSize, view.capacity()); in decodeNFrames()
520 ASSERT_EQ((size_t)alignedSize, view.size()); in decodeNFrames()
/frameworks/av/media/libstagefright/
DACodec.cpp952 size_t alignedSize = align(bufSize, alignment); in allocateBuffersOnPort() local
954 if (def.nBufferCountActual > SIZE_MAX / (alignedSize + alignedConvSize)) { in allocateBuffersOnPort()