Searched defs:Reverse (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/
H A Dreverse.cc9 extern "C" char* Reverse(const char* s) { function
/external/openfst/src/script/
H A Dreverse.cc24 void Reverse(const FstClass &fst1, MutableFstClass *fst2) { function in namespace:fst::script
25 if (!ArcTypesMatch(fst1, *fst2, "Reverse")) return;
29 Apply<Operation<ReverseArgs> >("Reverse", fst1.ArcType(), &args);
32 REGISTER_FST_OPERATION(Reverse, StdArc, ReverseArgs);
33 REGISTER_FST_OPERATION(Reverse, LogArc, ReverseArgs);
34 REGISTER_FST_OPERATION(Reverse, Log64Arc, ReverseArgs);
/external/openfst/src/include/fst/extensions/pdt/
H A Dreverse.h38 void Reverse(const Fst<Arc> &ifst, function in namespace:fst
45 Reverse(ifst, ofst);
H A Dparen.h439 PdtBalanceData<A> *Reverse(StateId num_states,
460 PdtBalanceData<A> *PdtBalanceData<A>::Reverse( function in class:fst::PdtBalanceData
/external/openfst/src/include/fst/script/
H A Dreverse.h30 void Reverse(ReverseArgs *args) { function in namespace:fst::script
34 Reverse(fst1, fst2);
37 void Reverse(const FstClass &fst1, MutableFstClass *fst2);
/external/openfst/src/include/fst/
H A Dreverse.h36 // weight a.Reverse().
38 // Typically, a = a.Reverse() and Arc = RevArc (e.g. for
43 void Reverse(const Fst<Arc> &ifst, MutableFst<RevArc> *ofst) { function in namespace:fst
69 RevArc oarc(0, 0, final.Reverse(), os);
77 RevArc oarc(iarc.ilabel, iarc.olabel, iarc.weight.Reverse(), os);
H A Dexpectation-weight.h54 using PairWeight<X1, X2>::Reverse;
100 ReverseWeight Reverse() const { function in class:fst::ExpectationWeight
101 return PairWeight<X1, X2>::Reverse();
H A Dlexicographic-weight.h50 using PairWeight<W1, W2>::Reverse;
108 ReverseWeight Reverse() const { function in class:fst::LexicographicWeight
109 return PairWeight<W1, W2>::Reverse();
H A Dproduct-weight.h41 using PairWeight<W1, W2>::Reverse;
84 ReverseWeight Reverse() const { function in class:fst::ProductWeight
85 return PairWeight<W1, W2>::Reverse();
H A Dpower-weight.h45 using TupleWeight<W, n>::Reverse;
91 ReverseWeight Reverse() const { function in class:fst::PowerWeight
92 return TupleWeight<W, n>::Reverse();
H A Dpair-weight.h102 ReverseWeight Reverse() const { function in class:fst::PairWeight
103 return ReverseWeight(value1_.Reverse(), value2_.Reverse());
H A Dsigned-log-weight.h40 using PairWeight<X1, X2>::Reverse;
81 ReverseWeight Reverse() const { function in class:fst::SignedLogWeightTpl
82 return PairWeight<X1, X2>::Reverse();
H A Dsparse-power-weight.h86 using SparseTupleWeight<W, K>::Reverse;
143 ReverseWeight Reverse() const { function in class:fst::SparsePowerWeight
144 return SparseTupleWeight<W, K>::Reverse();
H A Dtuple-weight.h122 ReverseWeight Reverse() const { function in class:fst::TupleWeight
125 w.values_[i] = values_[i].Reverse();
H A Dfloat-weight.h230 TropicalWeightTpl<T> Reverse() const { return *this; } function in class:fst::TropicalWeightTpl
355 LogWeightTpl<T> Reverse() const { return *this; } function in class:fst::LogWeightTpl
491 MinMaxWeightTpl<T> Reverse() const { return *this; } function in class:fst::MinMaxWeightTpl
H A Dsparse-tuple-weight.h159 ReverseWeight Reverse() const { function in class:fst::SparseTupleWeight
162 w.Push(it.Value().first, it.Value().second.Reverse());
H A Dstring-weight.h122 ReverseWeight Reverse() const;
267 StringWeight<L, S>::Reverse() const { function in class:fst::StringWeight
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dreverse.h29 // weight a.Reverse().
31 // Typically, a = a.Reverse() and Arc = RevArc (e.g. for
36 void Reverse(const Fst<Arc> &ifst, MutableFst<RevArc> *ofst) { function in namespace:fst
60 RevArc oarc(0, 0, final.Reverse(), os);
68 RevArc oarc(iarc.ilabel, iarc.olabel, iarc.weight.Reverse(), os);
H A Dfloat-weight.h144 TropicalWeight Reverse() const { return *this; } function in class:fst::TropicalWeight
210 LogWeight Reverse() const { return *this; } function in class:fst::LogWeight
H A Dproduct-weight.h84 ReverseWeight Reverse() const { function in class:fst::ProductWeight
85 return ReverseWeight(value1_.Reverse(), value2_.Reverse());
H A Dstring-weight.h114 ReverseWeight Reverse() const;
259 StringWeight<L, S>::Reverse() const { function in class:fst::StringWeight
/external/ceres-solver/include/ceres/
H A Dordered_groups.h109 // Reverse the order of the groups in place.
110 void Reverse() { function in class:ceres::OrderedGroups
/external/chromium_org/crypto/
H A Dghash.cc40 // Reverse reverses the order of the bits of 4-bit number in |i|.
41 int Reverse(int i) { function in namespace:crypto::__anon8158
60 product_table_[Reverse(1)] = x;
63 product_table_[Reverse(i)] = Double(product_table_[Reverse(i/2)]);
64 product_table_[Reverse(i+1)] = Add(product_table_[Reverse(i)], x);
/external/eigen/Eigen/src/Core/
H A DReverse.h17 /** \class Reverse
34 struct traits<Reverse<MatrixType, Direction> >
70 template<typename MatrixType, int Direction> class Reverse class in namespace:Eigen
71 : public internal::dense_xpr_base< Reverse<MatrixType, Direction> >::type
75 typedef typename internal::dense_xpr_base<Reverse>::type Base;
76 EIGEN_DENSE_PUBLIC_INTERFACE(Reverse)
98 inline Reverse(const MatrixType& matrix) : m_matrix(matrix) { } function in class:Eigen::Reverse
100 EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Reverse)
/external/llvm/utils/TableGen/
H A DSetTheory.cpp114 const bool Reverse; member in struct:__anon21923::RotOp
116 RotOp(bool Rev) : Reverse(Rev) {}
121 if (Reverse)

Completed in 282 milliseconds

12