Home | History | Annotate | Download | only in fst

Lines Matching full:uint64

39 inline uint64 KnownProperties(uint64 props) {
46 inline bool CompatProperties(uint64 props1, uint64 props2) {
47 uint64 known_props1 = KnownProperties(props1);
48 uint64 known_props2 = KnownProperties(props2);
49 uint64 known_props = known_props1 & known_props2;
50 uint64 incompat_props = (props1 & known_props) ^ (props2 & known_props);
52 uint64 prop = 1;
76 uint64 ComputeProperties(const Fst<Arc> &fst, uint64 mask, uint64 *known,
82 uint64 fst_props = fst.Properties(kFstProperties, false); // Fst-stored
86 uint64 known_props = KnownProperties(fst_props);
97 uint64 comp_props = fst_props & kBinaryProperties;
102 uint64 dfs_props = kCyclic | kAcyclic | kInitialCyclic | kInitialAcyclic |
235 uint64 TestProperties(const Fst<Arc> &fst, uint64 mask, uint64 *known) {
237 uint64 stored_props = fst.Properties(kFstProperties, false);
238 uint64 computed_props = ComputeProperties(fst, mask, known, false);