Searched defs:Zero (Results 1 - 25 of 93) sorted by relevance

1234

/external/v8/test/webkit/
H A Dcomparison-operators.js62 var Zero = 0; variable
90 doTest('Zero', '1', -1);
91 doTest('Zero', '0', 0);
92 doTest('1', 'Zero', 1);
H A Dcomparison-operators-greater.js62 var Zero = 0; variable
80 doTest('Zero', 'letter0', 0);
82 doTest('Zero', '"0"', 0);
100 doTest('Zero', '1', -1);
101 doTest('Zero', '0', 0);
102 doTest('1', 'Zero', 1);
H A Dcomparison-operators-less.js61 var Zero = 0; variable
87 doTest('Zero', 'letter0', 0);
89 doTest('Zero', '"0"', 0);
98 doTest('Zero', '1', -1);
99 doTest('Zero', '0', 0);
100 doTest('1', 'Zero', 1);
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dallocate_shared_no_variadics.pass.cpp25 struct Zero struct
28 Zero() {++count;} function in struct:Zero
29 Zero(Zero const &) {++count;} function in struct:Zero
30 ~Zero() {--count;}
33 int Zero::count = 0;
74 std::shared_ptr<Zero> p = std::allocate_shared<Zero>(Alloc());
75 assert(Zero::count == 1);
77 assert(Zero
[all...]
/external/fdlibm/
H A De_fmod.c23 static const double one = 1.0, Zero[] = {0.0, -0.0,}; variable
25 static double one = 1.0, Zero[] = {0.0, -0.0,}; variable
53 return Zero[(unsigned)sx>>31]; /* |x|=|y| return x*0*/
107 return Zero[(unsigned)sx>>31];
116 return Zero[(unsigned)sx>>31];
/external/compiler-rt/test/ubsan/TestCases/Float/
H A Dcast-overflow.cpp57 unsigned Zero = NearlyMinusOne; // ok local
/external/openfst/src/include/fst/
H A Dexpectation-weight.h21 // One: <One, Zero>
22 // Zero: <Zero, Zero>
64 ExpectationWeight() : PairWeight<X1, X2>(Zero()) { }
75 static const ExpectationWeight<X1, X2> &Zero() { function in class:fst::ExpectationWeight
76 static const ExpectationWeight<X1, X2> zero(X1::Zero(), X2::Zero());
81 static const ExpectationWeight<X1, X2> one(X1::One(), X2::Zero());
H A Dlexicographic-weight.h23 // (for all a,b,c != Zero(): Times(c, a) = Times(c, b) => a = b,
46 using PairWeight<W1, W2>::Zero;
75 static const LexicographicWeight<W1, W2> &Zero() { function in class:fst::LexicographicWeight
76 static const LexicographicWeight<W1, W2> zero(PairWeight<W1, W2>::Zero());
99 if (Value1() == W1::Zero() && Value2() == W2::Zero()) return true;
100 if (Value1() != W1::Zero() && Value2() != W2::Zero()) return true;
H A Dproduct-weight.h37 using PairWeight<W1, W2>::Zero;
52 static const ProductWeight<W1, W2> &Zero() { function in class:fst::ProductWeight
53 static const ProductWeight<W1, W2> zero(PairWeight<W1, W2>::Zero());
H A Dpower-weight.h41 using TupleWeight<W, n>::Zero;
56 static const PowerWeight<W, n> &Zero() { function in class:fst::PowerWeight
57 static const PowerWeight<W, n> zero(TupleWeight<W, n>::Zero());
150 W w = W::Zero();
H A Dpair-weight.h56 static const PairWeight<W1, W2> &Zero() { function in class:fst::PairWeight
57 static const PairWeight<W1, W2> zero(W1::Zero(), W2::Zero());
132 W1 w1 = W1::Zero();
136 W2 w2 = W2::Zero();
181 W1 w1 = W1::Zero();
199 W2 w2 = W2::Zero();
H A Dsigned-log-weight.h57 static const SignedLogWeightTpl<T> &Zero() { function in class:fst::SignedLogWeightTpl
58 static const SignedLogWeightTpl<T> zero(X1(1.0), X2::Zero());
96 if (Value2() == X2::Zero() || Value1().Value() > 0.0)
124 return SignedLogWeightTpl<T>::Zero();
197 return w1.Value2() == LogWeightTpl<T>::Zero()
198 && w2.Value2() == LogWeightTpl<T>::Zero();
210 return (w1.Value2() == LogWeightTpl<T>::Zero()) &&
211 (w2.Value2() == LogWeightTpl<T>::Zero());
H A Dsparse-power-weight.h65 return ApproxEqual(v1, v2, delta_) ? W::One() : W::Zero();
82 using SparseTupleWeight<W, K>::Zero;
102 static const SparsePowerWeight<W, K> &Zero() { function in class:fst::SparsePowerWeight
103 static const SparsePowerWeight<W, K> zero(SparseTupleWeight<W, K>::Zero());
184 W ret(W::Zero());
H A Dtuple-weight.h64 static const TupleWeight<W, n> &Zero() { function in class:fst::TupleWeight
65 static const TupleWeight<W, n> zero(W::Zero());
157 W r = W::Zero();
163 W r = W::Zero();
212 W r = W::Zero();
231 W r = W::Zero();
/external/clang/lib/CodeGen/
H A DCGCUDANV.cpp108 llvm::Constant *Zero = llvm::ConstantInt::get(IntTy, 0); local
109 llvm::Value *CSZero = CGF.Builder.CreateICmpEQ(CS.getInstruction(), Zero);
/external/gptfdisk/
H A Dguid.cc34 Zero();
79 Zero();
129 void GUIDData::Zero(void) { function in class:GUIDData
131 } // GUIDData::Zero()
/external/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h157 APInt Zero; member in class:llvm::ObjectSizeOffsetVisitor
221 Value *Zero; member in class:llvm::ObjectSizeOffsetEvaluator
/external/llvm/lib/Transforms/Scalar/
H A DBDCE.cpp382 Value *Zero = ConstantInt::get(I.getType(), 0); local
384 I.replaceAllUsesWith(Zero);
/external/clang/include/clang/AST/
H A DCharUnits.h52 /// Zero - Construct a CharUnits quantity of zero.
53 static CharUnits Zero() { function in class:clang::CharUnits
128 /// Zero is not a power of two.
/external/clang/include/clang/Basic/
H A DABI.h76 VirtualAdjustment Zero; local
77 return Equals(Zero);
144 VirtualAdjustment Zero; local
145 return Equals(Zero);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DVLASizeChecker.cpp138 DefinedOrUnknownSVal Zero = svalBuilder.makeZeroVal(Ty); local
140 SVal LessThanZeroVal = svalBuilder.evalBinOp(state, BO_LT, sizeD, Zero, Ty);
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp169 const llvm::APSInt &Zero = getBasicVals().getValue(0, DiffTy); local
173 return assumeSymRel(state, Subtraction, Op, Zero);
H A DRangeConstraintManager.cpp356 llvm::APSInt Zero = IntType.getZeroValue(); local
359 if (Ranges->Intersect(BV, F, Zero, Zero).isEmpty())
362 // Zero is a possible value, but it is not the /only/ possible value.
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h24 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
107 * it is redundant to pass \a rows and \a cols as arguments, so Zero() should be used
130 * it is redundant to pass \a size as argument, so Zero() should be used
170 * it is redundant to pass \a nbRows and \a nbCols as arguments, so Zero() should be used
192 * it is redundant to pass \a size as argument, so Zero() should be used
418 * it is redundant to pass \a rows and \a cols as arguments, so Zero() should be used
424 * \sa Zero(), Zero(Index)
428 DenseBase<Derived>::Zero(Index nbRows, Index nbCols) function in class:Eigen::DenseBase
441 * it is redundant to pass \a size as argument, so Zero() shoul
451 DenseBase<Derived>::Zero(Index size) function in class:Eigen::DenseBase
468 DenseBase<Derived>::Zero() function in class:Eigen::DenseBase
[all...]
/external/openfst/src/include/fst/script/
H A Dweight-class.h119 static const WeightClass &Zero() { function in class:fst::script::WeightClass
155 static const W zero = W::Zero();

Completed in 730 milliseconds

1234