Home
last modified time | relevance | path

Searched refs:totalSize (Results 1 – 4 of 4) sorted by relevance

/device/generic/opengl-transport/host/commands/emugen/tests/t.001/expected/encoder/
Dfoo_enc.cpp34 const size_t totalSize = sizeWithoutChecksum + checksumSize; in fooAlphaFunc_enc() local
35 buf = stream->alloc(totalSize); in fooAlphaFunc_enc()
38 memcpy(ptr, &totalSize, 4); ptr += 4; in fooAlphaFunc_enc()
61 const size_t totalSize = sizeWithoutChecksum + checksumSize; in fooIsBuffer_enc() local
62 buf = stream->alloc(totalSize); in fooIsBuffer_enc()
65 memcpy(ptr, &totalSize, 4); ptr += 4; in fooIsBuffer_enc()
102 const size_t totalSize = sizeWithoutChecksum + checksumSize; in fooDoEncoderFlush_enc() local
103 buf = stream->alloc(totalSize); in fooDoEncoderFlush_enc()
106 memcpy(ptr, &totalSize, 4); ptr += 4; in fooDoEncoderFlush_enc()
129 const size_t totalSize = sizeWithoutChecksum + checksumSize; in fooTakeConstVoidPtrConstPtr_enc() local
[all …]
/device/generic/opengl-transport/host/libs/virglrenderer/libOpenglRender/
DYUVConverter.cpp94 uint32_t totalSize, yStride, cStride, cHeight; in getPlanarYUVOffsets() local
97 totalSize = 0; in getPlanarYUVOffsets()
98 getYUVSizes(width, height, format, &totalSize, &yStride, &cStride, &cHeight); in getPlanarYUVOffsets()
382 uint32_t totalSize, yStride, cStride, cHeight; in YUVConverter() local
383 totalSize = 0; in YUVConverter()
384 getYUVSizes(width, height, mFormat, &totalSize, &yStride, &cStride, &cHeight); in YUVConverter()
/device/generic/goldfish/MultiDisplayProvider/jni/
Dcom_android_emulator_multidisplay.cpp50 uint32_t totalSize = size + 1; in fillMsg() local
51 uint8_t* p = (uint8_t*)&totalSize; in fillMsg()
/device/google/contexthub/firmware/os/core/
Dseos.c603 uint32_t totalSize; in osAppSegmentClose() local
604 uint8_t *start = platGetSharedAreaInfo(&totalSize); in osAppSegmentClose()
605 uint8_t *end = start + totalSize; in osAppSegmentClose()
614 if (osSegmentSizeAlignedWithFooter(segDataSize) + sizeof(struct Segment) > totalSize) in osAppSegmentClose()