Searched defs:Zero (Results 1 - 25 of 90) sorted by last modified time

1234

/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/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsio1.c172 cmsUInt16Number Zero[2] = { 0x8080, 0x8080 }; local
176 EmptyTab = cmsBuildTabulatedToneCurve16(ContextID, 2, Zero);
H A Dcmsvirt.c827 cmsUInt16Number Zero[2] = { 0, 0 }; local
847 EmptyTab = cmsBuildTabulatedToneCurve16(ContextID, 2, 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 Dfloat-weight.h201 static const TropicalWeightTpl<T> Zero() { function in class:fst::TropicalWeightTpl
325 static const LogWeightTpl<T> Zero() { function in class:fst::LogWeightTpl
459 static const MinMaxWeightTpl<T> Zero() { function in class:fst::MinMaxWeightTpl
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 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 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 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 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 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...]
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/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();
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTestBase.h165 Value *Zero = ConstantInt::get(Context, APInt(32, 0)); local
166 Builder.CreateCondBr(Builder.CreateICmpEQ(Param, Zero),
/external/llvm/unittests/IR/
H A DConstantsTest.cpp24 Constant* Zero = ConstantInt::get(Int1, 0); local
31 EXPECT_EQ(Zero, ConstantExpr::getAdd(One, One));
35 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One));
39 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, NegOne));
43 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One));
47 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne));
51 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One));
59 EXPECT_EQ(One, ConstantExpr::getShl(One, Zero));
91 EXPECT_EQ(Zero, ConstantExpr::getSRem(NegOne, One));
95 EXPECT_EQ(Zero, ConstantExp
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp107 cl::desc("Sets the SIMD width. Zero is autoselect."));
112 "Zero is autoselect."));
1642 Constant *Zero = Builder.getInt32(0);
1651 FirstBasePtr = Builder.CreateExtractElement(FirstBasePtr, Zero);
1683 Index = Builder.CreateExtractElement(Index, Zero);
1694 Ptr = Builder.CreateExtractElement(PtrVal[0], Zero);
2084 // The loop index does not have to start at Zero. Find the original start
2343 Value *Zero = ConstantInt::get(CountRoundDown->getType(), 0); local
2344 Value *NegIdx = BypassBuilder.CreateSub(Zero, CountRoundDown,
2606 Constant *Zero local
2889 Value *Zero = ConstantInt::get(IntegerType::getInt1Ty(BB->getContext()), 0); local
[all...]
/external/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h166 APInt Zero; member in class:llvm::ObjectSizeOffsetVisitor
230 Value *Zero; member in class:llvm::ObjectSizeOffsetEvaluator
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp169 Constant *Zero = Constant::getNullValue(DstEltTy); local
175 Constant *Elt = Zero;
182 // Zero extend the element to the right size.
H A DDependenceAnalysis.cpp90 STATISTIC(WeakZeroSIVapplications, "Weak-Zero SIV applications");
91 STATISTIC(WeakZeroSIVsuccesses, "Weak-Zero SIV successes");
92 STATISTIC(WeakZeroSIVindependence, "Weak-Zero SIV independence");
1101 // as "Delta might be Zero"
1556 // Weak-Zero SIV test.
1591 DEBUG(dbgs() << "\tWeak-Zero (src) SIV test\n");
1667 // Weak-Zero SIV test.
1701 DEBUG(dbgs() << "\tWeak-Zero (dst) SIV test\n");
2707 Bound[K].Lower[Dependence::DVEntry::EQ] = NegativePart; // Zero
2710 Bound[K].Upper[Dependence::DVEntry::EQ] = PositivePart; // Zero
2826 const SCEV *Zero = SE->getConstant(Subscript->getType(), 0); local
[all...]
H A DScalarEvolutionExpander.cpp343 const SCEV *Zero = SE.getConstant(Ty, 0); local
344 AddRecs.push_back(SE.getAddRecExpr(Zero,
349 Ops[i] = Zero;
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp3282 ConstantInt *Zero = dyn_cast<ConstantInt>(Cmp->getOperand(1)); local
3283 if (!Zero || !Zero->isZero())
3314 CmpInst::Create(Cmp->getOpcode(), Cmp->getPredicate(), NewAnd, Zero,

Completed in 1040 milliseconds

1234