Searched refs:Value2 (Results 1 - 17 of 17) sorted by relevance

/external/openfst/src/include/fst/
H A Dsigned-log-weight.h38 using PairWeight<X1, X2>::Value2;
96 if (Value2() == X2::Zero() || Value1().Value() > 0.0)
100 size_t h2 = Value2().Hash();
114 T f1 = w1.Value2().Value();
115 T f2 = w2.Value2().Value();
147 SignedLogWeightTpl<T> minus_w2(-w2.Value1().Value(), w2.Value2());
158 T f1 = w1.Value2().Value();
159 T f2 = w2.Value2().Value();
174 T f1 = w1.Value2().Value();
175 T f2 = w2.Value2()
[all...]
H A Dlexicographic-weight.h43 using PairWeight<W1, W2>::Value2;
97 if (!Value1().Member() || !Value2().Member()) return false;
99 if (Value1() == W1::Zero() && Value2() == W2::Zero()) return true;
100 if (Value1() != W1::Zero() && Value2() != W2::Zero()) return true;
129 if (less2(w.Value2(), v.Value2())) return w;
130 if (less2(v.Value2(), w.Value2())) return v;
138 Times(w.Value2(), v.Value2()));
[all...]
H A Dproduct-weight.h95 Plus(w.Value2(), v.Value2()));
102 Times(w.Value2(), v.Value2()));
110 Divide(w.Value2(), v.Value2(), typ));
H A Dexpectation-weight.h52 using PairWeight<X1, X2>::Value2;
120 Plus(w.Value2(), v.Value2()));
128 Plus(Times(w.Value1(), v.Value2()),
129 Times(w.Value2(), v.Value1())));
H A Dpair-weight.h83 value2_ = w.Value2();
108 const W2& Value2() const { return value2_; } function in class:fst::PairWeight
215 return w.Value1() == v.Value1() && w.Value2() == v.Value2();
221 return w1.Value1() != w2.Value1() || w1.Value2() != w2.Value2();
230 ApproxEqual(w1.Value2(), w2.Value2(), delta);
242 return strm << w.Value1() << separator << w.Value2();
252 << w.Value2() << close_pare
[all...]
H A Dpush.h156 ptype & kPushRemoveTotalWeight ? total_weight.Value2()
H A Dfactor-weight.h137 GallicWeight<L, W, S> w1(iter.Value().first, weight_.Value2());
H A Darc-map.h823 AW w2 = arc.weight.Value2();
895 AW w2 = arc.weight.Value2();
H A Ddeterminize.h104 weight_common_divisor_(w1.Value2(), w2.Value2()));
/external/clang/test/SemaTemplate/
H A Ddefault-arguments.cpp66 template<T Value1 = sizeof(T), T Value2 = sizeof(U),
67 T Value3 = Value1 + Value2>
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMachObjectWriter.cpp168 const uint32_t Value2) {
173 MRE.r_word1 = Value2;
219 uint32_t Value2 = 0; local
229 Value2 = Writer->getSymbolAddress(B_SD, Layout);
284 Log2Size, IsPCRel, Value2);
165 makeScatteredRelocationInfo(MachO::any_relocation_info &MRE, const uint32_t Addr, const unsigned Type, const unsigned Log2Size, const unsigned IsPCRel, const uint32_t Value2) argument
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp163 uint32_t Value2 = 0; local
178 Value2 = Writer->getSymbolAddress(B_SD, Layout);
229 MRE.r_word1 = Value2;
268 uint32_t Value2 = 0; local
281 Value2 = Writer->getSymbolAddress(B_SD, Layout);
294 MRE.r_word1 = Value2;
/external/clang/test/SemaCXX/
H A Dswitch-implicit-fallthrough.cpp213 Value1, Value2 enumerator in enum:Enum
225 case Value2:
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp367 uint32_t Value2 = 0; local
384 Value2 = Writer->getSymbolAddress(B_SD, Layout);
410 MRE.r_word1 = Value2;
/external/pdfium/fpdfsdk/include/
H A Dfsdk_mgr.h505 TYPE Value2 = this->GetAt(nStopPos); local
507 int iGreate = (*pCompare)(Value1, Value2);
510 this->SetAt(nStartPos, Value2);
/external/clang/lib/Analysis/
H A DCFG.cpp662 const llvm::APSInt &Value2) {
663 assert(Value1.isSigned() == Value2.isSigned());
668 return TryResult(Value1 == Value2);
670 return TryResult(Value1 != Value2);
672 return TryResult(Value1 < Value2);
674 return TryResult(Value1 <= Value2);
676 return TryResult(Value1 > Value2);
678 return TryResult(Value1 >= Value2);
757 // Value less than both Value1 and Value2
761 // Value between Value1 and Value2
660 analyzeLogicOperatorCondition(BinaryOperatorKind Relation, const llvm::APSInt &Value1, const llvm::APSInt &Value2) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1935 SDValue Value1, Value2;
1957 } else if (!Value2.getNode()) {
1959 Value2 = V;
1960 } else if (V != Value1 && V != Value2) {
2024 if (Value2.getNode())
2025 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);

Completed in 983 milliseconds