Searched refs:exp (Results 1 - 25 of 1147) sorted by relevance

1234567891011>>

/external/libnetfilter_conntrack/src/expect/
H A Dgetter.c12 static const void *get_exp_attr_master(const struct nf_expect *exp) argument
14 return &exp->master;
17 static const void *get_exp_attr_expected(const struct nf_expect *exp) argument
19 return &exp->expected;
22 static const void *get_exp_attr_mask(const struct nf_expect *exp) argument
24 return &exp->mask;
27 static const void *get_exp_attr_timeout(const struct nf_expect *exp) argument
29 return &exp->timeout;
32 static const void *get_exp_attr_zone(const struct nf_expect *exp) argument
34 return &exp
37 get_exp_attr_flags(const struct nf_expect *exp) argument
42 get_exp_attr_class(const struct nf_expect *exp) argument
47 get_exp_attr_helper_name(const struct nf_expect *exp) argument
52 get_exp_attr_nat_dir(const struct nf_expect *exp) argument
57 get_exp_attr_nat_tuple(const struct nf_expect *exp) argument
62 get_exp_attr_expectfn(const struct nf_expect *exp) argument
[all...]
H A Dsetter.c12 static void set_exp_attr_master(struct nf_expect *exp, const void *value) argument
14 exp->master = *((struct nfct_tuple_head *) value);
17 static void set_exp_attr_expected(struct nf_expect *exp, const void *value) argument
19 exp->expected = *((struct nfct_tuple_head *) value);
22 static void set_exp_attr_mask(struct nf_expect *exp, const void *value) argument
24 exp->mask = *((struct nfct_tuple_head *) value);
27 static void set_exp_attr_timeout(struct nf_expect *exp, const void *value) argument
29 exp->timeout = *((uint32_t *) value);
32 static void set_exp_attr_zone(struct nf_expect *exp, const void *value) argument
34 exp
37 set_exp_attr_flags(struct nf_expect *exp, const void *value) argument
42 set_exp_attr_class(struct nf_expect *exp, const void *value) argument
47 set_exp_attr_helper_name(struct nf_expect *exp, const void *value) argument
53 set_exp_attr_nat_dir(struct nf_expect *exp, const void *value) argument
58 set_exp_attr_nat_tuple(struct nf_expect *exp, const void *value) argument
63 set_exp_attr_expectfn(struct nf_expect *exp, const void *value) argument
[all...]
H A Dbuild_mnl.c16 nfexp_nlmsg_build(struct nlmsghdr *nlh, const struct nf_expect *exp) argument
18 if (test_bit(ATTR_EXP_EXPECTED, exp->set))
19 nfct_build_tuple(nlh, &exp->expected.orig, CTA_EXPECT_TUPLE);
21 if (test_bit(ATTR_EXP_MASTER, exp->set))
22 nfct_build_tuple(nlh, &exp->master.orig, CTA_EXPECT_MASTER);
24 if (test_bit(ATTR_EXP_MASK, exp->set))
25 nfct_build_tuple(nlh, &exp->mask.orig, CTA_EXPECT_MASK);
27 if (test_bit(ATTR_EXP_TIMEOUT, exp->set))
28 mnl_attr_put_u32(nlh, CTA_EXPECT_TIMEOUT, htonl(exp->timeout));
30 if (test_bit(ATTR_EXP_FLAGS, exp
[all...]
H A Dbuild.c14 const struct nf_expect *exp)
16 nfnl_addattr32(&req->nlh, size, CTA_EXPECT_TIMEOUT,htonl(exp->timeout));
20 const struct nf_expect *exp)
22 nfnl_addattr16(&req->nlh, size, CTA_EXPECT_ZONE, htons(exp->zone));
26 size_t size, const struct nf_expect *exp)
28 nfnl_addattr32(&req->nlh, size, CTA_EXPECT_FLAGS,htonl(exp->flags));
33 const struct nf_expect *exp)
35 nfnl_addattr32(&req->nlh, size, CTA_EXPECT_CLASS, htonl(exp->class));
39 const struct nf_expect *exp)
42 exp
12 __build_timeout(struct nfnlhdr *req, size_t size, const struct nf_expect *exp) argument
19 __build_zone(struct nfnlhdr *req, size_t size, const struct nf_expect *exp) argument
25 __build_flags(struct nfnlhdr *req, size_t size, const struct nf_expect *exp) argument
31 __build_class(struct nfnlhdr *req, size_t size, const struct nf_expect *exp) argument
38 __build_helper_name(struct nfnlhdr *req, size_t size, const struct nf_expect *exp) argument
45 __build_expectfn(struct nfnlhdr *req, size_t size, const struct nf_expect *exp) argument
52 __build_expect(struct nfnl_subsys_handle *ssh, struct nfnlhdr *req, size_t size, uint16_t type, uint16_t flags, const struct nf_expect *exp) argument
[all...]
H A Dparse.c31 struct nf_expect *exp)
36 exp->expected.orig.l3protonum = nfhdr->nfgen_family;
37 set_bit(ATTR_ORIG_L3PROTO, exp->expected.set);
39 exp->mask.orig.l3protonum = nfhdr->nfgen_family;
40 set_bit(ATTR_ORIG_L3PROTO, exp->mask.set);
42 exp->master.orig.l3protonum = nfhdr->nfgen_family;
43 set_bit(ATTR_ORIG_L3PROTO, exp->master.set);
47 &exp->master.orig,
49 exp->master.set);
50 set_bit(ATTR_EXP_MASTER, exp
29 __parse_expect(const struct nlmsghdr *nlh, struct nfattr *cda[], struct nf_expect *exp) argument
[all...]
H A Dparse_mnl.c50 int nfexp_nlmsg_parse(const struct nlmsghdr *nlh, struct nf_expect *exp) argument
59 exp->expected.orig.l3protonum = nfg->nfgen_family;
60 set_bit(ATTR_ORIG_L3PROTO, exp->expected.set);
62 nfct_parse_tuple(tb[CTA_EXPECT_MASTER], &exp->master.orig,
63 __DIR_ORIG, exp->master.set);
64 set_bit(ATTR_EXP_MASTER, exp->set);
67 exp->mask.orig.l3protonum = nfg->nfgen_family;
68 set_bit(ATTR_ORIG_L3PROTO, exp->mask.set);
70 nfct_parse_tuple(tb[CTA_EXPECT_TUPLE], &exp->expected.orig,
71 __DIR_ORIG, exp
[all...]
/external/icu/icu4c/source/common/
H A Duassert.h28 # define U_ASSERT(exp) assert(exp)
30 # define U_ASSERT(exp)
/external/libcxx/test/std/atomics/atomics.general/
H A Dreplace_failure_order.pass.cpp30 int exp = 0; local
32 i.compare_exchange_weak(exp, 0, std::memory_order_acq_rel);
33 i.compare_exchange_weak(exp, 0, std::memory_order_release);
34 i.compare_exchange_strong(exp, 0, std::memory_order_acq_rel);
35 i.compare_exchange_strong(exp, 0, std::memory_order_release);
37 v.compare_exchange_weak(exp, 0, std::memory_order_acq_rel);
38 v.compare_exchange_weak(exp, 0, std::memory_order_release);
39 v.compare_exchange_strong(exp, 0, std::memory_order_acq_rel);
40 v.compare_exchange_strong(exp, 0, std::memory_order_release);
/external/libnl/src/lib/
H A Dexp.c2 * src/lib/exp.c CLI Expectation Helpers
21 #include <netlink/cli/exp.h>
25 struct nfnl_exp *exp; local
27 exp = nfnl_exp_alloc();
28 if (!exp)
31 return exp;
39 void nl_cli_exp_parse_family(struct nfnl_exp *exp, char *arg) argument
48 nfnl_exp_set_family(exp, family);
51 void nl_cli_exp_parse_timeout(struct nfnl_exp *exp, char *arg) argument
54 nfnl_exp_set_timeout(exp, timeou
57 nl_cli_exp_parse_id(struct nfnl_exp *exp, char *arg) argument
63 nl_cli_exp_parse_helper_name(struct nfnl_exp *exp, char *arg) argument
68 nl_cli_exp_parse_zone(struct nfnl_exp *exp, char *arg) argument
74 nl_cli_exp_parse_flags(struct nfnl_exp *exp, char *arg) argument
80 nl_cli_exp_parse_class(struct nfnl_exp *exp, char *arg) argument
86 nl_cli_exp_parse_nat_dir(struct nfnl_exp *exp, char *arg) argument
92 nl_cli_exp_parse_fn(struct nfnl_exp *exp, char *arg) argument
97 nl_cli_exp_parse_src(struct nfnl_exp *exp, int tuple, char *arg) argument
106 nl_cli_exp_parse_dst(struct nfnl_exp *exp, int tuple, char *arg) argument
115 nl_cli_exp_parse_l4protonum(struct nfnl_exp *exp, int tuple, char *arg) argument
127 nl_cli_exp_parse_src_port(struct nfnl_exp *exp, int tuple, char *arg) argument
134 nl_cli_exp_parse_dst_port(struct nfnl_exp *exp, int tuple, char *arg) argument
141 nl_cli_exp_parse_icmp_id(struct nfnl_exp *exp, int tuple, char *arg) argument
149 nl_cli_exp_parse_icmp_type(struct nfnl_exp *exp, int tuple, char *arg) argument
157 nl_cli_exp_parse_icmp_code(struct nfnl_exp *exp, int tuple, char *arg) argument
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dfrexp_interceptor.cc10 int *exp = (int*)malloc(sizeof(int)); local
11 free(exp);
12 double y = frexp(x, exp);
/external/eigen/doc/snippets/
H A DCwise_exp.cpp2 cout << v.exp() << endl;
/external/libnl/src/
H A Dnf-exp-list.c2 * src/nf-exp-list.c List Expectation Entries
16 #include <netlink/cli/exp.h>
21 "Usage: nf-exp-list [OPTION]... [EXPECTATION ENTRY]\n"
52 struct nfnl_exp *exp; local
58 exp = nl_cli_exp_alloc();
107 case '4': nfnl_exp_set_family(exp, AF_INET); break;
108 case '6': nfnl_exp_set_family(exp, AF_INET6); break;
112 case 'i': nl_cli_exp_parse_id(exp, optarg); break;
113 case ARG_EXPECT_PROTO: nl_cli_exp_parse_l4protonum(exp, NFNL_EXP_TUPLE_EXPECT, optarg); break;
114 case ARG_EXPECT_SRC: nl_cli_exp_parse_src(exp, NFNL_EXP_TUPLE_EXPEC
[all...]
H A Dnf-exp-delete.c2 * src/nf-exp-delete.c Delete an expectation
16 #include <netlink/cli/exp.h>
23 "Usage: nf-exp-list [OPTION]... [CONNTRACK ENTRY]\n"
59 struct nfnl_exp *exp; local
66 exp = nl_cli_exp_alloc();
126 case '4': nfnl_exp_set_family(exp, AF_INET); break;
127 case '6': nfnl_exp_set_family(exp, AF_INET6); break;
130 case 'i': nl_cli_exp_parse_id(exp, optarg); break;
131 case ARG_EXPECT_PROTO: nl_cli_exp_parse_l4protonum(exp, NFNL_EXP_TUPLE_EXPECT, optarg); break;
132 case ARG_EXPECT_SRC: nl_cli_exp_parse_src(exp, NFNL_EXP_TUPLE_EXPEC
[all...]
H A Dnf-exp-add.c2 * src/nf-exp-add.c Create an expectation
17 #include <netlink/cli/exp.h>
24 "Usage: nf-exp-list [OPTION]... [CONNTRACK ENTRY]\n"
60 struct nfnl_exp *exp; local
67 exp = nl_cli_exp_alloc();
142 case '4': nfnl_exp_set_family(exp, AF_INET); break;
143 case '6': nfnl_exp_set_family(exp, AF_INET6); break;
146 case 'i': nl_cli_exp_parse_id(exp, optarg); break;
147 case ARG_EXPECT_PROTO: nl_cli_exp_parse_l4protonum(exp, NFNL_EXP_TUPLE_EXPECT, optarg); break;
148 case ARG_EXPECT_SRC: nl_cli_exp_parse_src(exp, NFNL_EXP_TUPLE_EXPEC
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DUnwantedTokenException.java44 String exp = ", expected "+expecting;
46 exp = "";
49 return "UnwantedTokenException(found="+null+exp+")";
51 return "UnwantedTokenException(found="+token.getText()+exp+")";
/external/fdlibm/
H A Ds_ldexp.c18 double ieee_ldexp(double value, int exp) argument
20 double ieee_ldexp(value, exp)
21 double value; int exp;
25 value = ieee_scalbn(value,exp);
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_flog.c66 EAS_U32 exp; local
74 for (exp = 31; exp > 0; exp--)
82 exp <<= LOG_EXPONENT_SHIFT;
92 exp += eas_log2_table[n] + interp;
94 return (EAS_I32) exp;
/external/e2fsprogs/intl/
H A Dplural.y35 #include "plural-exp.h"
52 struct expression *exp;
146 %type <exp> exp
150 start: exp
158 exp: exp '?' exp ':' exp label
162 | exp '|' ex
[all...]
/external/libcxx/test/std/experimental/iterator/ostream.joiner/ostream.joiner.cons/
H A Dostream_joiner.cons.pass.cpp26 namespace exp = std::experimental;
35 { exp::ostream_joiner<char> oj(std::cout, '8'); }
36 { exp::ostream_joiner<std::string> oj(std::cout, std::string("9")); }
37 { exp::ostream_joiner<std::wstring> oj(std::cout, std::wstring(L"10")); }
38 { exp::ostream_joiner<int> oj(std::cout, 11); }
41 { exp::ostream_joiner<char> oj(std::cout, eight); }
42 { exp::ostream_joiner<std::string> oj(std::cout, nine); }
43 { exp::ostream_joiner<std::wstring> oj(std::cout, ten); }
44 { exp::ostream_joiner<int> oj(std::cout, eleven); }
47 { exp
[all...]
/external/swiftshader/third_party/LLVM/test/Analysis/BasicAA/
H A Ddg.exp1 load_lib llvm.exp
/external/swiftshader/third_party/LLVM/test/Analysis/CallGraph/
H A Ddg.exp1 load_lib llvm.exp
/external/swiftshader/third_party/LLVM/test/Analysis/Dominators/
H A Ddg.exp1 load_lib llvm.exp
/external/swiftshader/third_party/LLVM/test/Analysis/GlobalsModRef/
H A Ddg.exp1 load_lib llvm.exp
/external/swiftshader/third_party/LLVM/test/Analysis/LoopDependenceAnalysis/
H A Ddg.exp1 load_lib llvm.exp
/external/swiftshader/third_party/LLVM/test/Analysis/LoopInfo/
H A Ddg.exp1 load_lib llvm.exp

Completed in 756 milliseconds

1234567891011>>