HomeSort by relevance Sort by last modified time
    Searched defs:kEncodeWeights (Results 1 - 2 of 2) sorted by null

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
encode.h 28 static const uint32 kEncodeWeights = 0x00002;
75 : encode_flags_(kEncodeLabels | kEncodeWeights) {}
88 if (encode_flags_ & kEncodeWeights) hash ^= x->weight.Hash();
115 flags_ & kEncodeWeights ? arc.weight : Weight::One());
232 if ((arc.nextstate == kNoStateId && !(flags_ & kEncodeWeights)) ||
233 (arc.nextstate == kNoStateId && (flags_ & kEncodeWeights) &&
240 flags_ & kEncodeWeights ? Weight::One() : arc.weight,
251 flags_ & kEncodeWeights ? tuple->weight : arc.weight,
261 if (flags_ & kEncodeWeights)
270 return (type_ == ENCODE && (flags_ & kEncodeWeights))
    [all...]
  /external/openfst/src/include/fst/
encode.h 39 static const uint32 kEncodeWeights = 0x0002;
89 : encode_flags_(kEncodeLabels | kEncodeWeights) {}
103 if (encode_flags_ & kEncodeWeights)
134 flags_ & kEncodeWeights ? arc.weight : Weight::One());
149 flags_ & kEncodeWeights ? arc.weight : Weight::One());
339 return (type_ == ENCODE && (flags_ & kEncodeWeights)) ?
354 if (flags_ & kEncodeWeights)
422 if ((arc.nextstate == kNoStateId && !(flags_ & kEncodeWeights)) ||
423 (arc.nextstate == kNoStateId && (flags_ & kEncodeWeights) &&
430 flags_ & kEncodeWeights ? Weight::One() : arc.weight
    [all...]

Completed in 84 milliseconds