OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ufvalue
(Results
1 - 5
of
5
) sorted by relevancy
/src/crypto/external/apache2/openssl/dist/crypto/bio/
bio_print.c
568
LDOUBLE
ufvalue
;
local
593
ufvalue
= abs_val(fvalue);
594
if (
ufvalue
== 0 && fvalue != 0) /* INF or NAN? */
603
if (
ufvalue
== 0.0) {
605
} else if (
ufvalue
< 0.0001) {
607
} else if ((max == 0 &&
ufvalue
>= 10)
608
|| (max > 0 &&
ufvalue
>= pow_10(max))) {
618
tmpvalue =
ufvalue
;
620
if (
ufvalue
!= 0.0) {
657
ufvalue
= tmpvalue
[
all
...]
/src/crypto/external/bsd/openssl/dist/crypto/bio/
bio_print.c
568
LDOUBLE
ufvalue
;
local
656
ufvalue
= abs_val(fvalue);
661
if (
ufvalue
>= (double)(ULONG_MAX - 65535) + 65536.0) {
666
intpart = (unsigned long)
ufvalue
;
680
fracpart = roundv(pow_10(max) * (
ufvalue
- intpart));
/src/crypto/external/bsd/openssl.old/dist/crypto/bio/
b_print.c
568
LDOUBLE
ufvalue
;
local
655
ufvalue
= abs_val(fvalue);
660
if (
ufvalue
>= (double)(ULONG_MAX - 65535) + 65536.0) {
664
intpart = (unsigned long)
ufvalue
;
678
fracpart = roundv(pow_10(max) * (
ufvalue
- intpart));
/src/external/bsd/pcc/dist/pcc/mip/
compat.c
701
long double
ufvalue
;
local
710
ufvalue
= abs_val(fvalue);
719
intpart =
ufvalue
;
731
fracpart = lroundl((ldpow10 (max)) * (
ufvalue
- intpart));
/src/external/bsd/ntp/dist/libntp/
snprintf.c
1097
LDOUBLE
ufvalue
;
local
1201
ufvalue
= (fvalue >= 0.0) ? fvalue : -fvalue;
1203
ufvalue
/= mypow10(exponent);
1205
if ((intpart = cast(
ufvalue
)) == UINTMAX_MAX) {
1219
if ((fracpart = myround(mask * (
ufvalue
- intpart))) >= mask) {
1221
* For example,
ufvalue
= 2.99962, intpart = 2, and mask = 1000
Completed in 56 milliseconds
Indexes created Fri Jun 05 00:26:10 UTC 2026