OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:productLo
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/
muldf3.c
79
rep_t productHi,
productLo
;
81
&productHi, &
productLo
);
87
else wideLeftShift(&productHi, &
productLo
, 1);
103
// bit is the high bit of
productLo
.
104
wideRightShiftWithSticky(&productHi, &
productLo
, shift);
119
if (
productLo
> signBit) productHi++;
120
if (
productLo
== signBit) productHi += productHi & 1;
mulsf3.c
79
rep_t productHi,
productLo
;
81
&productHi, &
productLo
);
87
else wideLeftShift(&productHi, &
productLo
, 1);
95
wideRightShiftWithSticky(&productHi, &
productLo
, 1U - (unsigned)productExponent);
109
if (
productLo
> signBit) productHi++;
110
if (
productLo
== signBit) productHi += productHi & 1;
Completed in 25 milliseconds