Searched refs:isOne (Results 1 - 25 of 105) sorted by relevance

12345

/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/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
H A DTJScalingFactor.java91 public boolean isOne() { method in class:TJScalingFactor
/external/compiler-rt/lib/BlocksRuntime/
H A DBlock_private.h138 BLOCK_EXPORT void _Block_use_GC( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject),
145 BLOCK_EXPORT void _Block_use_GC5( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject),
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/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
H A DMod.java28 if (Nat.isOne(len, x))
43 if (Nat.isOne(len, u))
68 if (Nat.isOne(uvLen, u))
80 if (Nat.isOne(uvLen, v))
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
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 DSecP256R1FieldElement.java41 public boolean isOne() method in class:SecP256R1FieldElement
43 return Nat256.isOne(x);
134 if (Nat256.isZero(x1) || Nat256.isOne(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 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);
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 DSecP224K1FieldElement.java45 public boolean isOne() method in class:SecP224K1FieldElement
47 return Nat224.isOne(x);
149 if (Nat224.isZero(x1) || Nat224.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 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 DSecP192K1Point.java98 boolean Z1IsOne = Z1.isOne();
117 boolean Z2IsOne = Z2.isOne();
246 if (!Z1.isOne())
H A DSecP192R1Point.java97 boolean Z1IsOne = Z1.isOne();
116 boolean Z2IsOne = Z2.isOne();
221 boolean Z1IsOne = Z1.isOne();
H A DSecP224K1Point.java98 boolean Z1IsOne = Z1.isOne();
117 boolean Z2IsOne = Z2.isOne();
246 if (!Z1.isOne())
H A DSecP224R1Point.java96 boolean Z1IsOne = Z1.isOne();
115 boolean Z2IsOne = Z2.isOne();
219 boolean Z1IsOne = Z1.isOne();
H A DSecP256K1Point.java98 boolean Z1IsOne = Z1.isOne();
117 boolean Z2IsOne = Z2.isOne();
246 if (!Z1.isOne())
H A DSecP256R1Point.java96 boolean Z1IsOne = Z1.isOne();
115 boolean Z2IsOne = Z2.isOne();
219 boolean Z1IsOne = Z1.isOne();
H A DSecP384R1Point.java96 boolean Z1IsOne = Z1.isOne();
115 boolean Z2IsOne = Z2.isOne();
220 boolean Z1IsOne = Z1.isOne();
H A DSecP521R1Point.java94 boolean Z1IsOne = Z1.isOne();
113 boolean Z2IsOne = Z2.isOne();
214 boolean Z1IsOne = Z1.isOne();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java221 || zs[0].isOne();
247 if (Z1.isOne())
557 if (!Z.isOne())
571 if (!Z.isOne())
714 boolean Z1IsOne = Z1.isOne();
715 boolean Z2IsOne = Z2.isOne();
757 boolean Z1IsOne = Z1.isOne();
800 boolean Z2IsOne = Z2.isOne();
917 boolean Z1IsOne = Z1.isOne();
947 boolean Z1IsOne = Z1.isOne();
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp68 inline bool isOne(const Expr *E) { function in class:__anon1628::WalkAST
121 if (isSizeof(L, DstArg) && isOne(R->IgnoreParenCasts()))
/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/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp127 if (ExpectedValue->isOne())

Completed in 602 milliseconds

12345