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:mant_dig
(Results
1 - 5
of
5
) sorted by relevance
/third_party/python/Lib/test/
H
A
D
test_strtod.py
27
def strtod(s,
mant_dig
=53, min_exp = -1021, max_exp = 1024):
52
e = max(d, min_exp) -
mant_dig
59
if q.bit_length() ==
mant_dig
+1:
64
assert q.bit_length() <=
mant_dig
and e >= min_exp -
mant_dig
65
assert q.bit_length() ==
mant_dig
or e == min_exp -
mant_dig
74
hexdigs = 1 + (
mant_dig
-2)//4
75
shift = 3 - (
mant_dig
-2)%4
H
A
D
test_math.py
635
mant_dig
= float_info.
mant_dig
636
etiny = float_info.min_exp -
mant_dig
647
mant, exp = int(math.ldexp(mant,
mant_dig
)), exp -
mant_dig
658
tail = max(len(bin(abs(tmant)))-2 -
mant_dig
, etiny - texp)
H
A
D
test_long.py
34
DBL_MANT_DIG = sys.float_info.
mant_dig
46
PRECISION = sys.float_info.
mant_dig
+ 2
74
assert q % 4 == 0 and q // 4 <= 2**(sys.float_info.
mant_dig
)
/third_party/ltp/tools/sparse/sparse-src/
H
A
D
cgcc
197
my $
mant_dig
= int (($mant_bits - 1) * log (2) / log (10));
204
$result .= " -D__${name}_DIG__=$
mant_dig
";
/third_party/python/Lib/
H
A
D
statistics.py
368
_sqrt_bit_width: int = 2 * sys.float_info.
mant_dig
+ 3
Completed in 11 milliseconds