OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ufvalue
(Results
1 - 3
of
3
) sorted by null
/external/openssl/crypto/bio/
b_print.c
612
LDOUBLE
ufvalue
;
local
626
ufvalue
= abs_val(fvalue);
634
intpart = (long)
ufvalue
;
644
fracpart = roundv(pow_10(max) * (
ufvalue
- intpart));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_snprintf.c
999
LDOUBLE
ufvalue
;
local
1103
ufvalue
= (fvalue >= 0.0) ? fvalue : -fvalue;
1105
ufvalue
/= mypow10(exponent);
1107
if ((intpart = cast(
ufvalue
)) == UINTMAX_MAX) {
1121
if ((fracpart = myround(mask * (
ufvalue
- intpart))) >= mask) {
1123
* For example,
ufvalue
= 2.99962, intpart = 2, and mask = 1000
[
all
...]
/external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c
999
LDOUBLE
ufvalue
;
local
1103
ufvalue
= (fvalue >= 0.0) ? fvalue : -fvalue;
1105
ufvalue
/= mypow10(exponent);
1107
if ((intpart = cast(
ufvalue
)) == UINTMAX_MAX) {
1121
if ((fracpart = myround(mask * (
ufvalue
- intpart))) >= mask) {
1123
* For example,
ufvalue
= 2.99962, intpart = 2, and mask = 1000
[
all
...]
Completed in 120 milliseconds