HomeSort by relevance Sort by last modified time
    Searched refs:exp (Results 1 - 25 of 2516) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr12942a.h 5 int exp = -1; local
6 if ((exp < 2 ? 2U : (unsigned int) exp) != 2)
  /external/libnetfilter_conntrack/src/expect/
getter.c 12 static const void *get_exp_attr_master(const struct nf_expect *exp)
14 return &exp->master;
17 static const void *get_exp_attr_expected(const struct nf_expect *exp)
19 return &exp->expected;
22 static const void *get_exp_attr_mask(const struct nf_expect *exp)
24 return &exp->mask;
27 static const void *get_exp_attr_timeout(const struct nf_expect *exp)
29 return &exp->timeout;
32 static const void *get_exp_attr_zone(const struct nf_expect *exp)
34 return &exp->zone
    [all...]
setter.c 12 static void set_exp_attr_master(struct nf_expect *exp, const void *value)
14 exp->master = *((struct nfct_tuple_head *) value);
17 static void set_exp_attr_expected(struct nf_expect *exp, const void *value)
19 exp->expected = *((struct nfct_tuple_head *) value);
22 static void set_exp_attr_mask(struct nf_expect *exp, const void *value)
24 exp->mask = *((struct nfct_tuple_head *) value);
27 static void set_exp_attr_timeout(struct nf_expect *exp, const void *value)
29 exp->timeout = *((uint32_t *) value);
32 static void set_exp_attr_zone(struct nf_expect *exp, const void *value)
34 exp->zone = *((uint16_t *) value)
    [all...]
build_mnl.c 16 nfexp_nlmsg_build(struct nlmsghdr *nlh, const struct nf_expect *exp)
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->set)
    [all...]
build.c 14 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->helper_name, strlen(exp->helper_name)+1)
    [all...]
parse.c 31 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->set)
    [all...]
  /system/core/libcutils/include/cutils/
compiler.h 25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true ))
26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
  /external/icu/icu4c/source/common/
uassert.h 28 # define U_ASSERT(exp) assert(exp)
30 # define U_ASSERT(exp)
  /external/libcxx/test/std/atomics/atomics.general/
replace_failure_order.pass.cpp 30 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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/atomics/atomics.general/
replace_failure_order.pass.cpp 30 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/
exp.c 2 * 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)
48 nfnl_exp_set_family(exp, family);
51 void nl_cli_exp_parse_timeout(struct nfnl_exp *exp, char *arg)
54 nfnl_exp_set_timeout(exp, timeout)
    [all...]
  /external/compiler-rt/test/asan/TestCases/
frexp_interceptor.cc 10 int *exp = (int*)malloc(sizeof(int)); local
11 free(exp);
12 double y = frexp(x, exp);
  /external/eigen/doc/snippets/
Cwise_exp.cpp 2 cout << v.exp() << endl;
  /external/libnl/src/
nf-exp-list.c 2 * 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_EXPECT, optarg); break
    [all...]
nf-exp-delete.c 2 * 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_EXPECT, optarg); break
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
UnwantedTokenException.java 44 String exp = ", expected "+expecting; local
46 exp = "";
49 return "UnwantedTokenException(found="+null+exp+")";
51 return "UnwantedTokenException(found="+token.getText()+exp+")";
  /external/fdlibm/
s_ldexp.c 18 double ieee_ldexp(double value, int exp)
20 double ieee_ldexp(value, exp)
21 double value; int exp;
25 value = ieee_scalbn(value,exp);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
log2.cpp 170 Word16 exp; local
174 exp = norm_l(L_x);
175 result = L_x << exp;
176 Log2_norm(result, exp, pExponent, pFraction);
  /prebuilts/go/darwin-x86/src/math/
exp_386.s 7 // func Exp(x float64) float64
8 TEXT ·Exp(SB),NOSPLIT,$0
11 JMP ·exp(SB)
exp_arm.s 7 TEXT ·Exp(SB),NOSPLIT,$0
8 B ·exp(SB)
  /prebuilts/go/linux-x86/src/math/
exp_386.s 7 // func Exp(x float64) float64
8 TEXT ·Exp(SB),NOSPLIT,$0
11 JMP ·exp(SB)
exp_arm.s 7 TEXT ·Exp(SB),NOSPLIT,$0
8 B ·exp(SB)
  /external/sonivox/arm-wt-22k/lib_src/
eas_flog.c 66 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;
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
scale_signal.cpp 49 int16 exp (i) : exponent: x = round(x << exp)
118 int16 exp /* (i) : exponent: x = round(x << exp) */
129 if (exp > 0)
133 L_tmp = shl_int32(((int32)x[i] << 16), exp); /* saturation can occur here */
137 else if (exp < 0)
139 exp = -exp;
140 exp &= 0xf
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
UnwantedTokenException.pm 18 my $exp;
20 $exp = '';
23 $exp = ", expected " . $self->expecting;
27 return "UnwantedTokenException(found=" . $self->token->get_text() . "$exp)";
30 return "UnwantedTokenException(found=undef$exp)";

Completed in 421 milliseconds

1 2 3 4 5 6 7 8 91011>>