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

123

/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/llvm/unittests/VMCore/
H A DConstantsTest.cpp21 Constant* Zero = ConstantInt::get(Int1, 0); local
28 EXPECT_EQ(Zero, ConstantExpr::getAdd(One, One));
32 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One));
36 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, NegOne));
40 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One));
44 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne));
48 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One));
56 EXPECT_EQ(One, ConstantExpr::getShl(One, Zero));
88 EXPECT_EQ(Zero, ConstantExpr::getSRem(NegOne, One));
92 EXPECT_EQ(Zero, ConstantExp
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DOptimalEdgeProfiling.cpp123 Constant *Zero = ConstantInt::get(Int32, 0); local
154 Initializer[i++] = (Zero);
177 Initializer[i++] = (Zero);
205 Initializer[i++] = (Zero);
/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 Dfloat-weight.h198 static const TropicalWeightTpl<T> Zero() { function in class:fst::TropicalWeightTpl
322 static const LogWeightTpl<T> Zero() { function in class:fst::LogWeightTpl
456 static const MinMaxWeightTpl<T> Zero() { function in class:fst::MinMaxWeightTpl
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();
H A Dsparse-tuple-weight.h96 static const SparseTupleWeight<W, K> &Zero() { function in class:fst::SparseTupleWeight
169 Init(W::Zero());
212 // Assumed default value of uninitialized keys, by default W::Zero()
H A Dstring-weight.h86 static const StringWeight<L, S> &Zero() { function in class:fst::StringWeight
347 w = StringWeight<L, S>::Zero();
367 // equality is required (for non-Zero() input. This restriction
374 if (w1 == StringWeight<L, S>::Zero())
376 if (w2 == StringWeight<L, S>::Zero())
397 if (w1 == StringWeight<L, STRING_LEFT>::Zero())
399 if (w2 == StringWeight<L, STRING_LEFT>::Zero())
418 if (w1 == StringWeight<L, STRING_RIGHT>::Zero())
420 if (w2 == StringWeight<L, STRING_RIGHT>::Zero())
438 if (w1 == StringWeight<L, S>::Zero() || w
[all...]
/external/clang/lib/CodeGen/
H A DCGCUDANV.cpp109 llvm::Constant *Zero = llvm::ConstantInt::get(IntTy, 0); local
110 llvm::Value *CSZero = CGF.Builder.CreateICmpEQ(CS.getInstruction(), Zero);
/external/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h160 APInt Zero; member in class:llvm::ObjectSizeOffsetVisitor
221 Value *Zero; member in class:llvm::ObjectSizeOffsetEvaluator
/external/webkit/Source/JavaScriptCore/assembler/
H A DMacroAssemblerSH4.cpp44 const Condition MacroAssemblerSH4::Zero = SH4Assembler::EQ; member in class:JSC::MacroAssemblerSH4
/external/clang/include/clang/AST/
H A DCharUnits.h53 /// Zero - Construct a CharUnits quantity of zero.
54 static CharUnits Zero() { function in class:clang::CharUnits
129 /// Zero is not a power of two.
/external/libvpx/vp8/decoder/
H A Ddecodemv.c286 const MV Zero = { 0, 0}; local
383 *mv = Zero;
440 *mv = Zero;
497 mi->bmi[j].mv.as_mv = Zero;
/external/openfst/src/include/fst/script/
H A Dweight-class.h119 static const WeightClass &Zero() { function in class:fst::script::WeightClass
148 static const W zero = W::Zero();
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfloat-weight.h126 static const TropicalWeight Zero() { return TropicalWeight(kPosInfinity); } function in class:fst::TropicalWeight
192 static const LogWeight Zero() { return LogWeight(kPosInfinity); } function in class:fst::LogWeight
H A Dproduct-weight.h39 static const ProductWeight<W1, W2> &Zero() { function in class:fst::ProductWeight
40 static const ProductWeight<W1, W2> zero(W1::Zero(), W2::Zero());
159 W1 w1 = W1::Zero();
163 W2 w2 = W2::Zero();
H A Dstring-weight.h83 static const StringWeight<L, S> &Zero() { function in class:fst::StringWeight
339 w = StringWeight<L, S>::Zero();
359 // equality is required (for non-Zero() input. This restriction
364 if (w1 == StringWeight<L, S>::Zero())
366 if (w2 == StringWeight<L, S>::Zero())
381 if (w1 == StringWeight<L, STRING_LEFT>::Zero())
383 if (w2 == StringWeight<L, STRING_LEFT>::Zero())
400 if (w1 == StringWeight<L, STRING_RIGHT>::Zero())
402 if (w2 == StringWeight<L, STRING_RIGHT>::Zero())
418 if (w1 == StringWeight<L, S>::Zero() || w
[all...]
/external/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp131 Value *Zero = ConstantInt::get(Int32Ty, 0); local
133 Value *Idxs[2] = { Zero, One };
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp484 Constant *Zero = Constant::getNullValue(Type::getInt32Ty(SI.getContext())); local
485 NewGEPIndices.push_back(Zero);
491 NewGEPIndices.push_back(Zero);
494 NewGEPIndices.push_back(Zero);

Completed in 369 milliseconds

123