Searched refs:remaining_bytes (Results 1 – 13 of 13) sorted by relevance
95 uint64_t remaining_bytes = file_size; in Create() local96 while (remaining_bytes) { in Create()104 uint64_t chunk_size = std::min(max_piece_size, remaining_bytes); in Create()118 remaining_bytes = remaining_bytes > writer->size() ? (remaining_bytes - writer->size()) : 0; in Create()
118 std::vector<char> remaining_bytes; in TestParseCompleteUTF8() local120 &remaining_bytes); in TestParseCompleteUTF8()122 EXPECT_EQ(expected_remaining_bytes, remaining_bytes); in TestParseCompleteUTF8()
366 size_t ParseCompleteUTF8(const char* first, const char* last, std::vector<char>* remaining_bytes);
2443 std::vector<char>* const remaining_bytes) { in ParseCompleteUTF8() argument2462 remaining_bytes->insert(remaining_bytes->end(), current, last); in ParseCompleteUTF8()
266 uint64_t remaining_bytes = extent.num_sectors * LP_SECTOR_SIZE; in WriteExtent() local267 while (remaining_bytes) { in WriteExtent()268 if (remaining_bytes < block_size_) { in WriteExtent()279 remaining_bytes -= block_size_; in WriteExtent()
47 while (dataProvider.remaining_bytes() > 0) { in LLVMFuzzerTestOneInput()
46 while (dataProvider.remaining_bytes() > 0) { in LLVMFuzzerTestOneInput()
87 } while (data_provider.remaining_bytes() > 0); in FuzzDeltaPerformer()
63 while (dataProvider.remaining_bytes() > 0 && opsRun++ < MAX_OPERATIONS) { in LLVMFuzzerTestOneInput()
114 while (dataProvider.remaining_bytes() > 0 && opsRun++ < MAX_OPERATIONS) { in LLVMFuzzerTestOneInput()
126 while (dataProvider.remaining_bytes() > 0 && opsRun++ < MAX_OPERATIONS) { in LLVMFuzzerTestOneInput()
1241 uint64_t remaining_bytes = compressed_length; in Inflate() local1247 (remaining_bytes > kBufSize) ? kBufSize : static_cast<uint32_t>(remaining_bytes); in Inflate()1248 const off64_t offset = (compressed_length - remaining_bytes); in Inflate()1255 remaining_bytes -= read_size; in Inflate()1296 if (total_output != uncompressed_length || remaining_bytes != 0) { in Inflate()
199 if (size_t remaining_bytes = header.header_size - sizeof(LpMetadataHeaderV1_0)) { in ReadMetadataHeader() local201 if (!reader->ReadFully(offset, remaining_bytes)) { in ReadMetadataHeader()