Searched defs:isOne (Results 1 - 25 of 29) sorted by relevance

12

/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
H A DTJScalingFactor.java91 public boolean isOne() { method in class:TJScalingFactor
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP192K1FieldElement.java41 public boolean isOne() method in class:SecP192K1FieldElement
43 return Nat192.isOne(x);
142 if (Nat192.isZero(x1) || Nat192.isOne(x1))
H A DSecP192R1FieldElement.java41 public boolean isOne() method in class:SecP192R1FieldElement
43 return Nat192.isOne(x);
135 if (Nat192.isZero(x1) || Nat192.isOne(x1))
H A DSecP256K1FieldElement.java41 public boolean isOne() method in class:SecP256K1FieldElement
43 return Nat256.isOne(x);
143 if (Nat256.isZero(x1) || Nat256.isOne(x1))
H A DSecP256R1FieldElement.java41 public boolean isOne() method in class:SecP256R1FieldElement
43 return Nat256.isOne(x);
134 if (Nat256.isZero(x1) || Nat256.isOne(x1))
H A DSecP384R1FieldElement.java41 public boolean isOne() method in class:SecP384R1FieldElement
43 return Nat.isOne(12, x);
134 if (Nat.isZero(12, x1) || Nat.isOne(12, x1))
H A DSecP521R1FieldElement.java41 public boolean isOne() method in class:SecP521R1FieldElement
43 return Nat.isOne(17, x);
135 if (Nat.isZero(17, x1) || Nat.isOne(17, x1))
H A DSecP224K1FieldElement.java45 public boolean isOne() method in class:SecP224K1FieldElement
47 return Nat224.isOne(x);
149 if (Nat224.isZero(x1) || Nat224.isOne(x1))
H A DSecP224R1FieldElement.java42 public boolean isOne() method in class:SecP224R1FieldElement
44 return Nat224.isOne(x);
133 if (Nat224.isZero(c) || Nat224.isOne(c))
194 return Nat224.isOne(t1);
/external/junit-params/src/test/java/junitparams/
H A DParamsInAnnotationTest.java21 public void multipleParamsCommaSeparated(int number, boolean isOne) throws Exception { argument
22 if (isOne)
30 public void multipleParamsPipeSeparated(int number, boolean isOne) throws Exception { argument
31 if (isOne)
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp68 inline bool isOne(const Expr *E) { function in class:__anon1580::WalkAST
121 if (isSizeof(L, DstArg) && isOne(R->IgnoreParenCasts()))
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
H A DNat192.java289 public static boolean isOne(int[] x) method in class:Nat192
H A DNat224.java314 public static boolean isOne(int[] x) method in class:Nat224
H A DNat256.java384 public static boolean isOne(int[] x) method in class:Nat256
H A DNat.java396 public static boolean isOne(int len, int[] x) method in class:Nat
/external/clang/include/clang/AST/
H A DCharUnits.h118 /// isOne - Test whether the quantity equals one.
119 bool isOne() const { return Quantity == 1; } function in class:clang::CharUnits
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECFieldElement.java32 public boolean isOne() method in class:ECFieldElement
235 if (this.isZero() || this.isOne()) // earlier JDK compatibility
620 public boolean isOne() method in class:ECFieldElement.F2m
622 return x.isOne();
796 return (x.isZero() || x.isOne()) ? this : squarePow(m - 1);
H A DLongArray.java376 public boolean isOne() method in class:LongArray
/external/compiler-rt/lib/BlocksRuntime/
H A Druntime.c213 static void *(*_Block_allocator)(const unsigned long, const bool isOne, const bool isObject) = _Block_alloc_default;
231 void _Block_use_GC( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject), argument
254 void _Block_use_GC5( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject), argument
/external/swiftshader/third_party/LLVM/include/llvm/
H A DConstants.h165 bool isOne() const { function in class:llvm::ConstantInt
/external/llvm/include/llvm/IR/
H A DConstants.h190 bool isOne() const { function in class:llvm::final
/external/llvm/include/llvm/Support/
H A DScaledNumber.h545 bool isOne() const { function in class:llvm::ScaledNumber
/external/llvm/lib/IR/
H A DConstantFold.cpp639 bool isOne = isa<ConstantInt>(Idx) && cast<ConstantInt>(Idx)->isOne(); local
640 if (Constant *C = getFoldedSizeOf(Ty, DestTy, !isOne)) {
652 if (CI->isOne() &&
2010 if (!cast<ConstantInt>(Idxs[0])->isOne())
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DConstantFold.cpp615 bool isOne = isa<ConstantInt>(Idx) && cast<ConstantInt>(Idx)->isOne(); local
616 if (Constant *C = getFoldedSizeOf(Ty, DestTy, !isOne)) {
628 if (CI->isOne() &&
1039 if (CI2->isOne())
2161 if (!cast<ConstantInt>(Idxs[0])->isOne())
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp278 bool SCEV::isOne() const { function in class:SCEV
280 return SC->getValue()->isOne();
390 if (CI->isOne()) {
412 if (CI->isOne() &&
721 if (Denominator->isOne()) {
4233 return getSCEV(CI->isOne() ? TrueVal : FalseVal);
8670 if (!Stride->isOne() && doesIVOverflowOnLT(RHS, Stride, IsSigned, NoWrap))
8745 if (!Stride->isOne() && doesIVOverflowOnGT(RHS, Stride, IsSigned, NoWrap))

Completed in 468 milliseconds

12