Searched refs:getFlattenedSize (Results 1 - 25 of 48) sorted by relevance

12

/frameworks/native/include/ui/
H A DFrameStats.h57 size_t getFlattenedSize() const;
H A DHdrCapabilities.h59 size_t getFlattenedSize() const;
H A DFence.h131 size_t getFlattenedSize() const;
/frameworks/native/libs/ui/include/ui/
H A DFrameStats.h57 size_t getFlattenedSize() const;
H A DHdrCapabilities.h59 size_t getFlattenedSize() const;
H A DFence.h131 size_t getFlattenedSize() const;
/frameworks/native/libs/ui/
H A DFrameStats.cpp25 size_t FrameStats::getFlattenedSize() const { function in class:android::FrameStats
35 if (size < getFlattenedSize()) {
H A DHdrCapabilities.cpp31 size_t HdrCapabilities::getFlattenedSize() const { function in class:android::HdrCapabilities
41 if (size < getFlattenedSize()) {
H A DFence.cpp140 size_t Fence::getFlattenedSize() const { function in class:android::Fence
149 if (size < getFlattenedSize() || count < getFdCount()) {
168 if (size < getFlattenedSize()) {
H A DFenceTime.cpp210 size_t FenceTime::Snapshot::getFlattenedSize() const { function in class:android::FenceTime::Snapshot
216 return min + fence->getFlattenedSize();
229 if (size < getFlattenedSize()) {
/frameworks/native/libs/gui/
H A DBufferItem.cpp90 size_t BufferItem::getFlattenedSize() const { function in class:android::BufferItem
93 size += mGraphicBuffer->getFlattenedSize();
97 size += mFence->getFlattenedSize();
100 size += mSurfaceDamage.getFlattenedSize();
126 if (size < BufferItem::getFlattenedSize()) {
152 FlattenableUtils::advance(buffer, size, mSurfaceDamage.getFlattenedSize());
213 FlattenableUtils::advance(buffer, size, mSurfaceDamage.getFlattenedSize());
H A DFrameTimestamps.cpp526 size_t FrameEventsDelta::getFlattenedSize() const { function in class:android::FrameEventsDelta
531 return a + fence->getFlattenedSize();
545 if (size < getFlattenedSize() || count < getFdCount()) {
640 size_t FrameEventHistoryDelta::getFlattenedSize() const {
644 return a + delta.getFlattenedSize();
660 if (size < getFlattenedSize()) {
/frameworks/native/include/gui/
H A DBufferItem.h37 size_t getFlattenedSize() const;
H A DIGraphicBufferProducer.h349 size_t getFlattenedSize() const;
382 size_t getFlattenedSize() const;
/frameworks/native/libs/gui/include/gui/
H A DBufferItem.h37 size_t getFlattenedSize() const;
H A DIGraphicBufferProducer.h349 size_t getFlattenedSize() const;
382 size_t getFlattenedSize() const;
/frameworks/native/opengl/libs/EGL/
H A DBlobCache_test.cpp283 size_t size = mBC->getFlattenedSize();
331 size_t size = mBC->getFlattenedSize();
353 size_t size = mBC->getFlattenedSize() - 1;
356 // TODO: The above fails. I expect this is so because getFlattenedSize()
365 size_t size = mBC->getFlattenedSize();
382 size_t size = mBC->getFlattenedSize();
401 size_t size = mBC->getFlattenedSize();
420 size_t size = mBC->getFlattenedSize();
426 // TODO: The above appears to fail because getFlattenedSize() is
H A DBlobCache.h79 // getFlattenedSize returns the number of bytes needed to store the entire
81 size_t getFlattenedSize() const;
89 // size >= this.getFlattenedSize()
/frameworks/native/libs/gui/bufferqueue/1.0/
H A DH2BGraphicBufferProducer.cpp304 size_t const baseSize = l.getFlattenedSize();
535 size_t const baseSize = l.getFlattenedSize();
577 inline size_t getFlattenedSize( function in namespace:android::hardware::graphics::bufferqueue::V1_0::utils
623 if (size < getFlattenedSize(t)) {
678 inline size_t getFlattenedSize( function in namespace:android::hardware::graphics::bufferqueue::V1_0::utils
681 getFlattenedSize(t.gpuCompositionDoneFence) +
682 getFlattenedSize(t.displayPresentFence) +
683 getFlattenedSize(t.displayRetireFence) +
684 getFlattenedSize(t.releaseFence);
780 inline size_t getFlattenedSize( function in namespace:android::hardware::graphics::bufferqueue::V1_0::utils
[all...]
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
H A DConversion.h947 * functions: `getFlattenedSize()` and `getFdCount()`. `getFlattenedSize()` will
952 * The set of these four functions, `getFlattenedSize()`, `getFdCount()`,
1088 size_t const baseSize = l.getFlattenedSize();
1194 inline size_t getFlattenedSize( function in namespace:android::hardware::media::omx::V1_0::implementation
1238 if (size < getFlattenedSize(t)) {
1333 inline size_t getFlattenedSize( function in namespace:android::hardware::media::omx::V1_0::implementation
1336 getFlattenedSize(t.gpuCompositionDoneFence) +
1337 getFlattenedSize(t.displayPresentFence) +
1338 getFlattenedSize(
1492 inline size_t getFlattenedSize( function in namespace:android::hardware::media::omx::V1_0::implementation
1701 inline size_t getFlattenedSize(Region const& t) { function in namespace:android::hardware::media::omx::V1_0::implementation
1862 inline size_t getFlattenedSize(HGraphicBufferProducer::QueueBufferInput const& t) { function in namespace:android::hardware::media::omx::V1_0::implementation
[all...]
/frameworks/native/libs/sensor/include/sensor/
H A DSensor.h109 size_t getFlattenedSize() const;
/frameworks/native/libs/sensor/tests/
H A DSensor_test.cpp81 std::vector<uint8_t> buffer(sensor1.getFlattenedSize());
/frameworks/ml/nn/driver/cache/BlobCache/
H A DBlobCache_test.cpp515 size_t size = mBC->getFlattenedSize();
573 size_t size = mBC->getFlattenedSize();
595 size_t size = mBC->getFlattenedSize() - 1;
598 // TODO: The above fails. I expect this is so because getFlattenedSize()
607 size_t size = mBC->getFlattenedSize();
624 size_t size = mBC->getFlattenedSize();
643 size_t size = mBC->getFlattenedSize();
662 size_t size = mBC->getFlattenedSize();
668 // TODO: The above appears to fail because getFlattenedSize() is
H A DBlobCache.h140 // getFlattenedSize returns the number of bytes needed to store the entire
142 size_t getFlattenedSize() const;
150 // size >= this.getFlattenedSize()
/frameworks/av/include/private/media/
H A DVideoFrame.h101 // a chunk of memory back by IMemory of size at least getFlattenedSize()
120 size_t getFlattenedSize() const { function in class:android::VideoFrame

Completed in 271 milliseconds

12