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:offset_w
(Results
1 - 3
of
3
) sorted by relevance
/third_party/ffmpeg/libavutil/
H
A
D
fifo.c
39
size_t offset_r,
offset_w
;
member
40
// distinguishes the ambiguous situation offset_r ==
offset_w
89
if (f->
offset_w
<= f->offset_r && !f->is_empty)
in av_fifo_can_read()
90
return f->nb_elems - f->offset_r + f->
offset_w
;
in av_fifo_can_read()
91
return f->
offset_w
- f->offset_r;
in av_fifo_can_read()
113
if (f->
offset_w
<= f->offset_r && !f->is_empty) {
in av_fifo_grow2()
114
const size_t copy = FFMIN(inc, f->
offset_w
);
in av_fifo_grow2()
116
if (copy < f->
offset_w
) {
in av_fifo_grow2()
118
(f->
offset_w
- copy) * f->elem_size);
in av_fifo_grow2()
119
f->
offset_w
in av_fifo_grow2()
153
size_t
offset_w
;
fifo_write_common()
local
367
size_t
offset_w
= f->wptr - f->buffer;
av_fifo_realloc2()
local
[all...]
/third_party/ffmpeg/libavcodec/
H
A
D
flac_parser.c
216
size_t
offset_w
= f->wptr - f->buffer;
in flac_fifo_grow()
local
231
if (
offset_w
<= offset_r && !f->empty) {
in flac_fifo_grow()
232
const size_t copy = FFMIN(inc,
offset_w
);
in flac_fifo_grow()
234
if (copy <
offset_w
) {
in flac_fifo_grow()
235
memmove(tmp, tmp + copy,
offset_w
- copy);
in flac_fifo_grow()
236
offset_w
-= copy;
in flac_fifo_grow()
238
offset_w
= size_old + copy;
in flac_fifo_grow()
244
f->wptr = f->buffer +
offset_w
;
in flac_fifo_grow()
/third_party/skia/third_party/externals/tint/src/resolver/
H
A
D
resolver_validation.cc
280
const auto
offset_w
=
in ValidateStorageClassLayout()
287
ss << "/* " << std::setw(
offset_w
) << " "
in ValidateStorageClassLayout()
295
<< std::setw(
offset_w
+ size_w + align_w) << " "
in ValidateStorageClassLayout()
301
ss << "/* offset(" << std::setw(
offset_w
) << offset << ") align("
in ValidateStorageClassLayout()
Completed in 6 milliseconds