Home
last modified time | relevance | path

Searched refs:isZero (Results 1 – 25 of 221) sorted by relevance

123456789

/external/pdfium/third_party/bigint/
DBigInteger.hh51 sign = mag.isZero() ? zero : positive; in BigInteger()
59 sign = mag.isZero() ? zero : positive; in BigInteger()
95 bool isZero() const { return sign == zero; } // A bit special in isZero() function in BigInteger
166 if (x.isZero()) in operator /()
174 if (x.isZero()) in operator %()
204 if (x.isZero()) in operator /=()
214 if (x.isZero()) in operator %=()
DBigInteger.cc22 if (!mag.isZero()) in BigInteger()
29 sign = mag.isZero() ? zero : s; in BigInteger()
41 if (!mag.isZero()) in BigInteger()
48 sign = mag.isZero() ? zero : s; in BigInteger()
62 BigInteger::BigInteger(unsigned long x) : mag(x) { sign = mag.isZero() ? zero : positive; } in BigInteger()
63 BigInteger::BigInteger(unsigned int x) : mag(x) { sign = mag.isZero() ? zero : positive; } in BigInteger()
64 BigInteger::BigInteger(unsigned short x) : mag(x) { sign = mag.isZero() ? zero : positive; } in BigInteger()
357 if (mag.isZero()) in divideWithRemainder()
359 if (q.mag.isZero()) in divideWithRemainder()
DBigUnsigned.hh103 bool isZero() const { return NumberlikeArray<Blk>::isEmpty(); } in isZero() function in BigUnsigned
269 if (x.isZero()) in operator /()
277 if (x.isZero()) in operator %()
320 if (x.isZero()) in operator /=()
330 if (x.isZero()) in operator %=()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECPoint.java287 return x == null || y == null || (zs.length > 0 && zs[0].isZero()); in isInfinity()
690 if (dx.isZero()) in add()
692 if (dy.isZero()) in add()
725 if (v.isZero()) in add()
727 if (u.isZero()) in add()
766 if (dx.isZero()) in add()
768 if (dy.isZero()) in add()
818 if (H.isZero()) in add()
820 if (R.isZero()) in add()
892 if (Y1.isZero()) in twice()
[all …]
/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417ECModulusPoly.cpp66 FX_BOOL CBC_PDF417ECModulusPoly::isZero() { in isZero() function in CBC_PDF417ECModulusPoly
95 if (isZero()) { in add()
101 if (other->isZero()) { in add()
135 if (other->isZero()) { in subtract()
151 if (isZero() || other->isZero()) { in multiply()
241 if (other->isZero()) { in divide()
262 while (remainder->getDegree() >= other->getDegree() && !remainder->isZero()) { in divide()
/external/eigen/doc/snippets/
DMatrixBase_isZero.cpp4 cout << "m.isZero() returns: " << m.isZero() << endl;
5 cout << "m.isZero(1e-3) returns: " << m.isZero(1e-3) << endl;
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp200 if (!C1I->isZero() && !C2I->isZero()) // One side must be zero. in isSelect01()
774 if (!TrueVal->isZero() && !FalseVal->isZero()) { in foldSelectICmpAnd()
797 ConstantInt *ValC = !TrueVal->isZero() ? TrueVal : FalseVal; in foldSelectICmpAnd()
815 bool ShouldNotVal = !TrueVal->isZero(); in foldSelectICmpAnd()
874 if (FalseValC->isZero() && TrueValC->getValue() == 1) in visitSelectInst()
878 if (FalseValC->isZero() && TrueValC->isAllOnesValue()) in visitSelectInst()
882 if (TrueValC->isZero() && FalseValC->getValue() == 1) { in visitSelectInst()
888 if (TrueValC->isZero() && FalseValC->isAllOnesValue()) { in visitSelectInst()
907 !CFPt->getValueAPF().isZero()) || in visitSelectInst()
909 !CFPf->getValueAPF().isZero())) in visitSelectInst()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
DBasicPeriodFormatter.java116 boolean isZero = true; in format()
119 isZero = false; in format()
128 if (!customs.displayLimit || isZero) { in format()
135 if (!customs.displayDirection || isZero) { in format()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
DBasicPeriodFormatter.java115 boolean isZero = true; in format()
118 isZero = false; in format()
127 if (!customs.displayLimit || isZero) { in format()
134 if (!customs.displayDirection || isZero) { in format()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDigitList.java90 boolean isZero() in isZero() method in DigitList
169 if (isZero()) return BigInteger.valueOf(0);
211 if (isZero()) return "0";
247 if (isZero()) {
293 if (isZero()) {
881 if (isZero()) return "0";
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDigitList.java89 boolean isZero() in isZero() method in DigitList
168 if (isZero()) return BigInteger.valueOf(0);
210 if (isZero()) return "0";
246 if (isZero()) {
292 if (isZero()) {
880 if (isZero()) return "0";
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
DSecP224R1Point.java141 if (Nat224.isZero(H)) in add()
143 if (Nat224.isZero(R)) in add()
202 if (Y1.isZero()) in twice()
280 if (Y1.isZero()) in twicePlus()
290 if (this.isInfinity() || this.y.isZero()) in threeTimes()
DSecP224K1Point.java143 if (Nat224.isZero(H)) in add()
145 if (Nat224.isZero(R)) in add()
205 if (Y1.isZero()) in twice()
270 if (Y1.isZero()) in twicePlus()
280 if (this.isInfinity() || this.y.isZero()) in threeTimes()
DSecP256R1Point.java141 if (Nat256.isZero(H)) in add()
143 if (Nat256.isZero(R)) in add()
202 if (Y1.isZero()) in twice()
280 if (Y1.isZero()) in twicePlus()
290 if (this.isInfinity() || this.y.isZero()) in threeTimes()
DSecP256K1Point.java143 if (Nat256.isZero(H)) in add()
145 if (Nat256.isZero(R)) in add()
205 if (Y1.isZero()) in twice()
270 if (Y1.isZero()) in twicePlus()
280 if (this.isInfinity() || this.y.isZero()) in threeTimes()
DSecP192R1Point.java142 if (Nat192.isZero(H)) in add()
144 if (Nat192.isZero(R)) in add()
204 if (Y1.isZero()) in twice()
282 if (Y1.isZero()) in twicePlus()
292 if (this.isInfinity() || this.y.isZero()) in threeTimes()
DSecP192K1Point.java143 if (Nat192.isZero(H)) in add()
145 if (Nat192.isZero(R)) in add()
205 if (Y1.isZero()) in twice()
270 if (Y1.isZero()) in twicePlus()
280 if (this.isInfinity() || this.y.isZero()) in threeTimes()
DSecP384R1Point.java141 if (Nat.isZero(12, H)) in add()
143 if (Nat.isZero(12, R)) in add()
203 if (Y1.isZero()) in twice()
281 if (Y1.isZero()) in twicePlus()
291 if (this.isInfinity() || this.y.isZero()) in threeTimes()
DSecP521R1FieldElement.java36 public boolean isZero() in isZero() method in SecP521R1FieldElement
38 return Nat.isZero(17, x); in isZero()
135 if (Nat.isZero(17, x1) || Nat.isOne(17, x1)) in sqrt()
DSecP521R1Point.java139 if (Nat.isZero(17, H)) in add()
141 if (Nat.isZero(17, R)) in add()
198 if (Y1.isZero()) in twice()
275 if (Y1.isZero()) in twicePlus()
285 if (this.isInfinity() || this.y.isZero()) in threeTimes()
DSecP256R1FieldElement.java36 public boolean isZero() in isZero() method in SecP256R1FieldElement
38 return Nat256.isZero(x); in isZero()
134 if (Nat256.isZero(x1) || Nat256.isOne(x1)) in sqrt()
DSecP192R1FieldElement.java36 public boolean isZero() in isZero() method in SecP192R1FieldElement
38 return Nat192.isZero(x); in isZero()
135 if (Nat192.isZero(x1) || Nat192.isOne(x1)) in sqrt()
DSecP224R1FieldElement.java37 public boolean isZero() in isZero() method in SecP224R1FieldElement
39 return Nat224.isZero(x); in isZero()
133 if (Nat224.isZero(c) || Nat224.isOne(c)) in sqrt()
263 if (Nat224.isZero(d1)) in trySqrt()
/external/llvm/include/llvm/ADT/
DAPFloat.h417 bool isZero() const { return category == fcZero; } in isZero() function
440 bool isFiniteNonZero() const { return isFinite() && !isZero(); } in isFiniteNonZero()
441 bool isPosZero() const { return isZero() && !isNegative(); } in isPosZero()
442 bool isNegZero() const { return isZero() && isNegative(); } in isNegZero()
517 if (Arg.isZero()) in ilogb()
/external/icu/icu4c/source/i18n/
Dprecision.cpp53 if (!fRoundingIncrement.isZero()) { in round()
111 if (value.isZero()) { in getInterval()
130 …igitCount() == 0 && fSignificant.isNoConstraints() && fRoundingIncrement.isZero() && !fFailIfOverM… in isFastFormattable()
180 if (!fRoundingIncrement.isZero()) { in initVisibleDigits()
220 if (!fRoundingIncrement.isZero()) { in initVisibleDigits()

123456789