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:toRead
(Results
1 - 4
of
4
) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H
A
D
memory_file.cpp
54
uint64_t
toRead
= count;
in Read()
local
55
if ((index_ +
toRead
) > buffer_->GetStorage().size()) {
in Read()
56
toRead
= buffer_->GetStorage().size() - index_;
in Read()
59
if (
toRead
> 0) {
in Read()
60
if (
toRead
<= SIZE_MAX) {
in Read()
62
static_cast<size_t>(
toRead
))) {
in Read()
63
index_ +=
toRead
;
in Read()
67
toRead
= 0;
in Read()
71
return
toRead
;
in Read()
H
A
D
rofs_filesystem.cpp
69
uint64_t
toRead
= count;
variable
70
if ((index_ +
toRead
) > size_) {
71
toRead
= size_ - index_;
74
if (
toRead
> 0) {
75
if (
toRead
<= SIZE_MAX) {
76
if (CloneData(buffer, static_cast<size_t>(count), data_ + index_, static_cast<size_t>(
toRead
))) {
77
index_ +=
toRead
;
81
toRead
= 0;
85
return
toRead
;
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/utils/
H
A
D
bit_reader.h
55
for (uint8_t
toRead
= 0; remainBits; remainBits -=
toRead
) {
in ReadBits()
60
toRead
= std::min(remainBits, availBits_);
in ReadBits()
61
uint8_t shift = availBits_ -
toRead
;
in ReadBits()
62
uint64_t mask = 0xFF >> (0x08 -
toRead
);
in ReadBits()
63
val = static_cast<T>((val <<
toRead
) | static_cast<T>(((*cur_) >> shift) & mask));
in ReadBits()
64
availBits_ -=
toRead
;
in ReadBits()
/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/ohos/
H
A
D
ohos_file.cpp
192
uint64_t
toRead
= count;
in Read()
local
193
uint64_t sum = index_ +
toRead
;
in Read()
198
toRead
= buffer_->Size() - index_;
in Read()
200
if (
toRead
<= 0) {
in Read()
201
return
toRead
;
in Read()
203
if (
toRead
> SIZE_MAX) {
in Read()
208
static_cast<size_t>(
toRead
))) {
in Read()
209
index_ +=
toRead
;
in Read()
211
return
toRead
;
in Read()
Completed in 2 milliseconds