Lines Matching refs:uint64

38 uint64 ClosureProperties(uint64 inprops, bool star, bool delayed) {
39 uint64 outprops = (kError | kAcceptor | kUnweighted | kAccessible) & inprops;
51 uint64 ComplementProperties(uint64 inprops) {
52 uint64 outprops = kAcceptor | kUnweighted | kNoEpsilons |
63 uint64 ComposeProperties(uint64 inprops1, uint64 inprops2) {
64 uint64 outprops = kError & (inprops1 | inprops2);
82 uint64 ConcatProperties(uint64 inprops1, uint64 inprops2, bool delayed) {
83 uint64 outprops =
116 uint64 DeterminizeProperties(uint64 inprops, bool has_subsequential_label) {
117 uint64 outprops = kAccessible;
133 uint64 FactorWeightProperties(uint64 inprops) {
134 uint64 outprops = (kExpanded | kMutable | kError | kAcceptor |
145 uint64 InvertProperties(uint64 inprops) {
146 uint64 outprops = (kExpanded | kMutable | kError | kAcceptor | kNotAcceptor |
183 uint64 ProjectProperties(uint64 inprops, bool project_input) {
184 uint64 outprops = kAcceptor;
233 uint64 RandGenProperties(uint64 inprops, bool weighted) {
234 uint64 outprops = kAcyclic | kInitialAcyclic | kAccessible;
250 uint64 ReplaceProperties(const vector<uint64>& inprops,
256 uint64 outprops = 0;
259 uint64 access_props = no_empty_fsts ? kAccessible | kCoAccessible : 0;
266 uint64 props = 0;
314 uint64 RelabelProperties(uint64 inprops) {
315 uint64 outprops = (kExpanded | kMutable | kError |
327 uint64 ReverseProperties(uint64 inprops) {
328 uint64 outprops =
336 uint64 ReweightProperties(uint64 inprops) {
337 uint64 outprops = inprops & kWeightInvariantProperties;
343 uint64 RmEpsilonProperties(uint64 inprops, bool delayed) {
344 uint64 outprops = kNoEpsilons;
360 uint64 ShortestPathProperties(uint64 props) {
365 uint64 SynchronizeProperties(uint64 inprops) {
366 uint64 outprops = (kError | kAcceptor | kAcyclic | kAccessible |
374 uint64 UnionProperties(uint64 inprops1, uint64 inprops2, bool delayed) {
375 uint64 outprops = (kAcceptor | kUnweighted | kAcyclic | kAccessible)