Searched refs:intPart (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dtimeflow.cpp65 double intPart; local
66 tv.tv_usec = int32_t(modf(mValue, &intPart) * 1E6);
79 double intPart; local
80 ts.tv_nsec = int32_t(modf(mValue, &intPart) * 1E9);
95 double intPart; local
96 tv.tv_usec = int32_t(modf(mValue, &intPart) * 1E6);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dtimeflow.cpp65 double intPart; local
66 tv.tv_usec = int32_t(modf(mValue, &intPart) * 1E6);
79 double intPart; local
80 ts.tv_nsec = int32_t(modf(mValue, &intPart) * 1E9);
95 double intPart; local
96 tv.tv_usec = int32_t(modf(mValue, &intPart) * 1E6);
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclBasic.c6898 double fractPart, intPart;
6901 fractPart = modf(*((const double *) ptr), &intPart);
6907 if ((intPart >= (double)max) || (intPart <= (double)min)) {
6910 if (Tcl_InitBignumFromDouble(interp, intPart, &big) != TCL_OK) {
6922 long result = (long)intPart;
6834 double fractPart, intPart; local

Completed in 132 milliseconds