Home | History | Annotate | Download | only in lib

Lines Matching full: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;
135 uint64 FactorWeightProperties(uint64 inprops) {
136 uint64 outprops = (kExpanded | kMutable | kError | kAcceptor |
147 uint64 InvertProperties(uint64 inprops) {
148 uint64 outprops = (kExpanded | kMutable | kError | kAcceptor | kNotAcceptor |
185 uint64 ProjectProperties(uint64 inprops, bool project_input) {
186 uint64 outprops = kAcceptor;
235 uint64 RandGenProperties(uint64 inprops, bool weighted) {
236 uint64 outprops = kAcyclic | kInitialAcyclic | kAccessible;
252 uint64 ReplaceProperties(const vector<uint64>& inprops,
258 uint64 outprops = 0;
261 uint64 access_props = no_empty_fsts ? kAccessible | kCoAccessible : 0;
268 uint64 props = 0;
316 uint64 RelabelProperties(uint64 inprops) {
317 uint64 outprops = (kExpanded | kMutable | kError |
329 uint64 ReverseProperties(uint64 inprops) {
330 uint64 outprops =
338 uint64 ReweightProperties(uint64 inprops) {
339 uint64 outprops = inprops & kWeightInvariantProperties;
345 uint64 RmEpsilonProperties(uint64 inprops, bool delayed) {
346 uint64 outprops = kNoEpsilons;
362 uint64 ShortestPathProperties(uint64 props) {
367 uint64 SynchronizeProperties(uint64 inprops) {
368 uint64 outprops = (kError | kAcceptor | kAcyclic | kAccessible |
376 uint64 UnionProperties(uint64 inprops1, uint64 inprops2, bool delayed) {
377 uint64 outprops = (kAcceptor | kUnweighted | kAcyclic | kAccessible)