HomeSort by relevance Sort by last modified time
    Searched refs:opts (Results 76 - 100 of 494) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/netfilter_ipv6/
ip6t_opts.h 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
  /external/llvm/utils/
clang-parse-diagnostics-file 25 (opts, args) = parser.parse_args()
32 if opts.error:
34 if opts.fatal:
36 if opts.ignored:
38 if opts.note:
40 if opts.warning:
77 if levels[d.get('level')] or opts.all]
  /external/clang/utils/ABITest/
ABITestGen.py 480 (opts, args) = parser.parse_args()
482 if not opts.useRandomSeed:
483 random.seed(opts.seed)
487 if opts.useBuiltins:
489 if opts.useChar: ints.append(('char',1))
490 if opts.useShort: ints.append(('short',2))
491 if opts.useInt: ints.append(('int',4))
493 if opts.useLong: ints.append(('long',4))
494 if opts.useLongLong: ints.append(('long long',8))
495 if opts.useUnsigned:
    [all...]
  /external/clang/bindings/python/examples/cindex/
cindex-dump.py 25 if not opts.showIDs:
40 if opts.maxDepth is not None and depth >= opts.maxDepth:
62 global opts
72 (opts, args) = parser.parse_args()
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 165 Options opts = new BitmapFactory.Options(); local
169 opts.inSampleSize = SAMPLESIZES[j];
170 opts.inPreferredConfig = COLOR_CONFIGS[k];
175 Bitmap wholeImage = BitmapFactory.decodeStream(is2, null, opts);
178 compareRegionByRegion(decoder, opts, mMseMarginWebPConfigRgb565,
181 compareRegionByRegion(decoder, opts, mMseMargin, wholeImage);
190 Options opts = new BitmapFactory.Options(); local
194 opts.inSampleSize = SAMPLESIZES[j];
195 opts.inPreferredConfig = COLOR_CONFIGS[k];
201 0, imageData.length, opts);
216 Options opts = new BitmapFactory.Options(); local
269 BitmapFactory.Options opts = new BitmapFactory.Options(); local
    [all...]
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 173 RewriteOptions opts = RewriteOptions()) const;
175 RewriteOptions opts = RewriteOptions()) const;
218 RewriteOptions opts = RewriteOptions());
222 RewriteOptions opts = RewriteOptions()) {
223 return RemoveText(range.getBegin(), getRangeSize(range, opts), opts);
227 bool RemoveText(SourceRange range, RewriteOptions opts = RewriteOptions()) {
228 return RemoveText(range.getBegin(), getRangeSize(range, opts), opts);
  /external/iptables/extensions/
libip6t_dst.c 18 " --dst-opts TYPE[:LEN][,TYPE[:LEN]...]\n"
27 {.name = "dst-opts", .id = O_DSTOPTS, .type = XTTYPE_STRING},
56 parse_options(const char *optsstr, uint16_t *opts)
81 opts[i] = (parse_opts_num(cp, "opt") & 0xFF) << 8;
83 if (opts[i] == 0)
86 opts[i] |= parse_opts_num(range, "length") & 0xFF;
88 opts[i] |= (0x00FF);
91 printf("opts str: %s %s\n", cp, range);
92 printf("opts opt: %04X\n", opts[i])
    [all...]
libip6t_hbh.c 20 " --hbh-opts TYPE[:LEN][,TYPE[:LEN]...] \n"
29 {.name = "hbh-opts", .id = O_HBH_OPTS, .type = XTTYPE_STRING},
58 parse_options(const char *optsstr, uint16_t *opts)
77 opts[i] = (parse_opts_num(cp, "opt") & 0xFF) << 8;
79 if (opts[i] == 0)
81 opts[i] |= parse_opts_num(range, "length") & 0xFF;
83 opts[i] |= (0x00FF);
87 printf("opts str: %s %s\n", cp, range);
88 printf("opts opt: %04X\n", opts[i])
    [all...]
  /external/openfst/src/include/fst/
prune.h 93 // the weight of the shortest path Times() 'opts.weight_threshold'.
94 // When 'opts.state_threshold != kNoStateId', the resulting transducer
95 // will restricted further to have at most 'opts.state_threshold'
101 const PruneOptions<Arc, ArcFilter> &opts) {
117 if (!opts.distance) {
119 ShortestDistance(*fst, &tmp, true, opts.delta);
121 const vector<Weight> *fdistance = opts.distance ? opts.distance : &tmp;
123 if ((opts.state_threshold == 0) ||
136 Weight limit = Times((*fdistance)[fst->Start()], opts.weight_threshold)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
fst.h 149 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) {
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,
460 if (opts.header)
461 *hdr = *opts.header
    [all...]
  /external/openfst/src/include/fst/script/
shortest-distance.h 104 const ShortestDistanceOptions &opts = args->arg3; local
108 switch (opts.arc_filter_type) {
114 queue, AnyArcFilter<Arc>(), opts.source, opts.delta);
125 queue, EpsilonArcFilter<Arc>(), opts.source, opts.delta);
136 queue, InputEpsilonArcFilter<Arc>(), opts.source, opts.delta);
148 queue, OutputEpsilonArcFilter<Arc>(), opts.source, opts.delta)
164 const ShortestDistanceOptions &opts = args->arg3; local
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
opts.h 237 bool (*handler) (struct gcc_options *opts,
303 extern void init_options_struct (struct gcc_options *opts,
310 extern void decode_options (struct gcc_options *opts,
316 extern int option_enabled (int opt_idx, void *opts);
319 extern void set_option (struct gcc_options *opts,
323 extern void *option_flag_var (int opt_index, struct gcc_options *opts);
324 bool handle_generated_option (struct gcc_options *opts,
335 extern void read_cmdline_option (struct gcc_options *opts,
346 struct gcc_options *opts,
356 extern bool common_handle_option (struct gcc_options *opts,
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
opts.h 237 bool (*handler) (struct gcc_options *opts,
303 extern void init_options_struct (struct gcc_options *opts,
310 extern void decode_options (struct gcc_options *opts,
316 extern int option_enabled (int opt_idx, void *opts);
319 extern void set_option (struct gcc_options *opts,
323 extern void *option_flag_var (int opt_index, struct gcc_options *opts);
324 bool handle_generated_option (struct gcc_options *opts,
335 extern void read_cmdline_option (struct gcc_options *opts,
346 struct gcc_options *opts,
356 extern bool common_handle_option (struct gcc_options *opts,
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
opts.h 237 bool (*handler) (struct gcc_options *opts,
303 extern void init_options_struct (struct gcc_options *opts,
310 extern void decode_options (struct gcc_options *opts,
316 extern int option_enabled (int opt_idx, void *opts);
319 extern void set_option (struct gcc_options *opts,
323 extern void *option_flag_var (int opt_index, struct gcc_options *opts);
324 bool handle_generated_option (struct gcc_options *opts,
335 extern void read_cmdline_option (struct gcc_options *opts,
346 struct gcc_options *opts,
356 extern bool common_handle_option (struct gcc_options *opts,
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
opts.h 237 bool (*handler) (struct gcc_options *opts,
303 extern void init_options_struct (struct gcc_options *opts,
310 extern void decode_options (struct gcc_options *opts,
316 extern int option_enabled (int opt_idx, void *opts);
319 extern void set_option (struct gcc_options *opts,
323 extern void *option_flag_var (int opt_index, struct gcc_options *opts);
324 bool handle_generated_option (struct gcc_options *opts,
335 extern void read_cmdline_option (struct gcc_options *opts,
346 struct gcc_options *opts,
356 extern bool common_handle_option (struct gcc_options *opts,
    [all...]
  /external/openfst/src/bin/
fstrelabel.cc 75 SymbolTableTextOptions opts;
76 opts.allow_negative = FLAGS_allow_negative_labels;
81 : SymbolTable::ReadText(FLAGS_isymbols, opts);
84 : SymbolTable::ReadText(FLAGS_relabel_isymbols, opts);
89 : SymbolTable::ReadText(FLAGS_osymbols, opts);
92 : SymbolTable::ReadText(FLAGS_relabel_osymbols, opts);

Completed in 661 milliseconds

1 2 34 5 6 7 8 91011>>