Searched defs:opt (Results 26 - 50 of 353) sorted by relevance

1234567891011>>

/external/skia/debugger/QT/
H A DSkImageWidget.cpp34 QStyleOption opt; local
35 opt.init(this);
37 style()->drawPrimitive(QStyle::PE_Widget, &opt, &painter, this);
H A DSkRasterWidget.cpp40 QStyleOption opt; local
41 opt.init(this);
43 style()->drawPrimitive(QStyle::PE_Widget, &opt, &painter, this);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dplgetopt.h69 PR_EXTERN(void) PL_DestroyOptState(PLOptState *opt); variable
71 PR_EXTERN(PLOptStatus) PL_GetNextOpt(PLOptState *opt); variable
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-funarguments.js65 function opt() { function
74 opt();
82 opt();
/external/chromium_org/v8/test/mjsunit/es6/
H A Dmath-fround.js20 function opt(y) { return Math.fround(y); } function
22 opt(0.1);
23 opt(0.1);
26 %OptimizeFunctionOnNextCall(opt);
39 test(opt);
102 assertEquals(pi.toSingle(), opt(pi.toDouble()));
111 assertEquals(float.toSingle(), opt(float.toDouble()));
/external/iproute2/tc/
H A Df_basic.c110 struct rtattr *opt, __u32 handle)
114 if (opt == NULL)
117 parse_rtattr_nested(tb, TCA_BASIC_MAX, opt);
109 basic_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle) argument
H A Df_cgroup.c84 struct rtattr *opt, __u32 handle)
88 if (opt == NULL)
91 parse_rtattr_nested(tb, TCA_CGROUP_MAX, opt);
83 cgroup_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle) argument
H A Dq_fifo.c34 struct tc_fifo_qopt opt; local
35 memset(&opt, 0, sizeof(opt));
40 if (get_size(&opt.limit, *argv)) {
57 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
61 static int fifo_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
65 if (opt == NULL)
68 if (RTA_PAYLOAD(opt) < sizeof(*qopt))
70 qopt = RTA_DATA(opt);
[all...]
H A Dq_mqprio.c36 struct tc_mqprio_qopt opt = { local
46 if (get_u8(&opt.num_tc, *argv, 10)) {
53 if (get_u8(&opt.prio_tc_map[idx], *argv, 10)) {
60 opt.prio_tc_map[idx] = 0;
72 if (get_u16(&opt.count[idx], tok, 10)) {
78 if (get_u16(&opt.offset[idx], tok, 10)) {
88 if (get_u8(&opt.hw, *argv, 10)) {
103 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
107 int mqprio_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
[all...]
H A Dq_multiq.c47 struct tc_multiq_qopt opt; local
60 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
64 int multiq_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
68 if (opt == NULL)
70 if (RTA_PAYLOAD(opt) < sizeof(*qopt))
73 qopt = RTA_DATA(opt);
H A Df_route.c134 static int route_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle) argument
139 if (opt == NULL)
142 parse_rtattr_nested(tb, TCA_ROUTE4_MAX, opt);
H A Df_tcindex.c122 struct rtattr *opt, __u32 handle)
126 if (opt == NULL)
129 parse_rtattr_nested(tb, TCA_TCINDEX_MAX, opt);
121 tcindex_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle) argument
H A Dq_drr.c84 static int drr_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
89 if (opt == NULL)
92 parse_rtattr_nested(tb, TCA_DRR_MAX, opt);
H A Dq_dsmark.c132 static int dsmark_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
136 if (!opt) return 0;
138 parse_rtattr(tb, TCA_DSMARK_MAX, RTA_DATA(opt), RTA_PAYLOAD(opt));
/external/libmtp/examples/
H A Demptyfolders.c63 int opt; local
67 while ( (opt = getopt(argc, argv, "d")) != -1 ) {
68 switch (opt) {
H A Dnewplaylist.c36 int opt; local
48 while ( (opt = getopt(argc, argv, "hn:i:")) != -1 ) {
49 switch (opt) {
H A Dthumb.c43 int opt; local
58 while ( (opt = getopt(argc, argv, "hi:")) != -1 ) {
59 switch (opt) {
/external/llvm/include/llvm/Option/
H A DOptSpecifier.h16 namespace opt { namespace in namespace:llvm
/external/qemu/distrib/ext4_utils/src/
H A Dext4fixup_main.c30 int opt; local
39 while ((opt = getopt(argc, argv, "vnd:")) != -1) {
40 switch (opt) {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dr3xx_fragprog.c84 int opt = !c->Base.disable_optimizations; local
124 {"deadcode", 1, opt, rc_dataflow_deadcode, dataflow_outputs_mark_use},
126 {"register rename", 1, !is_r500 || opt, rc_rename_regs, NULL},
127 {"dataflow optimize", 1, opt, rc_optimize, NULL},
128 {"inline literals", 1, is_r500 && opt, rc_inline_literals, NULL},
132 {"pair scheduling", 1, 1, rc_pair_schedule, &opt},
134 {"register allocation", 1, 1, rc_pair_regalloc, &opt},
/external/chromium_org/v8/test/mjsunit/
H A Dswitch.js352 function opt(fn) {
372 return opt(new Function(
438 function test_switches(opt) {
445 test_switch(clause_type, test_type, 'all', opt);
446 test_switch(clause_type, test_type, 'none', opt);
450 test_switch(clause_type, test_type, [value], value, opt);
451 test_switch(clause_type, test_type, value, value, opt);
/external/clang/include/clang/Driver/
H A DOptions.h14 namespace opt { namespace in namespace:llvm
24 /// llvm::opt::DriverFlag.
47 llvm::opt::OptTable *createDriverOptTable();
H A DTool.h16 namespace opt { namespace in namespace:llvm
76 const llvm::opt::ArgList &TCArgs,
/external/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistration.cpp112 const std::pair<std::string, bool> &opt = opts.CheckersControlList[i]; local
113 checkerOpts.push_back(CheckerOptInfo(opt.first.c_str(), opt.second));
/external/f2fs-tools/fsck/
H A Dmain.c159 struct dump_option *opt = (struct dump_option *)config.private; local
163 if (opt->end_sit == -1)
164 opt->end_sit = SM_I(sbi)->main_segments;
165 if (opt->end_ssa == -1)
166 opt->end_ssa = SM_I(sbi)->main_segments;
167 if (opt->start_sit != -1)
168 sit_dump(sbi, opt->start_sit, opt->end_sit);
169 if (opt->start_ssa != -1)
170 ssa_dump(sbi, opt
[all...]

Completed in 1005 milliseconds

1234567891011>>