HomeSort by relevance Sort by last modified time
    Searched refs:BytesRemaining (Results 1 - 10 of 10) sorted by null

  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_nalu_unittest.cc 27 EXPECT_EQ(0u, reader.BytesRemaining());
38 EXPECT_EQ(arraysize(annex_b_test_data), reader.BytesRemaining());
42 EXPECT_EQ(0u, reader.BytesRemaining());
58 EXPECT_EQ(0u, reader.BytesRemaining());
76 EXPECT_EQ(arraysize(annex_b_test_data), reader.BytesRemaining());
80 EXPECT_EQ(6u, reader.BytesRemaining());
84 EXPECT_EQ(0u, reader.BytesRemaining());
96 EXPECT_EQ(0u, writer.BytesRemaining());
109 EXPECT_EQ(buffer_size, writer.BytesRemaining());
111 EXPECT_EQ(0u, writer.BytesRemaining());
    [all...]
h264_video_toolbox_nalu.h 61 size_t BytesRemaining() const;
88 size_t BytesRemaining() const;
h264_video_toolbox_nalu.cc 206 nullptr, nullptr, reader.BytesRemaining(), nullptr, nullptr, 0,
207 reader.BytesRemaining(), kCMBlockBufferAssureMemoryNowFlag,
243 RTC_DCHECK(block_buffer_size == reader.BytesRemaining());
248 while (reader.BytesRemaining() > 0) {
299 size_t AnnexBBufferReader::BytesRemaining() const {
336 if (data_size + kAvccHeaderByteSize > BytesRemaining()) {
349 size_t AvccBufferWriter::BytesRemaining() const {
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecDebug.c 314 UINTN BytesRemaining;
318 BytesRemaining = DataSize;
322 while (BytesRemaining > 0) {
324 BytesToPrint = (BytesRemaining > IPSEC_DEBUG_BYTE_PER_LINE) ? IPSEC_DEBUG_BYTE_PER_LINE : BytesRemaining;
331 BytesRemaining -= BytesToPrint;
  /external/llvm/lib/Support/
raw_ostream.cpp 320 size_t BytesRemaining = Size - BytesToWrite;
321 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
323 return write(Ptr + BytesToWrite, BytesRemaining);
325 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
raw_ostream.cpp 241 size_t BytesRemaining = Size - BytesToWrite;
242 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
244 return write(Ptr + BytesToWrite, BytesRemaining);
246 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);
  /external/llvm/tools/yaml2obj/
yaml2macho.cpp 222 auto BytesRemaining = LC.Data.load_command_data.cmdsize - BytesWritten;
223 if (BytesRemaining > 0) {
224 ZeroFillBytes(OS, BytesRemaining);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
TftpServer.c 50 || ( 0 == pContext->BytesRemaining )) {
57 if ( LengthInBytes > pContext->BytesRemaining ) {
58 LengthInBytes = pContext->BytesRemaining;
76 pContext->BytesRemaining -= BytesRead;
82 pContext->BytesRemaining ));
    [all...]
TftpServer.h 182 UINT64 BytesRemaining; ///< Number of bytes remaining to be sent
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 94 unsigned BytesRemaining = S.getSize();
103 while (BytesRemaining > 0) {
111 --BytesRemaining;
    [all...]

Completed in 193 milliseconds