Searched defs:exp (Results 1 - 25 of 343) sorted by relevance

1234567891011>>

/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/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/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/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/libcxx/test/std/experimental/iterator/ostream.joiner/ostream.joiner.ops/
H A Dostream_joiner.op.postincrement.pass.cpp26 namespace exp = std::experimental;
29 void test ( exp::ostream_joiner<Delim, CharT, Traits> &oj ) { argument
31 exp::ostream_joiner<Delim, CharT, Traits> &ret = oj++;
37 { exp::ostream_joiner<char> oj(std::cout, '8'); test(oj); }
38 { exp::ostream_joiner<std::string> oj(std::cout, std::string("9")); test(oj); }
39 { exp::ostream_joiner<std::wstring> oj(std::cout, std::wstring(L"10")); test(oj); }
40 { exp::ostream_joiner<int> oj(std::cout, 11); test(oj); }
42 { exp::ostream_joiner<char, wchar_t> oj(std::wcout, '8'); test(oj); }
43 { exp::ostream_joiner<std::string, wchar_t> oj(std::wcout, std::string("9")); test(oj); }
44 { exp
[all...]
H A Dostream_joiner.op.pretincrement.pass.cpp26 namespace exp = std::experimental;
29 void test ( exp::ostream_joiner<Delim, CharT, Traits> &oj ) { argument
31 exp::ostream_joiner<Delim, CharT, Traits> &ret = ++oj;
37 { exp::ostream_joiner<char> oj(std::cout, '8'); test(oj); }
38 { exp::ostream_joiner<std::string> oj(std::cout, std::string("9")); test(oj); }
39 { exp::ostream_joiner<std::wstring> oj(std::cout, std::wstring(L"10")); test(oj); }
40 { exp::ostream_joiner<int> oj(std::cout, 11); test(oj); }
42 { exp::ostream_joiner<char, wchar_t> oj(std::wcout, '8'); test(oj); }
43 { exp::ostream_joiner<std::string, wchar_t> oj(std::wcout, std::string("9")); test(oj); }
44 { exp
[all...]
H A Dostream_joiner.op.star.pass.cpp26 namespace exp = std::experimental;
29 void test ( exp::ostream_joiner<Delim, CharT, Traits> &oj ) { argument
31 exp::ostream_joiner<Delim, CharT, Traits> &ret = *oj;
37 { exp::ostream_joiner<char> oj(std::cout, '8'); test(oj); }
38 { exp::ostream_joiner<std::string> oj(std::cout, std::string("9")); test(oj); }
39 { exp::ostream_joiner<std::wstring> oj(std::cout, std::wstring(L"10")); test(oj); }
40 { exp::ostream_joiner<int> oj(std::cout, 11); test(oj); }
42 { exp::ostream_joiner<char, wchar_t> oj(std::wcout, '8'); test(oj); }
43 { exp::ostream_joiner<std::string, wchar_t> oj(std::wcout, std::string("9")); test(oj); }
44 { exp
[all...]
/external/libnetfilter_conntrack/src/expect/
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 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...]
H A Dsnprintf.c14 const struct nf_expect *exp,
23 size = __snprintf_expect_default(buf, len, exp, type, flags);
26 size = __snprintf_expect_xml(buf, len, exp, type, flags);
12 __snprintf_expect(char *buf, unsigned int len, const struct nf_expect *exp, unsigned int type, unsigned int msg_output, unsigned int flags) argument
/external/libnetfilter_conntrack/utils/
H A Dexpect_delete.c14 struct nf_expect *exp; local
30 exp = nfexp_new();
31 if (!exp) {
37 nfexp_set_attr(exp, ATTR_EXP_EXPECTED, expected);
46 ret = nfexp_query(h, NFCT_Q_DESTROY, exp);
H A Dexpect_create.c20 struct nf_expect *exp; local
97 exp = nfexp_new();
98 if (!exp) {
106 nfexp_set_attr(exp, ATTR_EXP_MASTER, master);
107 nfexp_set_attr(exp, ATTR_EXP_EXPECTED, expected);
108 nfexp_set_attr(exp, ATTR_EXP_MASK, mask);
109 nfexp_set_attr_u32(exp, ATTR_EXP_TIMEOUT, 200);
121 ret = nfexp_query(h, NFCT_Q_CREATE, exp);
H A Dexpect_create_userspace.c20 struct nf_expect *exp; local
102 exp = nfexp_new();
103 if (!exp) {
111 nfexp_set_attr(exp, ATTR_EXP_MASTER, master);
112 nfexp_set_attr(exp, ATTR_EXP_EXPECTED, expected);
113 nfexp_set_attr(exp, ATTR_EXP_MASK, mask);
114 nfexp_set_attr_u32(exp, ATTR_EXP_TIMEOUT, 200);
126 ret = nfexp_query(h, NFCT_Q_CREATE, exp);
H A Dexpect_create_nat.c20 struct nf_expect *exp; local
114 exp = nfexp_new();
115 if (!exp) {
123 nfexp_set_attr(exp, ATTR_EXP_MASTER, master);
124 nfexp_set_attr(exp, ATTR_EXP_EXPECTED, expected);
125 nfexp_set_attr(exp, ATTR_EXP_MASK, mask);
126 nfexp_set_attr(exp, ATTR_EXP_NAT_TUPLE, nat);
127 nfexp_set_attr_u32(exp, ATTR_EXP_NAT_DIR, 0);
128 nfexp_set_attr_u32(exp, ATTR_EXP_TIMEOUT, 200);
141 ret = nfexp_query(h, NFCT_Q_CREATE, exp);
[all...]
H A Dexpect_dump.c9 struct nf_expect *exp,
14 nfexp_snprintf(buf, 1024, exp, NFCT_T_UNKNOWN, NFCT_O_DEFAULT, 0);
8 cb(enum nf_conntrack_msg_type type, struct nf_expect *exp, void *data) argument
H A Dexpect_events.c9 struct nf_expect *exp,
15 nfexp_snprintf(buf, 1024, exp, type, NFCT_O_XML, 0);
8 event_cb(enum nf_conntrack_msg_type type, struct nf_expect *exp, void *data) argument
H A Dexpect_get.c10 struct nf_expect *exp,
15 nfexp_snprintf(buf, 1024, exp, NFCT_T_UNKNOWN, NFCT_O_DEFAULT, 0);
26 struct nf_expect *exp; local
42 exp = nfexp_new();
43 if (!exp) {
49 nfexp_set_attr(exp, ATTR_EXP_MASTER, master);
59 ret = nfexp_query(h, NFCT_Q_GET, exp);
9 cb(enum nf_conntrack_msg_type type, struct nf_expect *exp, void *data) argument
/external/apache-xml/src/main/java/org/apache/xpath/
H A DExpressionOwner.java39 * @param exp the raw Expression object, which should not normally be null.
41 public void setExpression(Expression exp); argument
/external/pdfium/xfa/fxfa/fm2js/
H A Dcxfa_fmsimpleexpression_unittest.cpp20 auto exp = pdfium::MakeUnique<CXFA_FMIdentifierExpression>(0, L"sign"); local
27 CXFA_FMCallExpression callExp(0, std::move(exp), std::move(args), true);
/external/libnetfilter_conntrack/examples/
H A Dnfexp-mnl-event.c11 struct nf_expect *exp; local
27 exp = nfexp_new();
28 if (exp == NULL)
31 nfexp_nlmsg_parse(nlh, exp);
33 nfexp_snprintf(buf, sizeof(buf), exp,
37 nfexp_destroy(exp);
/external/selinux/libsepol/tests/
H A Ddebug.c37 void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp) argument
41 for (cur = exp; cur != NULL; cur = cur->next) {
/external/webrtc/webrtc/base/
H A Dexp_filter.cc24 float ExpFilter::Apply(float exp, float sample) { argument
28 } else if (exp == 1.0) {
31 float alpha = pow(alpha_, exp);
/external/webrtc/webrtc/voice_engine/
H A Dnetwork_predictor_unittest.cc37 float exp = pow(0.9999f, 1000); local
38 float value = 32.0f * exp + (1 - exp) * 40.0f;
/external/deqp/framework/delibs/debase/
H A DdeInt32.c72 * \param exp Pointer to resulting exponent value.
76 * result = exp2(exp) * rcp / (1<<DE_RCP_FRAC_BITS).
78 void deRcp32 (deUint32 a, deUint32* rcp, int* exp) argument
174 *exp = 31 - shift;

Completed in 850 milliseconds

1234567891011>>