HomeSort by relevance Sort by last modified time
    Searched refs:MappedId (Results 1 - 2 of 2) sorted by null

  /external/openfst/src/include/fst/
equivalent.h 47 // disjoint, we map Arc::StateId on the type MappedId. The states of
58 typedef StateId MappedId; // ID for an equivalence class.
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 's' is fina
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
equivalent.h 37 // disjoint, we map Arc::StateId on the type MappedId. The states of
48 typedef int32 MappedId; // ID for an equivalence class.
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 's' is fina
    [all...]

Completed in 95 milliseconds