OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
38
// disjoint, we map Arc::StateId on the type
MappedId
. The states of
49
typedef int32
MappedId
; // ID for an equivalence class.
51
//
MappedId
for an implicit dead state.
52
static const
MappedId
kDeadState = 0;
54
//
MappedId
for lookup failure.
55
static const
MappedId
kInvalidId = -1;
60
static
MappedId
MapState(StateId s, int32 which_fst) {
66
(static_cast<
MappedId
>(s) << 1) + which_fst;
69
static StateId UnMapState(
MappedId
id) {
72
// Convenience function: checks if state with
MappedId
's' is fina
[
all
...]
Completed in 59 milliseconds