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:fracpart
(Results
1 - 6
of
6
) sorted by relevance
/third_party/node/deps/openssl/openssl/crypto/bio/
H
A
D
bio_print.c
580
unsigned long
fracpart
;
in fmtfp()
local
680
fracpart
= roundv(pow_10(max) * (ufvalue - intpart));
in fmtfp()
682
if (
fracpart
>= max10) {
in fmtfp()
684
fracpart
-= max10;
in fmtfp()
698
if (style == G_FORMAT && fplace == 0 && (
fracpart
% 10) == 0) {
in fmtfp()
701
fracpart
=
fracpart
/ 10;
in fmtfp()
706
fconvert[fplace++] = "0123456789"[
fracpart
% 10];
in fmtfp()
707
fracpart
= (
fracpart
/ 1
in fmtfp()
[all...]
/third_party/openssl/crypto/bio/
H
A
D
bio_print.c
580
unsigned long
fracpart
;
in fmtfp()
local
680
fracpart
= roundv(pow_10(max) * (ufvalue - intpart));
in fmtfp()
682
if (
fracpart
>= max10) {
in fmtfp()
684
fracpart
-= max10;
in fmtfp()
698
if (style == G_FORMAT && fplace == 0 && (
fracpart
% 10) == 0) {
in fmtfp()
701
fracpart
=
fracpart
/ 10;
in fmtfp()
706
fconvert[fplace++] = "0123456789"[
fracpart
% 10];
in fmtfp()
707
fracpart
= (
fracpart
/ 1
in fmtfp()
[all...]
/third_party/python/Lib/
H
A
D
_pydecimal.py
574
fracpart
= m.group('frac') or ''
576
self._int = str(int(intpart+
fracpart
))
577
self._exp = exp - len(
fracpart
)
1077
fracpart
= '.' + '0'*(-dotplace) + self._int
1080
fracpart
= ''
1083
fracpart
= '.' + self._int[dotplace:]
1091
return sign + intpart +
fracpart
+ exp
3831
fracpart
= '0'*(-dotplace) + self._int
3834
fracpart
= ''
3837
fracpart
[all...]
/third_party/python/Modules/_decimal/tests/
H
A
D
randdec.py
78
fracpart
= digits(fraclen)
79
return ''.join((intpart, '.',
fracpart
))
/third_party/python/Objects/
H
A
D
floatobject.c
507
double
fracpart
;
in float_richcompare()
local
521
fracpart
= modf(i, &intpart);
in float_richcompare()
526
if (
fracpart
!= 0.0) {
in float_richcompare()
/third_party/python/Modules/
H
A
D
_datetimemodule.c
2448
double
fracpart
;
in accum()
local
2454
* fractional part, num = intpart +
fracpart
.
in accum()
2456
* intpart * factor +
fracpart
* factor
in accum()
2464
fracpart
= modf(dnum, &intpart);
in accum()
2479
if (
fracpart
== 0.0)
in accum()
2488
dnum *=
fracpart
;
in accum()
2489
fracpart
= modf(dnum, &intpart);
in accum()
2499
*leftover +=
fracpart
;
in accum()
Completed in 20 milliseconds