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:mFifo
(Results
1 - 2
of
2
) sorted by relevance
/third_party/skia/third_party/externals/oboe/src/fifo/
H
A
D
FifoBuffer.cpp
34
mFifo
= std::make_unique<FifoController>(capacityInFrames);
in FifoBuffer()
52
mFifo
= std::make_unique<FifoControllerIndirect>(capacityInFrames,
in FifoBuffer()
75
uint32_t framesAvailable =
mFifo
->getFullFramesAvailable();
in read()
78
uint32_t readIndex =
mFifo
->getReadIndex(); // ranges 0 to capacity
in read()
81
if ((readIndex + framesToRead) >
mFifo
->getFrameCapacity()) {
in read()
83
int32_t frames1 = static_cast<int32_t>(
mFifo
->getFrameCapacity() - readIndex);
in read()
106
mFifo
->advanceReadIndex(framesToRead);
in read()
117
uint32_t framesAvailable =
mFifo
->getEmptyFramesAvailable();
in write()
120
uint32_t writeIndex =
mFifo
->getWriteIndex();
in write()
124
if ((writeIndex + framesToWrite) >
mFifo
in write()
[all...]
H
A
D
FifoBuffer.h
66
return
mFifo
->getFullFramesAvailable();
in getFullFramesAvailable()
74
return
mFifo
->getReadCounter();
in getReadCounter()
78
mFifo
->setReadCounter(n);
in setReadCounter()
82
return
mFifo
->getWriteCounter();
in getWriteCounter()
85
mFifo
->setWriteCounter(n);
in setWriteCounter()
92
std::unique_ptr<FifoControllerBase>
mFifo
;
member in oboe::FifoBuffer
Completed in 2 milliseconds