Home
last modified time | relevance | path

Searched refs:writes (Results 1 – 25 of 327) sorted by relevance

12345678910>>...14

/external/linux-tools-perf/src/tools/perf/scripts/perl/
Drw-by-pid.pl22 my %writes;
58 $writes{$common_pid}{errors}{$ret}++;
68 $writes{$common_pid}{bytes_written} += $count;
69 $writes{$common_pid}{total_writes}++;
70 $writes{$common_pid}{comm} = $common_comm;
123 foreach my $pid (sort { ($writes{$b}{bytes_written} || 0) <=>
124 ($writes{$a}{bytes_written} || 0)} keys %writes) {
125 my $comm = $writes{$pid}{comm} || "";
126 my $total_writes = $writes{$pid}{total_writes} || 0;
127 my $bytes_written = $writes{$pid}{bytes_written} || 0;
[all …]
Drwtop.pl28 my %writes;
75 $writes{$common_pid}{errors}{$ret}++;
87 $writes{$common_pid}{bytes_written} += $count;
88 $writes{$common_pid}{total_writes}++;
89 $writes{$common_pid}{comm} = $common_comm;
160 foreach my $pid (sort { ($writes{$b}{bytes_written} || 0) <=>
161 ($writes{$a}{bytes_written} || 0)} keys %writes) {
162 my $comm = $writes{$pid}{comm} || "";
163 my $total_writes = $writes{$pid}{total_writes} || 0;
164 my $bytes_written = $writes{$pid}{bytes_written} || 0;
[all …]
Drw-by-file.pl26 my %writes;
45 $writes{$fd}{bytes_written} += $count;
46 $writes{$fd}{total_writes}++;
69 foreach my $fd (sort {$writes{$b}{bytes_written} <=>
70 $writes{$a}{bytes_written}} keys %writes) {
71 my $total_writes = $writes{$fd}{total_writes};
72 my $bytes_written = $writes{$fd}{bytes_written};
/external/llvm/test/MC/Mips/
Dmips-reginfo-fp32.s25 # abs.s - Reads and writes from/to $f0.
27 # round.w.d - Reads $f4 and $f5 and writes to $f2.
29 # ceil.w.s - Reads $f8 and writes to $f10.
31 # cvt.s.d - Reads from $f12 and $f13 and writes to $f14
33 # abs.d - Reads from $f30 and $f31 and writes to $f30 and $f31.
Dmips-reginfo-fp64.s47 # abs.s - Reads and writes from/to $f0.
49 # round.w.d - Reads $f4 and writes to $f2.
51 # ceil.w.s - Reads $f8 and writes to $f10.
53 # cvt.s.d - Reads from $f12 and writes to $f14.
55 # abs.d - Reads from $f30 and writes to $f30.
/external/deqp/doc/testspecs/GLES3/
Dfunctional.occlusion_query.txt27 - Depth writes and clears
28 - Stencil writes and clears
40 boxes, depth writes/clears or stencil writes/clears. Second, a number of
Dfunctional.rasterizer_discard.txt27 - Color clears & writes
28 - Depth clears & writes
29 - Stencil clears & writes
/external/fio/t/jobs/
Dt0008-ae2fafc8.fio1 # Expected result: fio writes 16MB, reads 16+16MB
2 # Buggy result: fio writes 16MB, reads ~21MB
Dt0005-f7078f7b.fio1 # Expected result: fio reads and writes 100m
2 # Buggy result: fio reads and writes ~100m/2
/external/llvm/bindings/ocaml/bitwriter/
Dllvm_bitwriter.mli15 (** [write_bitcode_file m path] writes the bitcode for module [m] to the file at
21 (** [write_bitcode_to_fd ~unbuffered fd m] writes the bitcode for module
34 (** [output_bitcode ~unbuffered c m] writes the bitcode for module [m]
/external/llvm/lib/CodeGen/
DCalcSpillWeights.cpp136 bool reads, writes; in calculateSpillWeightAndHint() local
137 std::tie(reads, writes) = mi->readsWritesVirtualRegister(li.reg); in calculateSpillWeightAndHint()
139 writes, reads, &MBFI, mi); in calculateSpillWeightAndHint()
142 if (writes && isExiting && LIS.isLiveOutOfMBB(li, mbb)) in calculateSpillWeightAndHint()
/external/valgrind/none/tests/s390x/
Dexrl.stdout.exp8 ------- EXRL 0,... has no effect (writes out target)
11 ------- EXRL to OR in the syscall number (writes out target)
Dex.stdout.exp8 ------- EX 0,... has no effect (writes out target)
11 ------- EX to OR in the syscall number (writes out target)
/external/llvm/include/llvm/Target/
DTargetSchedule.td201 // operand that both reads and writes a reg. In both cases we have a
220 // Variadic, then the list of prior writes are distributed across all
224 class WriteSequence<list<SchedWrite> writes, int rep = 1> : SchedWrite {
225 list<SchedWrite> Writes = writes;
271 // should define one of the writes to be zero micro-ops. If a
274 // or require additional writes. Extra writes can be required either
275 // by defining a WriteSequence, or simply listing extra writes in the
294 class ProcReadAdvance<int cycles, list<SchedWrite> writes = []> {
296 list<SchedWrite> ValidWrites = writes;
313 class ReadAdvance<SchedRead read, int cycles, list<SchedWrite> writes = []>
[all …]
/external/fio/
Diolog.c334 int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */ in read_iolog2() local
349 reads = writes = waits = 0; in read_iolog2()
408 writes++; in read_iolog2()
442 if (writes && read_only) { in read_iolog2()
444 " read-only\n", td->o.name, writes); in read_iolog2()
445 writes = 0; 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/strace/
Dquota.c211 u_int32_t writes; member
223 u_int32_t writes; member
444 tprintf("writes=%u, ", dq.writes); in decode_cmd_data()
466 tprintf("writes=%u, ", dq.writes); in decode_cmd_data()
/external/skia/src/gpu/
DGrStencil.h270 bool writes = GR_STENCIL_SETTINGS_DOES_WRITE( in doesWrite() local
274 fFlags |= writes ? kDoesWrite_StencilFlag : kDoesNotWrite_StencilFlag; in doesWrite()
275 return writes; in doesWrite()
/external/fio/examples/
Dsurface-scan.fio1 ; writes 512 byte verification blocks until the disk is full,
Dfusion-aw-sync.fio1 # Example Job File that randomly writes 8k worth of data atomically for
/external/e2fsprogs/tests/
Dfilter.sed13 /^Lifetime writes:/d
/external/deqp/doc/testspecs/GLES31/
Dfunctional.compute.shared_var.txt49 In each iteration one of the work items writes a value from u_val to the
61 invocation per work group writes out the final shared variable value.
/external/valgrind/helgrind/
DREADME_MSMProp2.txt139 writes so that either (1) the writing thread holds at least one lock
140 in common with LS, or (2) those writes must happen-after VTS. If
143 Hence a Read state places a constraint on writes.
/external/okhttp/okio/
DCHANGELOG.md23 * Fix: `Buffer.write(Source, long)` now always writes fully. The previous
35 * Fix: Buffers do not call through the `Source` on zero-byte writes.
/external/dnsmasq/contrib/wrt/
DREADME19 By giving dnsmasq the leasefile-ro command, it no longer creates or writes a
54 number of writes to the NVRAM. With HAVE_BROKEN_RTC, NVRAM is updated
/external/sepolicy/
Duncrypt.te27 # Raw writes to block device

12345678910>>...14