Searched defs:opts (Results 151 - 175 of 281) sorted by relevance

1234567891011>>

/external/deqp/executor/tools/
H A DxeCommandLineExecutor.cpp128 de::cmdline::CommandLine opts; local
134 if (!parser.parse(argc-1, argv+1, &opts, std::cerr))
141 cmdLine.serverBin = opts.getOption<opt::StartServer>();
142 cmdLine.host = opts.getOption<opt::Host>();
143 cmdLine.port = opts.getOption<opt::Port>();
144 cmdLine.caseListDir = opts.getOption<opt::CaseListDir>();
145 cmdLine.testset = opts.getOption<opt::TestSet>();
146 cmdLine.exclude = opts.getOption<opt::ExcludeSet>();
147 cmdLine.inFile = opts.getOption<opt::ContinueFile>();
148 cmdLine.outFile = opts
[all...]
H A DxeTestLogCompare.cpp370 de::cmdline::CommandLine opts; local
376 if (!parser.parse(argc-1, &argv[1], &opts, std::cerr) ||
377 opts.getArgs().empty())
384 cmdLine.outFormat = opts.getOption<opt::OutFormat>();
385 cmdLine.outMode = opts.getOption<opt::OutMode>();
386 cmdLine.outValue = opts.getOption<opt::OutValue>();
387 cmdLine.filenames = opts.getArgs();
/external/iproute2/tc/
H A Dm_xt_old.c65 static struct option *opts = original_opts; variable in typeref:struct:option
86 opts = original_opts;
240 c = getopt_long(argc, argv, "j:", opts, NULL);
252 opts =
253 merge_options(opts, m->extra_opts,
282 free_opts(opts);
340 free_opts(opts);
395 opts =
396 merge_options(opts, m->extra_opts,
426 free_opts(opts);
[all...]
/external/jemalloc/src/
H A Dstats.c279 const char *opts)
311 if (opts != NULL) {
314 for (i = 0; opts[i] != '\0'; i++) {
315 switch (opts[i]) {
278 stats_print(void (*write_cb)(void *, const char *), void *cbopaque, const char *opts) argument
/external/libnl/lib/route/sch/
H A Dhtb.c75 struct tc_htb_glob opts; local
77 nla_memcpy(&opts, tb[TCA_HTB_INIT], sizeof(opts));
78 d->qh_rate2quantum = opts.rate2quantum;
79 d->qh_defcls = opts.defcls;
113 struct tc_htb_opt opts; local
115 nla_memcpy(&opts, tb[TCA_HTB_PARMS], sizeof(opts));
116 d->ch_prio = opts.prio;
117 rtnl_copy_ratespec(&d->ch_rate, &opts
232 struct tc_htb_glob opts; local
270 struct tc_htb_opt opts; local
[all...]
H A Dtbf.c70 struct tc_tbf_qopt opts; local
73 nla_memcpy(&opts, tb[TCA_TBF_PARMS], sizeof(opts));
74 tbf->qt_limit = opts.limit;
75 tbf->qt_mpu = opts.rate.mpu;
77 rtnl_copy_ratespec(&tbf->qt_rate, &opts.rate);
78 tbf->qt_rate_txtime = opts.buffer;
79 bufsize = rtnl_tc_calc_bufsize(nl_ticks2us(opts.buffer),
80 opts.rate.rate);
83 rtnl_copy_ratespec(&tbf->qt_peakrate, &opts
156 struct tc_tbf_qopt opts; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dcode-reading.c383 struct perf_record_opts opts = { local
484 perf_evlist__config(evlist, &opts);
/external/mesa3d/src/mesa/main/
H A Ddebug.c164 static const struct option opts[] = { local
184 for (i = 0; i < Elements(opts); i++) {
185 if (strstr(str, opts[i].name) || strcmp(str, "all") == 0)
186 MESA_VERBOSE |= opts[i].flag;
205 static const struct option opts[] = { local
217 for (i = 0; i < Elements(opts); i++) {
218 if (strstr(str, opts[i].name))
219 MESA_DEBUG_FLAGS |= opts[i].flag;
/external/openfst/src/include/fst/
H A Dconst-fst.h90 static ConstFstImpl<A, U> *Read(istream &strm, const FstReadOptions &opts);
205 const FstReadOptions &opts) {
208 if (!impl->ReadHeader(strm, opts, kMinFileVersion, &hdr)) {
221 LOG(ERROR) << "ConstFst::Read: Alignment failed: " << opts.source;
227 impl->states_region_ = MappedFile::Map(&strm, opts, b);
229 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
236 LOG(ERROR) << "ConstFst::Read: Alignment failed: " << opts.source;
242 impl->arcs_region_ = MappedFile::Map(&strm, opts, b);
244 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
282 static ConstFst<A, U> *Read(istream &strm, const FstReadOptions &opts) { argument
204 Read(istream &strm, const FstReadOptions &opts) argument
343 WriteFst(const F &fst, ostream &strm, const FstWriteOptions &opts) argument
[all...]
H A Dfactor-weight.h51 FactorWeightOptions(const CacheOptions &opts, float d, argument
54 : CacheOptions(opts), delta(d), mode(m), final_ilabel(il),
183 FactorWeightFstImpl(const Fst<A> &fst, const FactorWeightOptions<A> &opts) argument
184 : CacheImpl<A>(opts),
186 delta_(opts.delta),
187 mode_(opts.mode),
188 final_ilabel_(opts.final_ilabel),
189 final_olabel_(opts.final_olabel) {
413 FactorWeightFst(const Fst<A> &fst, const FactorWeightOptions<A> &opts) argument
414 : ImplToFst<Impl>(new Impl(fst, opts)) {}
[all...]
H A Dmatcher-fst.h113 const FstReadOptions &opts) {
114 Impl *impl = Impl::Read(strm, opts);
125 virtual bool Write(ostream &strm, const FstWriteOptions &opts) const {
126 return GetImpl()->Write(strm, opts);
112 Read(istream &strm, const FstReadOptions &opts) argument
H A Dmutable-fst.h88 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) { argument
89 FstReadOptions ropts(opts);
92 hdr = *opts.header;
94 if (!hdr.Read(strm, opts.source))
H A Drelabel.h215 const RelabelFstOptions &opts)
216 : CacheImpl<A>(opts), fst_(fst.Copy()),
244 const RelabelFstOptions &opts)
245 : CacheImpl<A>(opts), fst_(fst.Copy()),
406 const RelabelFstOptions &opts)
407 : ImplToFst<Impl>(new Impl(fst, ipairs, opairs, opts)) {}
419 const RelabelFstOptions &opts)
421 fst.OutputSymbols(), new_osymbols, opts)) {}
436 const RelabelFstOptions &opts)
438 new_osymbols, opts)) {}
212 RelabelFstImpl(const Fst<A>& fst, const vector<pair<Label, Label> >& ipairs, const vector<pair<Label, Label> >& opairs, const RelabelFstOptions &opts) argument
239 RelabelFstImpl(const Fst<A>& fst, const SymbolTable* old_isymbols, const SymbolTable* new_isymbols, const SymbolTable* old_osymbols, const SymbolTable* new_osymbols, const RelabelFstOptions &opts) argument
403 RelabelFst(const Fst<A>& fst, const vector<pair<Label, Label> >& ipairs, const vector<pair<Label, Label> >& opairs, const RelabelFstOptions &opts) argument
416 RelabelFst(const Fst<A>& fst, const SymbolTable* new_isymbols, const SymbolTable* new_osymbols, const RelabelFstOptions &opts) argument
431 RelabelFst(const Fst<A>& fst, const SymbolTable* old_isymbols, const SymbolTable* new_isymbols, const SymbolTable* old_osymbols, const SymbolTable* new_osymbols, const RelabelFstOptions &opts) argument
[all...]
H A Dstate-map.h209 const StateMapFstOptions& opts)
210 : CacheImpl<B>(opts),
218 const StateMapFstOptions& opts)
219 : CacheImpl<B>(opts),
340 const StateMapFstOptions& opts)
341 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
343 StateMapFst(const Fst<A> &fst, C* mapper, const StateMapFstOptions& opts) argument
344 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
208 StateMapFstImpl(const Fst<A> &fst, const C &mapper, const StateMapFstOptions& opts) argument
217 StateMapFstImpl(const Fst<A> &fst, C *mapper, const StateMapFstOptions& opts) argument
339 StateMapFst(const Fst<A> &fst, const C &mapper, const StateMapFstOptions& opts) argument
H A Dsynchronize.h85 SynchronizeFstImpl(const Fst<A> &fst, const SynchronizeFstOptions &opts) argument
86 : CacheImpl<A>(opts), fst_(fst.Copy()) {
368 SynchronizeFst(const Fst<A> &fst, const SynchronizeFstOptions &opts) argument
369 : ImplToFst<Impl>(new Impl(fst, opts)) {}
450 SynchronizeFstOptions opts; local
451 opts.gc_limit = 0; // Cache only the last state for fastest copy.
452 *ofst = SynchronizeFst<Arc>(ifst, opts);
/external/oprofile/libpopt/
H A Dpopthelp.c692 const void ** opts; member in struct:poptDone_s
722 const void * that = done->opts[i];
733 done->opts[done->nopts++] = (const void *) opt->arg;
792 cursor = done->maxopts * sizeof(*done->opts);
794 done->opts = memset(alloca(cursor), 0, cursor);
796 done->opts[done->nopts++] = (const void *) con->options;
/external/qemu/android/qemu-launcher/
H A Demulator-qemu.cpp175 AndroidOptions opts[1]; local
177 if (android_parse_options(&argc, &argv, opts) < 0) {
233 if (opts->version) {
253 sanitizeOptions(opts);
258 AvdInfo* avd = createAVD(opts, &inAndroidBuild);
284 char* kernelFile = opts->kernel;
337 /* opts->ramdisk is never NULL (see createAVD) here */
338 if (opts->ramdisk) {
339 reassign_string(&hw->disk_ramdisk_path, opts->ramdisk);
351 if (opts
[all...]
/external/qemu/hw/core/
H A Dqdev.c106 int qdev_device_help(QemuOpts *opts) argument
115 driver = qemu_opt_get(opts, "driver");
126 if (!qemu_opt_get(opts, "?")) {
151 DeviceState *qdev_device_add(QemuOpts *opts) argument
161 driver = qemu_opt_get(opts, "driver");
176 path = qemu_opt_get(opts, "bus");
202 id = qemu_opts_id(opts);
206 if (qemu_opt_foreach(opts, set_property, qdev, 1) != 0) {
214 qdev->opts = opts;
[all...]
/external/skia/src/images/
H A DSkScaledBitmapSampler.cpp29 get_gray_to_8888_proc(const SkScaledBitmapSampler::Options& opts) { argument
46 get_RGBx_to_8888_proc(const SkScaledBitmapSampler::Options& opts) { argument
98 get_RGBA_to_8888_proc(const SkScaledBitmapSampler::Options& opts) { argument
100 if (!opts.fPremultiplyAlpha) {
106 if (opts.fSkipZeros) {
138 get_gray_to_565_proc(const SkScaledBitmapSampler::Options& opts) { argument
140 if (opts.fDither) {
171 get_RGBx_to_565_proc(const SkScaledBitmapSampler::Options& opts) { argument
173 if (opts.fDither) {
193 get_565_to_565_proc(const SkScaledBitmapSampler::Options& opts) { argument
226 get_gray_to_4444_proc(const SkScaledBitmapSampler::Options& opts) argument
260 get_RGBx_to_4444_proc(const SkScaledBitmapSampler::Options& opts) argument
343 get_RGBA_to_4444_proc(const SkScaledBitmapSampler::Options& opts) argument
398 get_index_to_8888_proc(const SkScaledBitmapSampler::Options& opts) argument
439 get_index_to_565_proc(const SkScaledBitmapSampler::Options& opts) argument
516 get_index_to_4444_proc(const SkScaledBitmapSampler::Options& opts) argument
549 get_index_to_index_proc(const SkScaledBitmapSampler::Options& opts) argument
572 get_gray_to_A8_proc(const SkScaledBitmapSampler::Options& opts) argument
627 begin(SkBitmap* dst, SrcConfig sc, const Options& opts, const SkPMColor ctable[]) argument
[all...]
/external/skia/tests/
H A DImageDecodingTest.cpp494 SkDecodingImageGenerator::Options opts(sampleSize, ditherImage, colorType);
496 SkDecodingImageGenerator::Create(stream, opts), bitmap)) {
555 const SkDecodingImageGenerator::Options& opts) {
556 if (opts.fUseRequestedColorType) {
557 return SkColorType_to_string(opts.fRequestedColorType);
576 const SkDecodingImageGenerator::Options& opts,
588 SkDecodingImageGenerator::Create(encodedData, opts), &bm);
594 SkDecodingImageGenerator::Create(encodedStream->duplicate(), opts), &bm);
597 if (opts.fUseRequestedColorType
598 && (kARGB_4444_SkColorType == opts
554 options_colorType( const SkDecodingImageGenerator::Options& opts) argument
575 test_options(skiatest::Reporter* reporter, const SkDecodingImageGenerator::Options& opts, SkStreamRewindable* encodedStream, SkData* encodedData, bool useData, const SkString& path) argument
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
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 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 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 Dsynchronize.h72 SynchronizeFstImpl(const Fst<A> &fst, const SynchronizeFstOptions &opts) argument
73 : CacheImpl<A>(opts), fst_(fst.Copy()) {
334 SynchronizeFst(const Fst<A> &fst, const SynchronizeFstOptions &opts) argument
335 : impl_(new SynchronizeFstImpl<A>(fst, opts)) {}
452 SynchronizeFstOptions opts; local
453 opts.gc_limit = 0; // Cache only the last state for fastest copy.
454 *ofst = SynchronizeFst<Arc>(ifst, opts);
/external/chromium_org/content/renderer/p2p/
H A Dipc_socket_factory.cc671 int opts) {
673 if (opts & rtc::PacketSocketFactory::OPT_SSLTCP)
676 P2PSocketType type = (opts & rtc::PacketSocketFactory::OPT_STUN) ?
692 const std::string& user_agent, int opts) {
694 if (opts & rtc::PacketSocketFactory::OPT_SSLTCP) {
695 type = (opts & rtc::PacketSocketFactory::OPT_STUN) ?
697 } else if (opts & rtc::PacketSocketFactory::OPT_TLS) {
698 type = (opts & rtc::PacketSocketFactory::OPT_STUN) ?
701 type = (opts & rtc::PacketSocketFactory::OPT_STUN) ?
669 CreateServerTcpSocket( const rtc::SocketAddress& local_address, int min_port, int max_port, int opts) argument
688 CreateClientTcpSocket( const rtc::SocketAddress& local_address, const rtc::SocketAddress& remote_address, const rtc::ProxyInfo& proxy_info, const std::string& user_agent, int opts) argument

Completed in 365 milliseconds

1234567891011>>