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:exp_diff
(Results
1 - 2
of
2
) sorted by relevance
/third_party/mesa3d/src/util/
H
A
D
softfloat.c
467
const int64_t
exp_diff
= a_flt_e - b_flt_e;
in _mesa_double_add_rtz()
local
491
} else if (
exp_diff
== 0 && a_flt_e == 0) {
in _mesa_double_add_rtz()
495
} else if (
exp_diff
== 0) {
in _mesa_double_add_rtz()
499
} else if (
exp_diff
< 0) {
in _mesa_double_add_rtz()
509
a_flt_m = _mesa_shift_right_jam64(a_flt_m, -
exp_diff
);
in _mesa_double_add_rtz()
525
b_flt_m = _mesa_shift_right_jam64(b_flt_m,
exp_diff
);
in _mesa_double_add_rtz()
690
const int64_t
exp_diff
= a_flt_e - b_flt_e;
in _mesa_double_sub_rtz()
local
721
} else if (
exp_diff
== 0) {
in _mesa_double_sub_rtz()
743
} else if (
exp_diff
< 0) {
in _mesa_double_sub_rtz()
749
a_flt_m = _mesa_shift_right_jam64(a_flt_m, -
exp_diff
);
in _mesa_double_sub_rtz()
1077
int64_t
exp_diff
= e - c_flt_e;
_mesa_double_fma_rtz()
local
1332
int16_t
exp_diff
= e - c_flt_e;
_mesa_float_fma_rtz()
local
[all...]
/third_party/ffmpeg/libavcodec/
H
A
D
ac3enc.c
486
int
exp_diff
;
in compute_exp_strategy()
local
505
exp_diff
= s->mecc.sad[0](NULL, exp, exp - AC3_MAX_COEFS, 16, 16);
in compute_exp_strategy()
507
if (ch == CPL_CH &&
exp_diff
> (EXP_DIFF_THRESHOLD * (s->blocks[blk].end_freq[ch] - s->start_freq[ch]) / AC3_MAX_COEFS))
in compute_exp_strategy()
509
else if (ch > CPL_CH &&
exp_diff
> EXP_DIFF_THRESHOLD)
in compute_exp_strategy()
Completed in 8 milliseconds