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:ff_reverse
(Results
1 - 14
of
14
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
s302menc.c
109
o[0] =
ff_reverse
[(samples[0] & 0x0000FF00) >> 8];
in s302m_encode2_frame()
110
o[1] =
ff_reverse
[(samples[0] & 0x00FF0000) >> 16];
in s302m_encode2_frame()
111
o[2] =
ff_reverse
[(samples[0] & 0xFF000000) >> 24];
in s302m_encode2_frame()
112
o[3] =
ff_reverse
[(samples[1] & 0x00000F00) >> 4] | vucf;
in s302m_encode2_frame()
113
o[4] =
ff_reverse
[(samples[1] & 0x000FF000) >> 12];
in s302m_encode2_frame()
114
o[5] =
ff_reverse
[(samples[1] & 0x0FF00000) >> 20];
in s302m_encode2_frame()
115
o[6] =
ff_reverse
[(samples[1] & 0xF0000000) >> 28];
in s302m_encode2_frame()
131
o[0] =
ff_reverse
[ (samples[0] & 0x000FF000) >> 12];
in s302m_encode2_frame()
132
o[1] =
ff_reverse
[ (samples[0] & 0x0FF00000) >> 20];
in s302m_encode2_frame()
133
o[2] =
ff_reverse
[((sample
in s302m_encode2_frame()
[all...]
H
A
D
s302m.c
132
*o++ = ((unsigned)
ff_reverse
[buf[2]] << 24) |
in s302m_decode_frame()
133
(
ff_reverse
[buf[1]] << 16) |
in s302m_decode_frame()
134
(
ff_reverse
[buf[0]] << 8);
in s302m_decode_frame()
135
*o++ = ((unsigned)
ff_reverse
[buf[6] & 0xf0] << 28) |
in s302m_decode_frame()
136
(
ff_reverse
[buf[5]] << 20) |
in s302m_decode_frame()
137
(
ff_reverse
[buf[4]] << 12) |
in s302m_decode_frame()
138
(
ff_reverse
[buf[3] & 0x0f] << 4);
in s302m_decode_frame()
154
*o++ = ((unsigned)
ff_reverse
[buf[2] & 0xf0] << 28) |
in s302m_decode_frame()
155
(
ff_reverse
[buf[1]] << 20) |
in s302m_decode_frame()
156
(
ff_reverse
[bu
in s302m_decode_frame()
[all...]
H
A
D
dsd.c
109
buf[pos] = lsbf ?
ff_reverse
[*src] : *src;
in ff_dsd2pcm_translate()
113
*p =
ff_reverse
[*p];
in ff_dsd2pcm_translate()
H
A
D
xbmdec.c
114
*dst++ =
ff_reverse
[val];
in xbm_decode_frame()
122
*dst++ =
ff_reverse
[val];
in xbm_decode_frame()
H
A
D
vlc.c
83
return (uint32_t)
ff_reverse
[ x & 0xFF] << 24 |
in bitswap_32()
84
(uint32_t)
ff_reverse
[(x >> 8) & 0xFF] << 16 |
in bitswap_32()
85
(uint32_t)
ff_reverse
[(x >> 16) & 0xFF] << 8 |
in bitswap_32()
86
(uint32_t)
ff_reverse
[ x >> 24];
in bitswap_32()
H
A
D
pcm.c
141
uint32_t tmp =
ff_reverse
[(*samples >> 8) & 0xff] +
in pcm_encode_frame()
142
(
ff_reverse
[*samples & 0xff] << 8);
in pcm_encode_frame()
411
AV_WN16A(samples,
ff_reverse
[(v >> 8) & 0xff] +
in pcm_decode_frame()
412
(
ff_reverse
[v & 0xff] << 8));
in pcm_decode_frame()
H
A
D
xbmenc.c
59
buf += snprintf(buf, 6, " 0x%02X",
ff_reverse
[*ptr++]);
in xbm_encode_frame()
H
A
D
dstdec.c
216
return (
ff_reverse
[c & 127] >> 1) + 1;
in prob_dst_x_bit()
H
A
D
tiff.c
436
s->deinvert_buf[i] =
ff_reverse
[src[i]];
in deinvert_buffer()
877
dst[i] =
ff_reverse
[src[i]];
in tiff_unpack_strip()
909
code = s->fill_order ? (int8_t)
ff_reverse
[*src++]: (int8_t) *src++;
in tiff_unpack_strip()
938
dst[i] =
ff_reverse
[dst[i]];
in tiff_unpack_strip()
H
A
D
mpeg12dec.c
2263
cap[1] =
ff_reverse
[cc1];
in mpeg_decode_a53_cc()
2264
cap[2] =
ff_reverse
[cc2];
in mpeg_decode_a53_cc()
/third_party/ffmpeg/libavutil/
H
A
D
reverse.h
26
extern const uint8_t
ff_reverse
[256];
H
A
D
reverse.c
23
const uint8_t
ff_reverse
[256] = {
variable
H
A
D
eval.c
270
p->var[0] =
ff_reverse
[i&255]*x_max/255;
in eval_expr()
/third_party/ffmpeg/libavdevice/
H
A
D
decklink_dec.cpp
280
*tgt++ =
ff_reverse
[py[i] & 255];
in teletext_data_unit_from_op47_vbi_packet()
Completed in 16 milliseconds