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:FRAC_ONE
(Results
1 - 7
of
7
) sorted by relevance
/third_party/ffmpeg/tests/
H
A
D
videogen.c
50
#define
FRAC_ONE
(1 << FRAC_BITS)
macro
56
a = a & (
FRAC_ONE
- 1);
in int_cos()
57
if (a >= (
FRAC_ONE
/ 2))
in int_cos()
58
a =
FRAC_ONE
- a;
in int_cos()
60
if (a > (
FRAC_ONE
/ 4)) {
in int_cos()
62
a = (
FRAC_ONE
/ 2) - a;
in int_cos()
64
v =
FRAC_ONE
- ((a * a) >> 4);
in int_cos()
99
dx = int_cos(num *
FRAC_ONE
/ 50) * 35;
in gen_image()
100
dy = int_cos(num *
FRAC_ONE
/ 50 +
FRAC_ONE
/ 1
in gen_image()
[all...]
H
A
D
audiogen.c
47
#define
FRAC_ONE
(1 << FRAC_BITS)
macro
79
a = a & (
FRAC_ONE
- 1); /* modulo 2 * pi */
in int_cos()
80
if (a >= (
FRAC_ONE
/ 2))
in int_cos()
81
a =
FRAC_ONE
- a;
in int_cos()
83
if (a > (
FRAC_ONE
/ 4)) {
in int_cos()
85
a = (
FRAC_ONE
/ 2) - a;
in int_cos()
189
a += (1000 *
FRAC_ONE
) / sample_rate;
in main()
199
a += (f *
FRAC_ONE
) / sample_rate;
in main()
227
taba[j] += (f *
FRAC_ONE
) / sample_rate;
in main()
236
amp = ((
FRAC_ONE
in main()
[all...]
/third_party/ffmpeg/libavcodec/
H
A
D
mpegaudio.h
58
#define
FRAC_ONE
(1 << FRAC_BITS)
macro
60
#define FIX(a) ((int)((a) *
FRAC_ONE
))
H
A
D
mpegaudiodec_fixed.c
32
#define FIXR_OLD(a) ((int)((a) *
FRAC_ONE
+ 0.5))
33
#define FIXR(a) ((int)((a) *
FRAC_ONE
+ 0.5))
H
A
D
mpegaudiodec_float.c
32
#define FIXR_OLD(a) ((int)((a) *
FRAC_ONE
+ 0.5))
H
A
D
mpegaudiodsp_template.c
70
# define FIXR(a) ((int)((a) *
FRAC_ONE
+ 0.5))
H
A
D
mpegaudiodec_template.c
108
/* [i][j]: 2^(-j/3) *
FRAC_ONE
* 2^(i+2) / (2^(i+2) - 1) */
248
norm = ((INT64_C(1) << n) *
FRAC_ONE
) / ((1 << n) - 1);
in decode_init_static()
Completed in 7 milliseconds