Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:totalRead
(Results
1 - 4
of
4
) sorted by relevance
/third_party/protobuf/conformance/
H
A
D
conformance_nodejs.js
110
function onEof(
totalRead
) {
111
if (
totalRead
== 0) {
121
var
totalRead
= 0;
122
while (
totalRead
< bytes) {
125
read = fs.readSync(process.stdin.fd, buf,
totalRead
, bytes -
totalRead
);
128
return onEof(
totalRead
)
135
totalRead
+= read;
/third_party/skia/tools/
H
A
D
remote_demo.cpp
99
size_t
totalRead
= 0;
in read_SkData()
local
100
while (
totalRead
< size) {
in read_SkData()
102
sizeRead = ::read(fd, &data[
totalRead
], size -
totalRead
);
in read_SkData()
109
totalRead
+= sizeRead;
in read_SkData()
/third_party/node/lib/internal/fs/
H
A
D
promises.js
494
let
totalRead
= 0;
505
length = MathMin(size -
totalRead
, kReadFileBufferLength);
510
totalRead
+= bytesRead;
513
totalRead
=== size ||
515
const singleRead = bytesRead ===
totalRead
;
517
const bytesToCheck = chunkedRead ?
totalRead
: bytesRead;
526
return Buffer.concat(buffers,
totalRead
);
541
offset =
totalRead
;
/third_party/lzma/CPP/7zip/Compress/
H
A
D
Bcj2Coder.cpp
180
UInt64
totalRead
= 0; // size read from input stream
in CodeReal()
local
200
inPos_with_Temp =
totalRead
- (size_t)(srcLim_Read - enc.src);
in CodeReal()
240
totalRead
+= curSize;
in CodeReal()
292
(nextPos <
totalRead
in CodeReal()
293
|| (nextPos <=
totalRead
&& readWasFinished));
in CodeReal()
297
But only (
totalRead
) and (readWasFinished) values
in CodeReal()
350
(
totalRead
<= real_end_of_subStream)
in CodeReal()
351
so we can use BCJ2_ENC_FINISH_MODE_CONTINUE up to (
totalRead
)
in CodeReal()
371
/* (real_end_of_subStream == nextPos <=
totalRead
)
in CodeReal()
373
const size_t rem = (size_t)(
totalRead
in CodeReal()
[all...]
Completed in 4 milliseconds