Searched defs:intpart (Results 1 - 4 of 4) sorted by relevance

/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixPower.h365 RealScalar intpart, x = modfAndInit(p, &intpart); local
366 computeIntPower(res, intpart);
373 MatrixPower<MatrixType>::modfAndInit(RealScalar x, RealScalar* intpart) argument
377 *intpart = std::floor(x);
378 RealScalar res = x - *intpart;
391 ++*intpart;
/external/openssl/crypto/bio/
H A Db_print.c592 long intpart; local
593 intpart = (long) value;
594 value = value - intpart;
596 intpart++;
597 return intpart;
620 long intpart; local
634 intpart = (long)ufvalue;
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
647 intpart++;
655 : "0123456789abcdef")[intpart
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c1000 UINTMAX_T intpart; local
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
1128 intpart++;
1130 if (estyle && intpart == 10) {
1137 intpart = 1;
1193 ipos = convert(intpart, iconvert, sizeof(iconvert), 10, 0);
1380 UINTMAX_T intpart = cast(value); local
1382 return ((value -= intpart) < 0.
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c1000 UINTMAX_T intpart; local
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
1128 intpart++;
1130 if (estyle && intpart == 10) {
1137 intpart = 1;
1193 ipos = convert(intpart, iconvert, sizeof(iconvert), 10, 0);
1380 UINTMAX_T intpart = cast(value); local
1382 return ((value -= intpart) < 0.
[all...]

Completed in 332 milliseconds