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_sqrt
(Results
1 - 13
of
13
) sorted by relevance
/third_party/ffmpeg/libavcodec/tests/
H
A
D
mathops.c
29
unsigned root =
ff_sqrt
(s);
in main()
30
unsigned root_m1 =
ff_sqrt
(s-1);
in main()
32
fprintf(stderr, "
ff_sqrt
failed at %u with %u\n", s, root);
in main()
36
fprintf(stderr, "
ff_sqrt
failed at %u with %u\n", s, root);
in main()
/third_party/ffmpeg/libavcodec/
H
A
D
mathops.h
207
#ifndef
ff_sqrt
208
#define
ff_sqrt
ff_sqrt
macro
209
static inline av_const unsigned int
ff_sqrt
(unsigned int a)
in ff_sqrt()
function
H
A
D
ac3enc_fixed.c
64
coord32 =
ff_sqrt
(coord32) << 9;
in calc_cpl_coord()
H
A
D
roqaudioenc.c
97
result =
ff_sqrt
(diff);
in dpcm_predict()
H
A
D
opus_rc.c
244
k = (
ff_sqrt
(8 * center + 1) - 1) >> 1;
in ff_opus_rc_dec_uint_tri()
248
k = (2*(qn + 1) -
ff_sqrt
(8*(total - center - 1) + 1)) >> 1;
in ff_opus_rc_dec_uint_tri()
H
A
D
ra144.c
1633
return
ff_sqrt
(x << 20) << s;
in ff_t_sqrt()
H
A
D
motion_est.c
974
c->scene_change_score+=
ff_sqrt
(p_score) -
ff_sqrt
(i_score);
in ff_estimate_p_frame_motion()
1056
c->scene_change_score+=
ff_sqrt
(p_score) -
ff_sqrt
(i_score);
in ff_estimate_p_frame_motion()
H
A
D
sonic.c
642
s->tap_quant[i] =
ff_sqrt
(i+1);
in sonic_encode_init()
946
s->tap_quant[i] =
ff_sqrt
(i+1);
in sonic_decode_init()
H
A
D
g723_1dec.c
270
return (
ff_sqrt
(val << 1) >> 1) & (~1);
in square_root()
H
A
D
opus.c
386
int ambisonic_order =
ff_sqrt
(channels) - 1;
in ff_opus_parse_extradata()
H
A
D
snowenc.c
417
c->scene_change_score+=
ff_sqrt
(vard) -
ff_sqrt
(varc);
in encode_q_branch()
H
A
D
mpegvideo_enc.c
2014
weight[x + 8 * y]= (36 *
ff_sqrt
(count * sqr - sum * sum)) / count;
in get_visual_weight()
/third_party/ffmpeg/libavutil/
H
A
D
fixed_dsp.h
183
if (shift1 > 0) retval =
ff_sqrt
(x << shift1);
in fixed_sqrt()
184
else retval =
ff_sqrt
(x >> -shift1);
in fixed_sqrt()
Completed in 24 milliseconds