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

/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/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp68 inline bool isOne(const Expr *E) { function in class:__anon1301::WalkAST
121 if (isSizeof(L, DstArg) && isOne(R->IgnoreParenCasts()))
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
H A DNat192.java243 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.java337 public static boolean isOne(int[] x) method in class:Nat256
H A DNat.java391 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
225 if (this.isZero() || this.isOne()) // earlier JDK compatibility
605 public boolean isOne() method in class:ECFieldElement.F2m
607 return x.isOne();
777 if (x1.isOne() || x1.isZero())
H A DLongArray.java374 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/llvm/include/llvm/IR/
H A DConstants.h164 bool isOne() const { function in class:llvm::ConstantInt
/external/llvm/include/llvm/Support/
H A DScaledNumber.h545 bool isOne() const { function in class:llvm::ScaledNumber
/external/llvm/lib/IR/
H A DConstantFold.cpp640 bool isOne = isa<ConstantInt>(Idx) && cast<ConstantInt>(Idx)->isOne(); local
641 if (Constant *C = getFoldedSizeOf(Ty, DestTy, !isOne)) {
653 if (CI->isOne() &&
1985 if (!cast<ConstantInt>(Idxs[0])->isOne())
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp283 bool SCEV::isOne() const { function in class:SCEV
285 return SC->getValue()->isOne();
397 if (CI->isOne()) {
419 if (CI->isOne() &&
7285 if (!Stride->isOne() && doesIVOverflowOnLT(RHS, Stride, IsSigned, NoWrap))
7365 if (!Stride->isOne() && doesIVOverflowOnGT(RHS, Stride, IsSigned, NoWrap))
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp63 bool isOne() const { return isInt() && IntVal == 1; } function in class:__anon10981::FAddendCoef
296 if (That.isOne())
421 if (!BreakNum || Coeff.isOne())
573 return CE.isOne() ? Opnd0.getSymVal() : nullptr;
824 if (!CE.isMinusOne() && !CE.isOne())
850 if (Coeff.isMinusOne() || Coeff.isOne()) {
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1374 bool isOne() const { return Value->isOne(); } function in class:ConstantSDNode

Completed in 526 milliseconds