Searched refs:bytes_wrote (Results 1 – 5 of 5) sorted by relevance
334 uint64_t bytes_wrote = 0; in Write() local335 while (bytes_wrote < length) { in Write()344 length - bytes_wrote); in Write()345 TEST_AND_RETURN_FALSE(stream_->Write(bytes + bytes_wrote, copy_len)); in Write()346 bytes_wrote += copy_len; in Write()359 last_byte_ |= bytes[bytes_wrote++] << (deflate_bit_pos_ & 7); in Write()366 auto copy_len = std::min(length - bytes_wrote, in Write()369 memcpy(puff_buffer_->data() + skip_bytes_, bytes + bytes_wrote, copy_len); in Write()371 bytes_wrote += copy_len; in Write()426 TEST_AND_RETURN_FALSE(bytes_wrote == length); in Write()
78 auto bytes_wrote = in Write() local80 TEST_AND_RETURN_FALSE(bytes_wrote >= 0); in Write()81 total_bytes_wrote += bytes_wrote; in Write()
265 uint64_t bytes_wrote = 0; in main() local266 while (bytes_wrote < dst_puff_size) { in main()268 dst_puff_size - bytes_wrote); in main()271 bytes_wrote += write_size; in main()
478 update_info.bytes_wrote = 0xAA; in ALA_update_seq_handler()482 update_info.bytes_wrote = 0x55; in ALA_update_seq_handler()797 if(Os_info->bytes_wrote == 0xAA) in ALA_loadapplet()1022 if(Os_info->bytes_wrote == 0xAA) in ALA_loadapplet()1034 if(Os_info->bytes_wrote == 0xAA) in ALA_loadapplet()2348 if((image_info->bytes_wrote == 0x55)||(tType == LS_Default)) in Write_Response_To_OutFile()
50 int bytes_wrote; member