Home
last modified time | relevance | path

Searched refs:props1 (Results 1 – 17 of 17) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dintersect.h53 uint64 props1 = fst1.Properties(kFstProperties, false); in IntersectFst() local
55 Impl()->SetProperties(IntersectProperties(props1, props2), in IntersectFst()
65 uint64 props1 = fst1.Properties(kFstProperties, false); in IntersectFst() local
67 Impl()->SetProperties(IntersectProperties(props1, props2), in IntersectFst()
Ddifference.h59 uint64 props1 = fst1.Properties(kFstProperties, false); in DifferenceFst() local
61 Impl()->SetProperties(DifferenceProperties(props1, props2), in DifferenceFst()
73 uint64 props1 = fst1.Properties(kFstProperties, false); in DifferenceFst() local
75 Impl()->SetProperties(DifferenceProperties(props1, props2), in DifferenceFst()
Drational.h64 uint64 props1 = fst1.Properties(kFstProperties, false); in InitUnion() local
81 SetProperties(UnionProperties(props1, props2, true), kCopyProperties); in InitUnion()
86 uint64 props1 = fst1.Properties(kFstProperties, false); in InitConcat() local
104 SetProperties(ConcatProperties(props1, props2, true), kCopyProperties); in InitConcat()
137 uint64 props1 = Properties(); in AddUnion() local
148 SetProperties(UnionProperties(props1, props2, true), kCopyProperties); in AddUnion()
153 uint64 props1 = Properties(); in AddConcat() local
164 SetProperties(ConcatProperties(props1, props2, true), kCopyProperties); in AddConcat()
Dtest-properties.h42 inline bool CompatProperties(uint64 props1, uint64 props2) { in CompatProperties() argument
43 uint64 known_props1 = KnownProperties(props1); in CompatProperties()
46 uint64 incompat_props = (props1 & known_props) ^ (props2 & known_props); in CompatProperties()
52 << ": props1 = " << (props1 & prop ? "true" : "false") in CompatProperties()
Dcompose.h109 uint64 props1 = fst1.Properties(kFstProperties, false); in ComposeFstImplBase() local
111 SetProperties(ComposeProperties(props1, props2), kCopyProperties); in ComposeFstImplBase()
775 uint64 props1 = fst1.Properties(sort_props_mask, true); in Init() local
778 props1 |= fst1.Properties(opt_props_mask, false); in Init()
782 props1 |= fst1.Properties(kUnweighted, true); in Init()
784 if (!(props1 & kUnweighted) && !(props2 & kUnweighted)) in Init()
800 if ((props1 & kString) && in Init()
809 ((props1 & kDetStringOptProps) == kDetStringOptProps)) { in Init()
Dconcat.h48 uint64 props1 = fst1->Properties(kFstProperties, false); in Concat() local
78 fst1->SetProperties(ConcatProperties(props1, props2), kFstProperties); in Concat()
Dunion.h48 uint64 props1 = fst1->Properties(kFstProperties, false); in Union() local
80 fst1->SetProperties(UnionProperties(props1, props2), kFstProperties); in Union()
Dproduct-weight.h89 uint64 props1 = W1::Properties(); in Properties() local
91 return props1 & props2 & (kLeftSemiring | kRightSemiring | in Properties()
/external/openfst/src/include/fst/
Drational.h123 uint64 props1 = fst1.Properties(kFstProperties, false); in InitUnion() local
138 SetProperties(UnionProperties(props1, props2, true), kCopyProperties); in InitUnion()
145 uint64 props1 = fst1.Properties(kFstProperties, false); in InitConcat() local
161 SetProperties(ConcatProperties(props1, props2, true), kCopyProperties); in InitConcat()
196 uint64 props1 = FstImpl<A>::Properties(); in AddUnion() local
207 SetProperties(UnionProperties(props1, props2, true), kCopyProperties); in AddUnion()
214 uint64 props1 = FstImpl<A>::Properties(); in AddConcat() local
228 SetProperties(ConcatProperties(props1, props2, true), kCopyProperties); in AddConcat()
Dconcat.h62 uint64 props1 = fst1->Properties(kFstProperties, false); in Concat() local
101 fst1->SetProperties(ConcatProperties(props1, props2), kFstProperties); in Concat()
127 uint64 props1 = fst1.Properties(kFstProperties, false); in Concat() local
132 if (props1 & kError) fst2->SetProperties(kError, kError); in Concat()
160 fst2->SetProperties(ConcatProperties(props1, props2), kFstProperties); in Concat()
Dtest-properties.h46 inline bool CompatProperties(uint64 props1, uint64 props2) { in CompatProperties() argument
47 uint64 known_props1 = KnownProperties(props1); in CompatProperties()
50 uint64 incompat_props = (props1 & known_props) ^ (props2 & known_props); in CompatProperties()
56 << ": props1 = " << (props1 & prop ? "true" : "false") in CompatProperties()
Dstate-table.h393 uint64 props1 = kString; in StringDetComposeStateTable() local
395 if (fst1.Properties(props1, true) != props1 || in StringDetComposeStateTable()
435 uint64 props1 = kODeterministic | kNoOEpsilons; in DetStringComposeStateTable() local
437 if (fst1.Properties(props1, true) != props1 || in DetStringComposeStateTable()
Dproduct-weight.h74 uint64 props1 = W1::Properties(); in Properties() local
76 return props1 & props2 & (kLeftSemiring | kRightSemiring | in Properties()
Dexpectation-weight.h109 uint64 props1 = W1::Properties(); in Properties() local
111 return props1 & props2 & (kLeftSemiring | kRightSemiring | in Properties()
Dlexicographic-weight.h113 uint64 props1 = W1::Properties(); in Properties() local
115 return props1 & props2 & (kLeftSemiring | kRightSemiring | kPath | in Properties()
Dunion.h61 uint64 props1 = fst1->Properties(kFstProperties, false); in Union() local
105 fst1->SetProperties(UnionProperties(props1, props2), kFstProperties); in Union()
Dcompose.h567 int64 props1 = fst1.Properties(kUnweighted, true); in CreateBase2() local
569 if (!(props1 & kUnweighted) && !(props2 & kUnweighted)) { in CreateBase2()