Searched refs:sigr (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumber.c6212 Int sigr; /* rhs signum */ local
6225 sigr=1; /* compute signum(rhs) */
6226 if (ISZERO(rhs)) sigr=0;
6227 else if (decNumberIsNegative(rhs)) sigr=-1;
6228 if (result > sigr) return +1; /* L > R, return 1 */
6229 if (result < sigr) return -1; /* L < R, return -1 */
/external/icu/icu4c/source/i18n/
H A DdecNumber.c6214 Int sigr; /* rhs signum */ local
6227 sigr=1; /* compute signum(rhs) */
6228 if (ISZERO(rhs)) sigr=0;
6229 else if (decNumberIsNegative(rhs)) sigr=-1;
6230 if (result > sigr) return +1; /* L > R, return 1 */
6231 if (result < sigr) return -1; /* L < R, return -1 */

Completed in 142 milliseconds