Home
last modified time | relevance | path

Searched refs:isneg (Results 1 – 6 of 6) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
DBigDecimal.java328 private static final byte isneg = -1; // ind: indicates negative (must be -1) field in BigDecimal
549 ind = isneg; in BigDecimal()
788 ind = isneg; in BigDecimal()
797 ind = isneg; in BigDecimal()
811 ind = isneg;/* negative */// [0 case already handled] in BigDecimal()
863 ind = isneg;/* negative */ in BigDecimal()
971 if (this.ind == isneg) in abs()
1134 … if (((lhs.ind == isneg) ? 1 : 0) == ((rhs.ind == isneg) ? 1 : 0)) // same sign, 0 non-negative in add()
1779 if (rhs.ind == isneg) in pow()
2447 if (ind == isneg) // really was negative in intValueExact()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/math/
DBigDecimal.java317 private static final byte isneg = -1; // ind: indicates negative (must be -1) field in BigDecimal
533 ind = isneg; in BigDecimal()
770 ind = isneg; in BigDecimal()
779 ind = isneg; in BigDecimal()
793 ind = isneg;/* negative */// [0 case already handled] in BigDecimal()
844 ind = isneg;/* negative */ in BigDecimal()
949 if (this.ind == isneg) in abs()
1110 … if (((lhs.ind == isneg) ? 1 : 0) == ((rhs.ind == isneg) ? 1 : 0)) // same sign, 0 non-negative in add()
1735 if (rhs.ind == isneg) in pow()
2390 if (ind == isneg) // really was negative in intValueExact()
[all …]
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
DBigDecimal.java326 private static final byte isneg = -1; // ind: indicates negative (must be -1) field in BigDecimal
547 ind = isneg; in BigDecimal()
786 ind = isneg; in BigDecimal()
795 ind = isneg; in BigDecimal()
809 ind = isneg;/* negative */// [0 case already handled] in BigDecimal()
861 ind = isneg;/* negative */ in BigDecimal()
969 if (this.ind == isneg) in abs()
1132 … if (((lhs.ind == isneg) ? 1 : 0) == ((rhs.ind == isneg) ? 1 : 0)) // same sign, 0 non-negative in add()
1777 if (rhs.ind == isneg) in pow()
2445 if (ind == isneg) // really was negative in intValueExact()
[all …]
/external/boringssl/src/crypto/x509v3/
Dv3_utl.c171 int isneg, ishex; in s2i_ASN1_INTEGER() local
180 isneg = 1; in s2i_ASN1_INTEGER()
181 } else isneg = 0; in s2i_ASN1_INTEGER()
197 if (isneg && BN_is_zero(bn)) isneg = 0; in s2i_ASN1_INTEGER()
205 if (isneg) aint->type |= V_ASN1_NEG; in s2i_ASN1_INTEGER()
/external/libxml2/
Dxmlschemastypes.c1197 int isneg = 0, digcnt = 0; in _xmlSchemaParseGYear() local
1204 isneg = 1; in _xmlSchemaParseGYear()
1221 if (isneg) in _xmlSchemaParseGYear()
1421 int isneg = 0, tmp = 0; in _xmlSchemaParseTimeZone() local
1422 isneg = (*cur == '-'); in _xmlSchemaParseTimeZone()
1445 if (isneg) in _xmlSchemaParseTimeZone()
1778 int isneg = 0; in xmlSchemaValidateDuration() local
1792 isneg = 1; in xmlSchemaValidateDuration()
1862 if (isneg) { in xmlSchemaValidateDuration()
Dxpath.c10094 int isneg = 0; in xmlXPathStringEvalNumber() local
10107 isneg = 1; in xmlXPathStringEvalNumber()
10168 if (isneg) ret = -ret; in xmlXPathStringEvalNumber()