/external/linux-tools-perf/src/tools/perf/scripts/perl/ |
D | rw-by-pid.pl | 21 my %reads; 31 $reads{$common_pid}{bytes_read} += $ret; 33 if (!defined ($reads{$common_pid}{bytes_read})) { 34 $reads{$common_pid}{bytes_read} = 0; 36 $reads{$common_pid}{errors}{$ret}++; 46 $reads{$common_pid}{bytes_requested} += $count; 47 $reads{$common_pid}{total_reads}++; 48 $reads{$common_pid}{comm} = $common_comm; 82 foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=> 83 ($reads{$a}{bytes_read} || 0) } keys %reads) { [all …]
|
D | rwtop.pl | 27 my %reads; 44 $reads{$common_pid}{bytes_read} += $ret; 46 if (!defined ($reads{$common_pid}{bytes_read})) { 47 $reads{$common_pid}{bytes_read} = 0; 49 $reads{$common_pid}{errors}{$ret}++; 61 $reads{$common_pid}{bytes_requested} += $count; 62 $reads{$common_pid}{total_reads}++; 63 $reads{$common_pid}{comm} = $common_comm; 136 foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=> 137 ($reads{$a}{bytes_read} || 0) } keys %reads) { [all …]
|
D | rw-by-file.pl | 25 my %reads; 34 $reads{$fd}{bytes_requested} += $count; 35 $reads{$fd}{total_reads}++; 57 foreach my $fd (sort {$reads{$b}{bytes_requested} <=> 58 $reads{$a}{bytes_requested}} keys %reads) { 59 my $total_reads = $reads{$fd}{total_reads}; 60 my $bytes_requested = $reads{$fd}{bytes_requested};
|
/external/pdfium/third_party/freetype/src/base/ |
D | ftstream.c | 490 FT_Byte reads[2]; in FT_Stream_ReadUShort() local 503 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L ) in FT_Stream_ReadUShort() 506 p = reads; in FT_Stream_ReadUShort() 537 FT_Byte reads[2]; in FT_Stream_ReadUShortLE() local 550 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L ) in FT_Stream_ReadUShortLE() 553 p = reads; in FT_Stream_ReadUShortLE() 584 FT_Byte reads[3]; in FT_Stream_ReadUOffset() local 597 if (stream->read( stream, stream->pos, reads, 3L ) != 3L ) in FT_Stream_ReadUOffset() 600 p = reads; in FT_Stream_ReadUOffset() 631 FT_Byte reads[4]; in FT_Stream_ReadULong() local [all …]
|
/external/freetype/src/base/ |
D | ftstream.c | 492 FT_Byte reads[2]; in FT_Stream_ReadUShort() local 505 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L ) in FT_Stream_ReadUShort() 508 p = reads; in FT_Stream_ReadUShort() 537 FT_Byte reads[2]; in FT_Stream_ReadUShortLE() local 550 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L ) in FT_Stream_ReadUShortLE() 553 p = reads; in FT_Stream_ReadUShortLE() 582 FT_Byte reads[3]; in FT_Stream_ReadUOffset() local 595 if (stream->read( stream, stream->pos, reads, 3L ) != 3L ) in FT_Stream_ReadUOffset() 598 p = reads; in FT_Stream_ReadUOffset() 627 FT_Byte reads[4]; in FT_Stream_ReadULong() local [all …]
|
/external/bison/src/ |
D | lalr.c | 161 goto_number **reads = xnmalloc (ngotos, sizeof *reads); in initialize_F() local 186 reads[i] = NULL; in initialize_F() 189 reads[i] = xnmalloc (nedges + 1, sizeof reads[i][0]); in initialize_F() 190 memcpy (reads[i], edge, nedges * sizeof edge[0]); in initialize_F() 191 reads[i][nedges] = END_NODE; in initialize_F() 196 relation_digraph (reads, ngotos, &goto_follows); in initialize_F() 199 free (reads[i]); in initialize_F() 201 free (reads); in initialize_F()
|
/external/fio/t/jobs/ |
D | t0008-ae2fafc8.fio | 1 # Expected result: fio writes 16MB, reads 16+16MB 2 # Buggy result: fio writes 16MB, reads ~21MB
|
D | t0007-37cf9e3c.fio | 1 # Expected result: fio reads 87040KB of data 2 # Buggy result: fio reads the full 128MB of data
|
D | t0005-f7078f7b.fio | 1 # Expected result: fio reads and writes 100m 2 # Buggy result: fio reads and writes ~100m/2
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ComputingConcurrentHashMapTest.java | 129 List<ReferenceEntry<Object, Object>> reads = Lists.newArrayList(); in testRecordReadOnCompute() local 135 reads.add(entry); in testRecordReadOnCompute() 140 int undrainedIndex = reads.size() - segment.recencyQueue.size(); in testRecordReadOnCompute() 141 checkAndDrainRecencyQueue(map, segment, reads.subList(undrainedIndex, reads.size())); in testRecordReadOnCompute() 142 readOrder.addAll(reads); in testRecordReadOnCompute()
|
/external/llvm/lib/CodeGen/ |
D | CalcSpillWeights.cpp | 136 bool reads, writes; in calculateSpillWeightAndHint() local 137 std::tie(reads, writes) = mi->readsWritesVirtualRegister(li.reg); in calculateSpillWeightAndHint() 139 writes, reads, &MBFI, mi); in calculateSpillWeightAndHint()
|
/external/fio/profiles/ |
D | act.c | 185 static int act_add_rw(const char *dev, int reads) in act_add_rw() argument 187 if (act_add_opt("name=act-%s-%s", reads ? "read" : "write", dev)) in act_add_rw() 191 if (act_add_opt("rw=%s", reads ? "randread" : "randwrite")) in act_add_rw() 193 if (reads) { in act_add_rw()
|
/external/llvm/lib/Target/R600/ |
D | CaymanInstructions.td | 201 // 8-bit reads 210 // 32-bit reads 215 // 64-bit reads 220 // 128-bit reads
|
/external/llvm/docs/CommandGuide/ |
D | llvm-as.rst | 12 **llvm-as** is the LLVM assembler. It reads a file containing human-readable 16 If *filename* is omitted or is ``-``, then **llvm-as** reads its input from
|
D | llvm-symbolizer.rst | 12 :program:`llvm-symbolizer` reads object file names and addresses from standard 14 If object file is specified in command line, :program:`llvm-symbolizer` reads
|
/external/strace/ |
D | quota.c | 210 u_int32_t reads; member 222 u_int32_t reads; member 443 tprintf("reads=%u, ", dq.reads); in decode_cmd_data() 465 tprintf("reads=%u, ", dq.reads); in decode_cmd_data()
|
/external/valgrind/memcheck/tests/ |
D | mempool2.stderr.exp | 2 ------ out of range reads in malloc-backed pool ------ 21 ------ out of range reads in mmap-backed pool ------
|
/external/valgrind/ |
D | exp-sgcheck.supp | 17 I think this is glibc's ultra optimised getenv doing 2 byte reads
|
/external/llvm/test/Instrumentation/ThreadSanitizer/ |
D | vptr_read.ll | 2 ; Check that vptr reads are treated in a special way.
|
/external/openssh/ |
D | OVERVIEW | 94 reads Passwords/passphrases using code in readpass.c. It reads 101 and reads configuration (readconf.c), then calls ssh_connect (in 138 configuration file (servconf.c). It then reads the host key,
|
/external/libvorbis/doc/ |
D | 03-codebook.tex | 77 The decoder first reads one additional bit flag, the 117 a length for every codeword, the encoder reads the number of 136 After all codeword lengths have been decoded, the decoder reads the 161 number of lookup values to be read. Lookup type one reads a list of 164 type two builds the same vector list, but reads each scalar for each 373 bit-unpacking convention; a specific codebook reads a 391 reads bits until the accumulated bits match a codeword in the
|
/external/fio/ |
D | iolog.c | 334 int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */ in read_iolog2() local 349 reads = writes = waits = 0; in read_iolog2() 401 reads++; in read_iolog2() 448 if (!reads && !writes && !waits) in read_iolog2() 450 else if (reads && !writes) in read_iolog2() 452 else if (!reads && writes) in read_iolog2()
|
/external/llvm/test/Other/ |
D | extract.ll | 7 ; llvm-extract uses lazy bitcode loading, so make sure it correctly reads
|
/external/llvm/test/CodeGen/R600/ |
D | lds-output-queue.ll | 34 ; This is a problem for scheduling the reads from the local data share (lds). 35 ; These reads are implemented using two instructions. The first copies the
|
/external/fio/examples/ |
D | ssd-test.fio | 5 # high. Random reads should also be fast, random writes are where crap
|