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

/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixPower.h420 * \param[out] intpart The integral part.
424 void split(RealScalar& p, RealScalar& intpart);
460 RealScalar intpart; local
461 split(p, intpart);
464 computeIntPower(res, intpart);
470 void MatrixPower<MatrixType>::split(RealScalar& p, RealScalar& intpart) argument
475 intpart = floor(p);
476 p -= intpart;
483 // Choose the more stable of intpart = floor(p) and intpart
[all...]
/external/openssh/openbsd-compat/
H A Dbsd-snprintf.c666 LLONG intpart; local
668 intpart = (LLONG)value;
669 value = value - intpart;
670 if (value >= 0.5) intpart++;
672 return intpart;
728 double intpart; local
772 my_modf(temp, &intpart);
774 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
777 intpart++;
783 temp = 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 62 milliseconds