HomeSort by relevance Sort by last modified time
    Searched refs:reads (Results 1 - 25 of 418) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
mcdper.s 1 # Test reads/writes to the %mcdper asr register
mwait.s 1 # Test reads/writes to the %mwait asr register and the MWAIT
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
CachedInputStream.java 138 int reads = in.read(buffer, offset, count); local
139 return reads;
158 int reads = in.read(buf, indexInBuf, toRead); local
159 if (reads > 0) {
160 System.arraycopy(buf, indexInBuf, buffer, offset, reads);
161 mPos += reads;
162 mCount += reads;
163 totalReads += reads;
164 offset += reads;
165 count -= reads;
237 int reads = in.read(buf, indexInBuf, toRead); local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
blob_timeline.py 87 reads = dict()
96 if uuid not in reads:
97 reads[uuid] = 0
98 reads[uuid] += self.ThreadDurationIfPresent(event)
100 if reads:
104 name='blob-reads',
106 values=reads.values(),
113 name='blob-reads',
  /packages/services/Car/tools/io_analysis/
check_io_trace.py 53 self.reads = [] #(start time, RwEvent)
101 self.reads.append((start_time, event))
145 if len(self.reads) > 0:
146 total_read_time = self.reads[-1][0] + self.reads[-1][1].latency - self.reads[0][0]
158 for (time, event) in self.reads:
check_file_read.py 43 self.reads = []
56 self.reads.append((time, offset, size, process_name))
75 print " filename %s, total reads %d, total open %d total rereads %d inode %s" \
84 if len(self.single_block_reads) > 1 and len(self.reads) > 1:
85 print " Single block reads:", collections.OrderedDict( \
162 print " Total reads for partition", total_reads, "rereads", total_rereads
172 reads, rereads, num_files = self.dump_partition(DEVICE_TO_PARTITION[d], \
174 total_reads += reads
176 summaries.append((DEVICE_TO_PARTITION[d], reads, rereads, num_files))
check_verity.py 77 self.reads = [] # all events in start time
94 self.reads.append(event)
116 io, verity, total, blocks = self.dump_list ("total,", self.reads)
  /prebuilts/go/darwin-x86/src/crypto/rand/
example_test.go 13 // This example reads 10 cryptographically secure pseudorandom numbers from
rand.go 16 // On other Unix-like systems, Reader reads from /dev/urandom.
  /prebuilts/go/darwin-x86/src/os/
dir.go 7 // Readdir reads the contents of the directory associated with file and
17 // a single slice. In this case, if Readdir succeeds (reads all
29 // Readdirnames reads and returns a slice of names from the directory f.
36 // a single slice. In this case, if Readdirnames succeeds (reads all
pipe_bsd.go 11 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
  /prebuilts/go/linux-x86/src/crypto/rand/
example_test.go 13 // This example reads 10 cryptographically secure pseudorandom numbers from
  /prebuilts/go/linux-x86/src/os/
dir.go 7 // Readdir reads the contents of the directory associated with file and
17 // a single slice. In this case, if Readdir succeeds (reads all
29 // Readdirnames reads and returns a slice of names from the directory f.
36 // a single slice. In this case, if Readdirnames succeeds (reads all
pipe_bsd.go 11 // Pipe returns a connected pair of Files; reads from r return bytes written to w.
  /external/freetype/src/base/
ftstream.c 492 FT_Byte reads[2]; local
505 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L )
508 p = reads;
537 FT_Byte reads[2]; local
550 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L )
553 p = reads;
582 FT_Byte reads[3]; local
595 if (stream->read( stream, stream->pos, reads, 3L ) != 3L )
598 p = reads;
627 FT_Byte reads[4] local
672 FT_Byte reads[4]; local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftstream.c 492 FT_Byte reads[2]; local
505 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L )
508 p = reads;
537 FT_Byte reads[2]; local
550 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L )
553 p = reads;
582 FT_Byte reads[3]; local
595 if (stream->read( stream, stream->pos, reads, 3L ) != 3L )
598 p = reads;
627 FT_Byte reads[4] local
672 FT_Byte reads[4]; local
    [all...]
  /external/bison/src/
lalr.c 161 goto_number **reads = xnmalloc (ngotos, sizeof *reads); local
186 reads[i] = NULL;
189 reads[i] = xnmalloc (nedges + 1, sizeof reads[i][0]);
190 memcpy (reads[i], edge, nedges * sizeof edge[0]);
191 reads[i][nedges] = END_NODE;
196 relation_digraph (reads, ngotos, &goto_follows);
199 free (reads[i]);
201 free (reads);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
CalcSpillWeights.cpp 127 bool reads, writes; local
128 tie(reads, writes) = mi->readsWritesVirtualRegister(li.reg);
129 weight = LiveIntervals::getSpillWeight(writes, reads, loopDepth);
  /external/curl/lib/
select.h 93 int tpf_select_libcurl(int maxfds, fd_set* reads, fd_set* writes,
  /prebuilts/go/darwin-x86/src/io/ioutil/
ioutil.go 16 // readAll reads from r until an error or EOF and returns the data it read
37 // ReadAll reads from r until an error or EOF and returns the data it read.
45 // ReadFile reads the file named by filename and returns the contents.
47 // reads the whole file, it does not treat an EOF from Read as an error
91 // ReadDir reads the directory named by dirname and returns
  /prebuilts/go/linux-x86/src/io/ioutil/
ioutil.go 16 // readAll reads from r until an error or EOF and returns the data it read
37 // ReadAll reads from r until an error or EOF and returns the data it read.
45 // ReadFile reads the file named by filename and returns the contents.
47 // reads the whole file, it does not treat an EOF from Read as an error
91 // ReadDir reads the directory named by dirname and returns
  /external/guava/guava-tests/test/com/google/common/collect/
ComputingConcurrentHashMapTest.java 129 List<ReferenceEntry<Object, Object>> reads = Lists.newArrayList(); local
135 reads.add(entry);
140 int undrainedIndex = reads.size() - segment.recencyQueue.size();
141 checkAndDrainRecencyQueue(map, segment, reads.subList(undrainedIndex, reads.size()));
142 readOrder.addAll(reads);
  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.mli 17 (** [get_module context mb] reads the bitcode for a new module [m] from the
  /external/protobuf/examples/
list_people.go 40 // Main reads the entire address book from a file and prints all the
  /external/swiftshader/third_party/LLVM/bindings/ocaml/bitreader/
llvm_bitreader.mli 17 (** [get_module context mb] reads the bitcode for a new module [m] from the

Completed in 1031 milliseconds

1 2 3 4 5 6 7 8 91011>>