Searched defs:MappedId (Results 1 - 2 of 2) sorted by relevance

/external/openfst/src/include/fst/
H A Dequivalent.h47 // disjoint, we map Arc::StateId on the type MappedId. The states of
58 typedef StateId MappedId; // ID for an equivalence class. typedef in struct:fst::EquivalenceUtil
60 // MappedId for an implicit dead state.
61 static const MappedId kDeadState = 0;
63 // MappedId for lookup failure.
64 static const MappedId kInvalidId = -1;
69 static MappedId MapState(StateId s, int32 which_fst) {
75 (static_cast<MappedId>(s) << 1) + which_fst;
78 static StateId UnMapState(MappedId id) {
81 // Convenience function: checks if state with MappedId '
176 typedef typename Util::MappedId MappedId; typedef
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dequivalent.h37 // disjoint, we map Arc::StateId on the type MappedId. The states of
48 typedef int32 MappedId; // ID for an equivalence class. typedef in struct:fst::EquivalenceUtil
50 // MappedId for an implicit dead state.
51 static const MappedId kDeadState = 0;
53 // MappedId for lookup failure.
54 static const MappedId kInvalidId = -1;
59 static MappedId MapState(StateId s, int32 which_fst) {
65 (static_cast<MappedId>(s) << 1) + which_fst;
68 static StateId UnMapState(MappedId id) {
71 // Convenience function: checks if state with MappedId '
142 typedef typename Util::MappedId MappedId; typedef
[all...]

Completed in 100 milliseconds