Home
last modified time | relevance | path

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

/frameworks/av/services/camera/virtualcamera/tests/
DJpegUtilTest.cc158 std::optional<size_t> compressedSize = compress(640, 480, inBuffer); in TEST_F() local
160 EXPECT_THAT(compressedSize, Optional(Gt(0))); in TEST_F()
162 compressedSize.value()), in TEST_F()
170 std::optional<size_t> compressedSize = compress(630, 470, inBuffer); in TEST_F() local
172 EXPECT_THAT(compressedSize, Optional(Gt(0))); in TEST_F()
174 compressedSize.value()), in TEST_F()
182 std::optional<size_t> compressedSize = compress(640, 480, inBuffer); in TEST_F() local
184 EXPECT_THAT(compressedSize, Eq(std::nullopt)); in TEST_F()
191 std::optional<size_t> compressedSize = compress(640, 480, inBuffer); in TEST_F() local
193 EXPECT_THAT(compressedSize, Eq(std::nullopt)); in TEST_F()
/frameworks/multidex/library/test/src/androidx/multidex/
DZipEntryReader.java70 long compressedSize = ((long) in.getInt()) & 0xffffffffL; in readEntry() local
90 entry.setCompressedSize(compressedSize); in readEntry()
/frameworks/av/services/camera/virtualcamera/
DVirtualCameraRenderThread.cc698 std::optional<size_t> compressedSize = in createThumbnail() local
702 if (!compressedSize.has_value()) { in createThumbnail()
706 compressedThumbnail.resize(compressedSize.value()); in createThumbnail()
763 std::optional<size_t> compressedSize = compressJpeg( in renderIntoBlobStreamBuffer() local
768 if (!compressedSize.has_value()) { in renderIntoBlobStreamBuffer()
775 .blobSizeBytes = static_cast<int32_t>(compressedSize.value())}; in renderIntoBlobStreamBuffer()
782 __func__, compressedSize.value()); in renderIntoBlobStreamBuffer()