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:bytesLeft
(Results
1 - 4
of
4
) sorted by relevance
/third_party/skia/third_party/externals/oboe/src/common/
H
A
D
FixedBlockWriter.cpp
39
int32_t
bytesLeft
= numBytes;
in write()
local
43
int32_t bytesWritten = writeToStorage(buffer,
bytesLeft
);
in write()
45
bytesLeft
-= bytesWritten;
in write()
59
while(
bytesLeft
> mSize) {
in write()
63
bytesLeft
-= bytesWritten;
in write()
67
if (
bytesLeft
> 0) {
in write()
68
int32_t bytesWritten = writeToStorage(buffer,
bytesLeft
);
in write()
69
bytesLeft
-= bytesWritten;
in write()
72
return numBytes -
bytesLeft
;
in write()
H
A
D
FixedBlockReader.cpp
50
int32_t
bytesLeft
= numBytes;
in read()
local
51
while(
bytesLeft
> 0) {
in read()
54
bytesRead = readFromStorage(buffer,
bytesLeft
);
in read()
56
bytesLeft
-= bytesRead;
in read()
57
} else if (
bytesLeft
>= mSize) {
in read()
62
bytesLeft
-= bytesRead;
in read()
72
return numBytes -
bytesLeft
;
in read()
/third_party/protobuf/csharp/src/Google.Protobuf/
H
A
D
LimitedInputStream.cs
46
private int
bytesLeft
;
field in Google.Protobuf.LimitedInputStream
51
bytesLeft
= size;
in LimitedInputStream()
86
if (
bytesLeft
> 0)
in Read()
88
int bytesRead = proxied.Read(buffer, offset, Math.Min(
bytesLeft
, count));
in Read()
89
bytesLeft
-= bytesRead;
in Read()
/third_party/libsnd/src/ALAC/
H
A
D
alac_encoder.c
1067
int32_t
bytesLeft
;
in alac_encode()
local
1070
bytesLeft
= bitstream.byteSize - ((bitsLeft + 7) / 8) ;
in alac_encode()
1072
if ((
bytesLeft
> 20) && ((
bytesLeft
& 0x4u) != 0))
in alac_encode()
1073
AddFiller (&bitstream,
bytesLeft
) ;
in alac_encode()
Completed in 4 milliseconds