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:expdiff
(Results
1 - 3
of
3
) sorted by relevance
/third_party/optimized-routines/math/test/rtest/
H
A
D
dotest.c
1314
int
expdiff
= random_upto(101)-51;
in atan2_cases()
local
1316
if (
expdiff
< 0) {
in atan2_cases()
1317
expdiff
= -
expdiff
;
in atan2_cases()
1321
out[swap ^ 0] = random_upto(0x7FEFFFFF-((
expdiff
+1)<<20));
in atan2_cases()
1322
out[swap ^ 2] = random_upto(((
expdiff
+1)<<20)-1) + out[swap ^ 0];
in atan2_cases()
1333
int
expdiff
= random_upto(44)-22;
in atan2_cases_float()
local
1335
if (
expdiff
< 0) {
in atan2_cases_float()
1336
expdiff
= -
expdiff
;
in atan2_cases_float()
[all...]
/third_party/python/Modules/_decimal/libmpdec/
H
A
D
mpdecimal.c
3954
mpd_ssize_t ideal_exp,
expdiff
, shift;
in _mpd_qdivmod()
local
3969
expdiff
= mpd_adjexp(a) - mpd_adjexp(b);
in _mpd_qdivmod()
3970
if (
expdiff
< 0) {
in _mpd_qdivmod()
3987
if (
expdiff
> ctx->prec) {
in _mpd_qdivmod()
6966
mpd_ssize_t
expdiff
, shift;
in mpd_qquantize()
local
6993
expdiff
= a->exp - b->exp;
in mpd_qquantize()
6994
if (a->digits +
expdiff
> ctx->prec) {
in mpd_qquantize()
6999
if (
expdiff
>= 0) {
in mpd_qquantize()
7000
shift =
expdiff
;
in mpd_qquantize()
7007
/* At this point
expdiff
<
in mpd_qquantize()
7115
mpd_ssize_t
expdiff
, qdigits;
mpd_qrem_near()
local
7207
mpd_ssize_t
expdiff
, shift;
_mpd_qrescale()
local
[all...]
/third_party/python/Lib/
H
A
D
_pydecimal.py
1405
expdiff
= self.adjusted() - other.adjusted()
1406
if not self or other._isinfinity() or
expdiff
<= -2:
1409
if
expdiff
<= context.prec:
1549
expdiff
= self.adjusted() - other.adjusted()
1550
if
expdiff
>= context.prec + 1:
1551
#
expdiff
>= prec+1 => abs(self/other) > 10**prec
1553
if
expdiff
<= -2:
1554
#
expdiff
<= -2 => abs(self/other) < 0.1
2480
expdiff
= context.prec + 1 - len(ans._int)
2481
ans = _dec_from_triple(ans._sign, ans._int+'0'*
expdiff
,
[all...]
Completed in 15 milliseconds