Home
last modified time | relevance | path

Searched refs:sizeBytes (Results 1 – 17 of 17) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/
Dsession_info.cc149 length += (*it).sizeBytes; in SessionLength()
165 offset += (*it).sizeBytes; in InsertBuffer()
183 while (nalu_ptr < packet_buffer + packet.sizeBytes) { in InsertBuffer()
192 while (nalu_ptr < packet_buffer + packet.sizeBytes) { in InsertBuffer()
199 packet.sizeBytes = required_length; in InsertBuffer()
200 return packet.sizeBytes; in InsertBuffer()
203 packet_it, packet.sizeBytes + in InsertBuffer()
206 packet.sizeBytes = in InsertBuffer()
207 Insert(packet_buffer, packet.sizeBytes, packet.insertStartCode, in InsertBuffer()
209 return packet.sizeBytes; in InsertBuffer()
[all …]
Dpacket.cc25 sizeBytes(0), in VCMPacket()
44 sizeBytes(size), in VCMPacket()
68 sizeBytes(size), in VCMPacket()
86 sizeBytes = 0; in Reset()
Dframe_buffer.cc88 assert(!(NULL == packet.dataPtr && packet.sizeBytes > 0)); in InsertPacket()
107 Length() + packet.sizeBytes + in InsertPacket()
130 if (packet.sizeBytes > 0) in InsertPacket()
Dpacket.h40 size_t sizeBytes; variable
Ddecoding_state_unittest.cc185 packet.sizeBytes = 0; in TEST()
192 packet.sizeBytes = 1400; in TEST()
200 packet.sizeBytes = 0; in TEST()
457 packet.sizeBytes = sizeof(data); in TEST()
500 packet.sizeBytes = sizeof(data); in TEST()
555 packet.sizeBytes = sizeof(data); in TEST()
Dsession_info_unittest.cc28 packet_.sizeBytes = packet_buffer_size(); in SetUp()
152 packet_.sizeBytes = packet_buffer_size(); in TEST_F()
176 packet_.sizeBytes = 0; in TEST_F()
860 packet_.sizeBytes = 0; in TEST_F()
Djitter_buffer.cc675 if (packet.sizeBytes > 0) { in InsertPacket()
723 waiting_for_completion_.frame_size += packet.sizeBytes; in InsertPacket()
749 incoming_bit_count_ += packet.sizeBytes << 3; in InsertPacket()
Djitter_buffer_unittest.cc1964 CheckOutFrame(frame_out, packet_->sizeBytes * 2, false); in TEST_F()
1980 insertedLength += packet_->sizeBytes; // This packet should be decoded. in TEST_F()
1991 insertedLength += packet_->sizeBytes; // This packet should be decoded. in TEST_F()
2002 insertedLength += packet_->sizeBytes; // This packet should be decoded. in TEST_F()
2013 insertedLength += packet_->sizeBytes; in TEST_F()
2078 CheckOutFrame(frame_out, packet_->sizeBytes, false); in TEST_F()
2119 CheckOutFrame(frame_out, packet_->sizeBytes, false); in TEST_F()
/external/conscrypt/testing/src/main/java/libcore/tlswire/util/
DIoUtils.java25 int sizeBytes = readTlsVariableLengthVectorSizeBytes(in, maxSizeBytes); in readTlsVariableLengthByteVector() local
26 byte[] result = new byte[sizeBytes]; in readTlsVariableLengthByteVector()
32 int sizeBytes = readTlsVariableLengthVectorSizeBytes(in, maxSizeBytes); in readTlsVariableLengthUnsignedShortVector() local
33 int elementCount = sizeBytes / 2; in readTlsVariableLengthUnsignedShortVector()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DBaseDescriptor.java42 int sizeBytes; field in BaseDescriptor
54 + sizeBytes; in getSize()
62 return sizeBytes; in getSizeBytes()
78 sizeBytes = i; in parse()
/external/brotli/java/org/brotli/dec/
DDecode.java90 int sizeBytes = BitReader.readBits(br, 2); in decodeMetaBlockLength() local
91 if (sizeBytes == 0) { in decodeMetaBlockLength()
94 for (int i = 0; i < sizeBytes; i++) { in decodeMetaBlockLength()
96 if (bits == 0 && i + 1 == sizeBytes && sizeBytes > 1) { in decodeMetaBlockLength()
/external/webrtc/webrtc/modules/video_coding/test/
Dstream_generator.cc67 packet.sizeBytes = size; in GeneratePacket()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp889 VkDeviceSize sizeBytes = sizeInBlocks[0] * sizeInBlocks[1] * sizeInBlocks[2] * blockBytes; in getCompressedImageSizeInBytes() local
891 return sizeBytes; in getCompressedImageSizeInBytes()
897 const VkDeviceSize sizeBytes = getImageSizeBytes(sizeAsIVec3, format); in getUncompressedImageSizeInBytes() local
899 return sizeBytes; in getUncompressedImageSizeInBytes()
DvktImageTranscodingSupportTests.cpp493 VkDeviceSize sizeBytes = getImageSizeBytes(sizeAsIVec3, format); in getUncompressedImageData() local
495 data.resize((size_t)sizeBytes); in getUncompressedImageData()
498 return sizeBytes; in getUncompressedImageData()
DvktImageCompressionTranscodingSupport.cpp1804 VkDeviceSize sizeBytes = getCompressedImageSizeInBytes(format, size); in getCompressedImageData() local
1806 data.resize((size_t)sizeBytes); in getCompressedImageData()
1809 return sizeBytes; in getCompressedImageData()
1819 VkDeviceSize sizeBytes = getImageSizeBytes(sizeAsIVec3, format); in getUncompressedImageData() local
1821 data.resize((size_t)sizeBytes); in getUncompressedImageData()
1824 return sizeBytes; in getUncompressedImageData()
/external/deqp/modules/glshared/
DglsLongStressCase.cpp635 void setSubData (const void* src, int offsetBytes, int sizeBytes, deUint32 target) const;
641 …int getApproxMemUsageDiff (const int sizeBytes) const { return sizeBytes - getApproxMemUsage()… in getApproxMemUsageDiff()
673 void Buffer::setSubData (const void* const src, const int offsetBytes, const int sizeBytes, const d… in setSubData() argument
676 glBufferSubData(target, offsetBytes, sizeBytes, src); in setSubData()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationOperation.cpp273 VkExtent3D get2DImageExtentWithSize (const VkDeviceSize sizeBytes, const deUint32 pixelSize) in get2DImageExtentWithSize() argument
275 const deUint32 size = static_cast<deUint32>(sizeBytes / pixelSize); in get2DImageExtentWithSize()