Home | History | Annotate | Download | only in i18n

Lines Matching full:range

210  * Given 'value', add or subtract 'range' until 0 <= 'value' < range.
213 inline static double normalize(double value, double range) {
214 return value - range * ClockMath::floorDivide(value, range);
218 * Normalize an angle so that it's in the range 0 - 2pi.
227 * Normalize an angle into the range -PI - PI
1163 * The returned phase is a <code>double</code> in the range
1305 // this loop we use normPI to get values in the range -Pi to Pi,