Home
last modified time | relevance | path

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

/external/linux-tools-perf/scripts/perl/
Drw-by-file.pl34 $reads{$fd}{bytes_requested} += $count;
57 foreach my $fd (sort {$reads{$b}{bytes_requested} <=>
58 $reads{$a}{bytes_requested}} keys %reads) {
60 my $bytes_requested = $reads{$fd}{bytes_requested};
61 printf("%6u %10u %10u\n", $fd, $total_reads, $bytes_requested);
Drwtop.pl60 $reads{$common_pid}{bytes_requested} += $count;
136 my $bytes_requested = $reads{$pid}{bytes_requested} || 0;
140 $total_reads, $bytes_requested, $bytes_read);
Drw-by-pid.pl46 $reads{$common_pid}{bytes_requested} += $count;
86 my $bytes_requested = $reads{$pid}{bytes_requested} || 0;
90 $total_reads, $bytes_requested, $bytes_read);
/external/flac/libFLAC/
Dogg_decoder_aspect.c108 const size_t bytes_requested = *bytes; in FLAC__ogg_decoder_aspect_read_callback_wrapper() local
137 while (*bytes < bytes_requested && !aspect->end_of_stream) { in FLAC__ogg_decoder_aspect_read_callback_wrapper()
140 size_t n = bytes_requested - *bytes; in FLAC__ogg_decoder_aspect_read_callback_wrapper()
213 const size_t ogg_bytes_to_read = max(bytes_requested - *bytes, OGG_BYTES_CHUNK); in FLAC__ogg_decoder_aspect_read_callback_wrapper()