OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nExponent
(Results
1 - 3
of
3
) sorted by null
/external/pdfium/xfa/src/fxfa/src/parser/
xfa_utils_imp.cpp
318
int32_t
nExponent
= 0;
378
nExponent
=
nExponent
* 10 + str[cc] - '0';
381
nExponent
= bExpSign ? -
nExponent
:
nExponent
;
385
if (
nExponent
!= 0) {
386
dValue *= FXSYS_pow(10, (FX_FLOAT)
nExponent
);
xfa_localevalue.cpp
213
int32_t
nExponent
= 0;
269
nExponent
=
nExponent
* 10 + str[cc] - '0';
272
nExponent
= bExpSign ? -
nExponent
:
nExponent
;
276
if (
nExponent
!= 0) {
277
fValue *= FXSYS_pow(10, (FX_FLOAT)
nExponent
);
288
int32_t
nExponent
= 0;
344
nExponent
= nExponent * 10 + str[cc] - '0';
[
all
...]
/external/pdfium/xfa/src/fxjse/src/
value.cpp
289
uint8_t
nExponent
= (uint8_t)(nFloatBits >> 16 >> 7);
290
if (
nExponent
== 0 ||
nExponent
== 255) {
293
int8_t nErrExp =
nExponent
- 127 - 23;
Completed in 730 milliseconds