Searched defs:opts (Results 1 - 25 of 281) sorted by last modified time

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/drivers/
H A Dnetlink.c175 char opts[16]; member in struct:__anon33629
/external/wpa_supplicant_8/src/drivers/
H A Dnetlink.c175 char opts[16]; member in struct:__anon33882
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Dnetlink.c175 char opts[16]; member in struct:__anon34133
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dsignalbar.cpp30 QStyleOptionProgressBar opts; local
43 opts.minimum = -95;
44 opts.maximum = -35;
45 if (signal < opts.minimum)
46 opts.progress = opts.minimum;
47 else if (signal > opts.maximum)
48 opts.progress = opts.maximum;
50 opts
[all...]
/external/valgrind/main/mpi/
H A Dmpiwrap_type_test.c225 char* opts; local
231 opts = getenv("MPIWRAP_DEBUG");
232 if ((!opts) || NULL==strstr(opts, "initkludge")) {
/external/srec/tools/parseStringTest/
H A DparseStringTest.c104 ESR_ReturnCode Parse(SR_Grammar* grammar, LCHAR* trans, PFile* fout, Opts* opts) argument
113 if (opts->do_check_all_ids)
117 memcpy(&myopts, opts, sizeof(myopts));
136 if (!opts->use_parse_by_string_ids)
286 Opts opts = { 0, 0 }; local
325 opts.use_parse_by_string_ids = 1;
329 opts.do_check_all_ids = 1;
330 opts.use_parse_by_string_ids = 1;
352 if (opts.do_check_all_ids)
354 rc = Parse(grammar, NULL, fout, &opts);
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darcsort.h91 const ArcSortFstOptions &opts)
92 : CacheImpl<A>(opts), fst_(fst.Copy()), comp_(comp) {
199 ArcSortFst(const Fst<A> &fst, const C &comp, const ArcSortFstOptions &opts) argument
200 : impl_(new ArcSortFstImpl<A, C>(fst, comp, opts)) {}
90 ArcSortFstImpl(const Fst<A> &fst, const C &comp, const ArcSortFstOptions &opts) argument
H A Dcache.h78 explicit CacheBaseImpl(const CacheOptions &opts) argument
81 cache_first_state_(0), cache_gc_(opts.gc), cache_size_(0),
82 cache_limit_(opts.gc_limit > kMinCacheLimit || opts.gc_limit == 0 ?
83 opts.gc_limit : kMinCacheLimit) {}
377 explicit CacheImpl(const CacheOptions &opts) argument
378 : CacheBaseImpl< CacheState<A> >(opts) {}
H A Dclosure.h76 ClosureFstOptions(const RationalFstOptions &opts, ClosureType t) argument
77 : RationalFstOptions(opts), type(t) {}
106 ClosureFst(const Fst<A> &fst, const ClosureFstOptions &opts) argument
107 : RationalFst<A>(opts) {
108 Impl()->InitClosure(fst, opts.type);
H A Dcompose.h78 explicit ComposeFstOptions(const CacheOptions &opts) : CacheOptions(opts) {} argument
106 const CacheOptions &opts)
107 :CacheImpl<A>(opts), fst1_(fst1.Copy()), fst2_(fst2.Copy()) {
343 const CacheOptions &opts)
344 :ComposeFstImplBase<A>(fst1, fst2, opts) {
695 const ComposeFstOptions<T> &opts)
696 : impl_(Init(fst1, fst2, opts)) { }
765 const ComposeFstOptions<T> &opts) {
791 return new ComposeFstImpl<A, T>(fst1, fst2, opts);
104 ComposeFstImplBase(const Fst<A> &fst1, const Fst<A> &fst2, const CacheOptions &opts) argument
341 ComposeFstImpl(const Fst<A> &fst1, const Fst<A> &fst2, const CacheOptions &opts) argument
693 ComposeFst(const Fst<A> &fst1, const Fst<A> &fst2, const ComposeFstOptions<T> &opts) argument
762 Init( const Fst<A> &fst1, const Fst<A> &fst2, const ComposeFstOptions<T> &opts) argument
[all...]
H A Dconcat.h118 const ConcatFstOptions &opts) : RationalFst<A>(opts) {
117 ConcatFst(const Fst<A> &fst1, const Fst<A> &fst2, const ConcatFstOptions &opts) argument
H A Dconst-fst.h68 static ConstFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
70 bool Write(ostream &strm, const FstWriteOptions &opts) const;
162 const FstReadOptions &opts) {
165 if (!impl->ReadHeaderAndSymbols(strm, opts, kMinFileVersion, &hdr))
180 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
189 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
197 const FstWriteOptions &opts) const {
202 WriteHeaderAndSymbols(strm, opts, kFileVersion, &hdr);
215 LOG(ERROR) << "ConstFst::Write: Write failed: " << opts.source;
278 static ConstFst<A> *Read(istream &strm, const FstReadOptions &opts) { argument
161 Read(istream &strm, const FstReadOptions &opts) argument
[all...]
H A Ddeterminize.h105 explicit DeterminizeFstOptions(const CacheOptions &opts, float del = kDelta) argument
106 : CacheOptions(opts), delta(del) {}
133 DeterminizeFstImplBase(const Fst<A> &fst, const CacheOptions &opts) argument
134 : CacheImpl<A>(opts), fst_(fst.Copy()) {
223 const DeterminizeFstOptions &opts)
224 : DeterminizeFstImplBase<A>(fst, opts),
225 delta_(opts.delta), common_divisor_(common_divisor),
490 DeterminizeFstImpl(const Fst<A> &fst, const DeterminizeFstOptions &opts);
546 const DeterminizeFstOptions &opts = DeterminizeFstOptions()) {
550 impl_ = new DeterminizeFsaImpl<A, D>(fst, D(), opts);
222 DeterminizeFsaImpl(const Fst<A> &fst, C common_divisor, const DeterminizeFstOptions &opts) argument
614 DeterminizeFst(const Fst<A> &fst, const D &common_divisor, const DeterminizeFstOptions &opts) argument
625 DeterminizeFstImpl( const Fst<A> &fst, const DeterminizeFstOptions &opts) argument
[all...]
H A Ddifference.h67 const DifferenceFstOptions<T> &opts)
70 ComposeFstOptions<T | COMPOSE_FST2_RHO>(opts)) {
130 const DifferenceOptions &opts = DifferenceOptions()) {
134 if (opts.connect)
66 DifferenceFst(const Fst<A> &fst1, const Fst<A> &fst2, const DifferenceFstOptions<T> &opts) argument
H A Dexpanded-fst.h38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) { argument
39 FstReadOptions ropts(opts);
42 hdr = *opts.header;
44 if (!hdr.Read(strm, opts.source))
H A Dfactor-weight.h37 FactorWeightOptions(const CacheOptions &opts, float d, bool of) argument
38 : CacheOptions(opts), delta(d), final_only(of) {}
160 FactorWeightFstImpl(const Fst<A> &fst, const FactorWeightOptions &opts) argument
161 : CacheImpl<A>(opts), fst_(fst.Copy()), delta_(opts.delta),
162 final_only_(opts.final_only) {
350 FactorWeightFst(const Fst<A> &fst, const FactorWeightOptions &opts) argument
351 : impl_(new FactorWeightFstImpl<A, F>(fst, opts)) {}
H A Dfst.h149 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) { argument
150 FstReadOptions ropts(opts);
153 hdr = *opts.header;
155 if (!hdr.Read(strm, opts.source))
182 virtual bool Write(ostream &strm, const FstWriteOptions &opts) const {
456 // If opts.header is non-null, skip read-in and use the option value.
457 // If opts.[io]symbols is non-null, read-in but use the option value.
458 bool ReadHeaderAndSymbols(istream &strm, const FstReadOptions& opts, argument
460 if (opts.header)
461 *hdr = *opts
500 WriteHeaderAndSymbols(ostream &strm, const FstWriteOptions& opts, int version, FstHeader *hdr) const argument
[all...]
H A Dintersect.h61 const IntersectFstOptions<T> &opts)
62 : ComposeFst<A>(fst1, fst2, ComposeFstOptions<T>(opts)) {
120 const IntersectOptions &opts = IntersectOptions()) {
124 if (opts.connect)
60 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2, const IntersectFstOptions<T> &opts) argument
H A Dmap.h241 MapFstOptions(const CacheOptions& opts) : CacheOptions(opts) {} argument
270 const MapFstOptions& opts)
271 : CacheImpl<B>(opts), fst_(fst.Copy()),
280 const MapFstOptions& opts)
281 : CacheImpl<B>(opts), fst_(fst.Copy()),
465 const MapFstOptions& opts)
466 : impl_(new MapFstImpl<A, B, C>(fst, mapper, opts)) {}
469 const MapFstOptions& opts)
470 : impl_(new MapFstImpl<A, B, C>(fst, mapper, opts)) {}
269 MapFstImpl(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts) argument
279 MapFstImpl(const Fst<A> &fst, C *mapper, const MapFstOptions& opts) argument
464 MapFst(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts) argument
468 MapFst(const Fst<A> &fst, C* mapper, const MapFstOptions& opts) argument
[all...]
H A Dmutable-fst.h71 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) { argument
72 FstReadOptions ropts(opts);
75 hdr = *opts.header;
77 if (!hdr.Read(strm, opts.source))
H A Dprune.h53 // 'opts.threshold' Times() the weight of the shortest path. Weights
57 const PruneOptions<Arc, ArcFilter> &opts) {
70 vector<Weight> *idistance = opts.idistance;
71 vector<Weight> *fdistance = opts.fdistance;
90 Weight ceiling = Times((*fdistance)[fst->Start()], opts.threshold);
101 if (!opts.filter(arc)) continue;
115 if (!opts.idistance)
117 if (!opts.fdistance)
125 // more than 'opts.threshold' Times() the weight of the shortest
129 PruneOptions<Arc, AnyArcFilter<Arc> > opts(threshol
56 Prune(MutableFst<Arc> *fst, const PruneOptions<Arc, ArcFilter> &opts) argument
141 Prune(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, const PruneOptions<Arc, ArcFilter> &opts) argument
[all...]
H A Drandgen.h118 const RandGenOptions<ArcSelector> &opts) {
121 if (opts.npath == 0 || opts.max_length == 0 || ifst.Start() == kNoStateId)
124 if (opts.source == kNoStateId) { // first call
129 RandGenOptions<ArcSelector> nopts(opts);
135 if (ifst.NumArcs(opts.source) == 0 &&
136 ifst.Final(opts.source) == Weight::Zero()) // Non-coaccessible
139 size_t n = opts.arc_selector(ifst, opts.source);
140 if (n == ifst.NumArcs(opts
117 RandGen(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, const RandGenOptions<ArcSelector> &opts) argument
[all...]
H A Drational.h56 explicit RationalFstImpl(const RationalFstOptions &opts) argument
57 : ReplaceFstImpl<A>(ReplaceFstOptions(opts, kNoLabel)),
235 explicit RationalFst(const RationalFstOptions &opts) argument
236 : impl_(new RationalFstImpl<A>(opts)) {}
H A Drelabel.h166 const RelabelFstOptions &opts)
167 : CacheImpl<A>(opts), fst_(fst.Copy()),
193 const RelabelFstOptions &opts)
194 : CacheImpl<A>(opts), fst_(fst.Copy()),
336 const RelabelFstOptions &opts)
337 : impl_(new RelabelFstImpl<A>(fst, ipairs, opairs, opts)) {}
348 const RelabelFstOptions &opts)
349 : impl_(new RelabelFstImpl<A>(fst, new_isymbols, new_osymbols, opts)) {}
163 RelabelFstImpl(const Fst<A>& fst, const vector<pair<Label, Label> >& ipairs, const vector<pair<Label, Label> >& opairs, const RelabelFstOptions &opts) argument
190 RelabelFstImpl(const Fst<A>& fst, const SymbolTable* new_isymbols, const SymbolTable* new_osymbols, const RelabelFstOptions &opts) argument
333 RelabelFst(const Fst<A>& fst, const vector<pair<Label, Label> >& ipairs, const vector<pair<Label, Label> >& opairs, const RelabelFstOptions &opts) argument
345 RelabelFst(const Fst<A>& fst, const SymbolTable* new_isymbols, const SymbolTable* new_osymbols, const RelabelFstOptions &opts) argument
H A Dreplace.h39 ReplaceFstOptions(const CacheOptions &opts, int64 r) argument
40 : CacheOptions(opts), root(r), epsilon_on_replace(false) {}
98 const ReplaceFstOptions &opts)
99 : CacheImpl<A>(opts), opts_(opts) {
110 SetRoot(opts.root);
113 explicit ReplaceFstImpl(const ReplaceFstOptions &opts) argument
114 : CacheImpl<A>(opts), opts_(opts), root_(kNoLabel) {
550 const ReplaceFstOptions &opts)
97 ReplaceFstImpl(const vector< pair<Label, const Fst<A>* > >& fst_tuples, const ReplaceFstOptions &opts) argument
549 ReplaceFst(const vector<pair<Label, const Fst<A>* > >& fst_array, const ReplaceFstOptions &opts) argument
[all...]

Completed in 163 milliseconds

1234567891011>>