Home
last modified time | relevance | path

Searched defs:exp (Results 1 – 25 of 485) sorted by relevance

12345678910>>...20

/third_party/libnl/lib/netfilter/
Dexp_obj.c67 struct nfnl_exp *exp = (struct nfnl_exp *) c; in exp_free_data() local
173 static void dump_icmp(struct nl_dump_params *p, struct nfnl_exp *exp, int tuple) in dump_icmp()
185 static void exp_dump_tuples(struct nfnl_exp *exp, struct nl_dump_params *p) in exp_dump_tuples()
228 struct nfnl_exp *exp = (struct nfnl_exp *) a; in exp_dump_line() local
239 struct nfnl_exp *exp = (struct nfnl_exp *) a; in exp_dump_details() local
417 void nfnl_exp_get(struct nfnl_exp *exp) in nfnl_exp_get()
422 void nfnl_exp_put(struct nfnl_exp *exp) in nfnl_exp_put()
434 void nfnl_exp_set_family(struct nfnl_exp *exp, uint8_t family) in nfnl_exp_set_family()
440 uint8_t nfnl_exp_get_family(const struct nfnl_exp *exp) in nfnl_exp_get_family()
448 void nfnl_exp_set_flags(struct nfnl_exp *exp, uint32_t flags) in nfnl_exp_set_flags()
[all …]
Dexp.c78 static int exp_parse_ip(struct nfnl_exp *exp, int tuple, struct nlattr *attr) in exp_parse_ip()
133 static int exp_parse_proto(struct nfnl_exp *exp, int tuple, struct nlattr *attr) in exp_parse_proto()
165 static int exp_parse_tuple(struct nfnl_exp *exp, int tuple, struct nlattr *attr) in exp_parse_tuple()
189 static int exp_parse_nat(struct nfnl_exp *exp, struct nlattr *attr) in exp_parse_nat()
227 struct nfnl_exp *exp; in nfnlmsg_exp_parse() local
298 struct nfnl_exp *exp; in exp_msg_parser() local
350 static int nfnl_exp_build_tuple(struct nl_msg *msg, const struct nfnl_exp *exp, in nfnl_exp_build_tuple()
423 static int nfnl_exp_build_nat(struct nl_msg *msg, const struct nfnl_exp *exp) in nfnl_exp_build_nat()
445 static int nfnl_exp_build_message(const struct nfnl_exp *exp, int cmd, int flags, in nfnl_exp_build_message()
502 int nfnl_exp_build_add_request(const struct nfnl_exp *exp, int flags, in nfnl_exp_build_add_request()
[all …]
/third_party/libnl/src/lib/
Dexp.c26 struct nfnl_exp *exp; in nl_cli_exp_alloc() local
40 void nl_cli_exp_parse_family(struct nfnl_exp *exp, char *arg) in nl_cli_exp_parse_family()
52 void nl_cli_exp_parse_timeout(struct nfnl_exp *exp, char *arg) in nl_cli_exp_parse_timeout()
58 void nl_cli_exp_parse_id(struct nfnl_exp *exp, char *arg) in nl_cli_exp_parse_id()
64 void nl_cli_exp_parse_helper_name(struct nfnl_exp *exp, char *arg) in nl_cli_exp_parse_helper_name()
69 void nl_cli_exp_parse_zone(struct nfnl_exp *exp, char *arg) in nl_cli_exp_parse_zone()
75 void nl_cli_exp_parse_flags(struct nfnl_exp *exp, char *arg) in nl_cli_exp_parse_flags()
81 void nl_cli_exp_parse_class(struct nfnl_exp *exp, char *arg) in nl_cli_exp_parse_class()
87 void nl_cli_exp_parse_nat_dir(struct nfnl_exp *exp, char *arg) in nl_cli_exp_parse_nat_dir()
93 void nl_cli_exp_parse_fn(struct nfnl_exp *exp, char *arg) in nl_cli_exp_parse_fn()
[all …]
/third_party/mesa3d/include/android_stub/cutils/
Dcompiler.h25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true )) argument
26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false )) argument
28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 )) argument
29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 )) argument
/third_party/icu/icu4c/source/common/
Duassert.h33 # define U_ASSERT(exp) assert(exp) argument
35 # define U_ASSERT(exp) (void)0 argument
37 # define U_ASSERT(exp) argument
/third_party/skia/third_party/externals/icu/source/common/
Duassert.h33 # define U_ASSERT(exp) assert(exp) argument
35 # define U_ASSERT(exp) (void)0 argument
37 # define U_ASSERT(exp) argument
/third_party/node/deps/icu-small/source/common/
Duassert.h33 # define U_ASSERT(exp) assert(exp) argument
35 # define U_ASSERT(exp) (void)0 argument
37 # define U_ASSERT(exp) argument
/third_party/boost/libs/gil/test/core/channel/
Dtest_fixture.cpp23 fixture::channel_minmax_value<channel_t> exp; in operator ()() local
40 fixture::channel_minmax_value<channel_t> exp; in operator ()() local
57 fixture::channel_minmax_value<channel_t> exp; in operator ()() local
74 fixture::channel_minmax_value<channel_t> exp; in operator ()() local
95 fixture::channel_minmax_value<std::uint16_t> exp; in operator ()() local
115 fixture::channel_minmax_value<std::uint16_t> exp; in operator ()() local
/third_party/flatbuffers/tests/
Dtest_assert.h19 #define TEST_EQ(exp, val) TestEq(exp, val, "'" #exp "' != '" #val "'", __FILE__, __LINE__, "") argument
22 #define TEST_EQ_STR(exp, val) TestEqStr(exp, val, "'" #exp "' != '" #val "'", __FILE__, __LINE__, "… argument
26 …#define TEST_EQ_FUNC(exp, val) TestEq(exp, val, "'" #exp "' != '" #val "'", __FILE__, __LINE__, __… argument
29 …#define TEST_EQ_FUNC(exp, val) TestEq(exp, val, "'" #exp "' != '" #val "'", __FILE__, __LINE__, __… argument
Dtest_assert.cpp13 void TestFail(const char *expval, const char *val, const char *exp, in TestFail()
27 void TestEqStr(const char *expval, const char *val, const char *exp, in TestEqStr()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcMisc.cpp50 unsigned int exp; in floatToHalfFloat() local
111 unsigned int exp; in floatToUnisgnedF11() local
192 unsigned int exp; in floatToUnisgnedF10() local
261 unsigned int exp = (unsigned int)(hf & HALF_FLOAT_MAX_BIASED_EXP); in halfFloatToFloat() local
311 unsigned int exp = (unsigned int)(f11 & FLOAT11_MAX_BIASED_EXP); in unsignedF11ToFloat() local
361 unsigned int exp = (unsigned int)(f10 & FLOAT10_MAX_BIASED_EXP); in unsignedF10ToFloat() local
/third_party/musl/porting/linux/user/src/hook/
Dcommon_def.h7 #define __predict_true(exp) __builtin_expect((exp) != 0, 1) argument
8 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) argument
/third_party/flutter/skia/third_party/externals/icu/source/common/
Duassert.h28 # define U_ASSERT(exp) assert(exp) argument
30 # define U_ASSERT(exp) argument
/third_party/skia/third_party/externals/tint/src/ast/
Dbitcast_expression_test.cc29 auto* exp = create<BitcastExpression>(ty.f32(), expr); in TEST_F() local
37 auto* exp = create<BitcastExpression>(Source{Source::Location{20, 2}}, in TEST_F() local
47 auto* exp = create<BitcastExpression>(ty.f32(), expr); in TEST_F() local
Dindex_accessor_expression_test.cc28 auto* exp = IndexAccessor(obj, idx); in TEST_F() local
37 auto* exp = IndexAccessor(Source{{20, 2}}, obj, idx); in TEST_F() local
47 auto* exp = IndexAccessor(obj, idx); in TEST_F() local
/third_party/boost/libs/test/test/test-organization-ts/datasets-test/
Dinitializer_list-test.cpp34 int exp[] = {7,11,13,17}; in BOOST_AUTO_TEST_CASE() local
61 int exp[] = {7,11,13,17}; in BOOST_AUTO_TEST_CASE() local
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DBigNumberFormatTest.java134 String exp = "AA*^#,##0.00ZZ"; in TestPatterns() local
156 private void expectPat(DecimalFormat fmt, String exp) { in expectPat()
304 String exp = null, exps[] = null; in expect() local
347 private void expect(NumberFormat fmt, Number n, String exp) { in expect()
361 private void expect(NumberFormat fmt, String str, Number exp) { in expect()
425 String exp = DATA[i+1]; in TestBigDecimalJ28() local
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DBigNumberFormatTest.java131 String exp = "AA*^#,##0.00ZZ"; in TestPatterns() local
153 private void expectPat(DecimalFormat fmt, String exp) { in expectPat()
301 String exp = null, exps[] = null; in expect() local
344 private void expect(NumberFormat fmt, Number n, String exp) { in expect()
358 private void expect(NumberFormat fmt, String str, Number exp) { in expect()
422 String exp = DATA[i+1]; in TestBigDecimalJ28() local
/third_party/abseil-cpp/absl/strings/internal/str_format/
Dfloat_conversion.cc108 static constexpr int ChunksNeeded(int exp) { in ChunksNeeded()
118 static void RunConversion(uint128 v, int exp, in RunConversion()
155 BinaryToDecimal(absl::Span<uint32_t> data, uint128 v, int exp) : data_(data) { in BinaryToDecimal()
227 uint128 v, int exp, absl::FunctionRef<void(FractionalDigitGenerator)> f) { in RunConversion()
283 FractionalDigitGenerator(absl::Span<uint32_t> data, uint128 v, int exp) in FractionalDigitGenerator()
357 char *PrintFractionalDigitsFast(uint64_t v, char *start, int exp, in PrintFractionalDigitsFast()
386 char *PrintFractionalDigitsFast(uint128 v, char *start, int exp, in PrintFractionalDigitsFast()
491 void FormatFFast(Int v, int exp, const FormatState &state) { in FormatFFast()
548 void FormatFPositiveExpSlow(uint128 v, int exp, const FormatState &state) { in FormatFPositiveExpSlow()
576 void FormatFNegativeExpSlow(uint128 v, int exp, const FormatState &state) { in FormatFNegativeExpSlow()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
Dfloat_conversion.cc128 static constexpr int ChunksNeeded(int exp) { in ChunksNeeded()
138 static void RunConversion(uint128 v, int exp, in RunConversion()
175 BinaryToDecimal(absl::Span<uint32_t> data, uint128 v, int exp) : data_(data) { in BinaryToDecimal()
247 uint128 v, int exp, absl::FunctionRef<void(FractionalDigitGenerator)> f) { in RunConversion()
303 FractionalDigitGenerator(absl::Span<uint32_t> data, uint128 v, int exp) in FractionalDigitGenerator()
376 char *PrintFractionalDigitsFast(uint64_t v, char *start, int exp, in PrintFractionalDigitsFast()
405 char *PrintFractionalDigitsFast(uint128 v, char *start, int exp, in PrintFractionalDigitsFast()
510 void FormatFFast(Int v, int exp, const FormatState &state) { in FormatFFast()
567 void FormatFPositiveExpSlow(uint128 v, int exp, const FormatState &state) { in FormatFPositiveExpSlow()
595 void FormatFNegativeExpSlow(uint128 v, int exp, const FormatState &state) { in FormatFNegativeExpSlow()
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dnumfmtst.h354 const char *exp, UBool rt, UErrorCode errorCode) { in expect()
359 const UnicodeString& exp, UErrorCode errorCode) { in expect()
364 const char *exp, UErrorCode errorCode) { in expect()
389 void expectPat(DecimalFormat& fmt, const char *exp) { in expectPat()
/third_party/ffmpeg/libavutil/
Dsoftfloat_ieee754.h32 int32_t exp; member
81 int32_t mant, exp, sign; in av_div_sf_ieee754() local
94 int32_t sign, mant, exp; in av_mul_sf_ieee754() local
/third_party/mindspore/tests/st/ops/ascend/test_tbe_ops/
Dtest_pow.py32 def construct(self, input_, exp): argument
36 def pow_forward_me_impl(input_, exp): argument
/third_party/libwebsockets/lib/secure-streams/protocols/
Dss-mqtt.c53 lws_strexp_t exp; in secstream_mqtt_subscribe() local
150 lws_strexp_t exp; in secstream_mqtt_publish() local
397 lws_strexp_t exp; in secstream_mqtt() local
505 lws_strexp_t exp; in secstream_connect_munge_mqtt() local
/third_party/mesa3d/src/asahi/compiler/
Dagx_minifloat.h38 signed exp = (imm & 0x70) >> 4; in agx_minifloat_decode() local
58 int exp = 0; in agx_minifloat_encode() local

12345678910>>...20