Home
last modified time | relevance | path

Searched refs:ct (Results 1 – 25 of 687) sorted by relevance

12345678910>>...28

/third_party/libnl/lib/netfilter/
Dct_obj.c61 struct nfnl_ct *ct = (struct nfnl_ct *) c; in ct_free_data() local
63 if (ct == NULL) in ct_free_data()
66 nl_addr_put(ct->ct_orig.src); in ct_free_data()
67 nl_addr_put(ct->ct_orig.dst); in ct_free_data()
68 nl_addr_put(ct->ct_repl.src); in ct_free_data()
69 nl_addr_put(ct->ct_repl.dst); in ct_free_data()
122 static void dump_icmp(struct nl_dump_params *p, struct nfnl_ct *ct, int reply) in dump_icmp() argument
124 if (nfnl_ct_test_icmp_type(ct, reply)) in dump_icmp()
125 nl_dump(p, "icmp type %d ", nfnl_ct_get_icmp_type(ct, reply)); in dump_icmp()
127 if (nfnl_ct_test_icmp_code(ct, reply)) in dump_icmp()
[all …]
Dct.c102 static int ct_parse_ip(struct nfnl_ct *ct, int repl, struct nlattr *attr) in ct_parse_ip() argument
116 err = nfnl_ct_set_src(ct, repl, addr); in ct_parse_ip()
125 err = nfnl_ct_set_dst(ct, repl, addr); in ct_parse_ip()
134 err = nfnl_ct_set_src(ct, repl, addr); in ct_parse_ip()
143 err = nfnl_ct_set_dst(ct, repl, addr); in ct_parse_ip()
157 static int ct_parse_proto(struct nfnl_ct *ct, int repl, struct nlattr *attr) in ct_parse_proto() argument
167 nfnl_ct_set_proto(ct, nla_get_u8(tb[CTA_PROTO_NUM])); in ct_parse_proto()
169 nfnl_ct_set_src_port(ct, repl, in ct_parse_proto()
172 nfnl_ct_set_dst_port(ct, repl, in ct_parse_proto()
175 if (ct->ct_family == AF_INET) { in ct_parse_proto()
[all …]
/third_party/openssl/test/ssl-tests/
D12-ct.conf5 test-0 = 0-ct-permissive-without-scts
6 test-1 = 1-ct-permissive-with-scts
7 test-2 = 2-ct-strict-without-scts
8 test-3 = 3-ct-strict-with-scts
9 test-4 = 4-ct-permissive-resumption
10 test-5 = 5-ct-strict-resumption
13 [0-ct-permissive-without-scts]
14 ssl_conf = 0-ct-permissive-without-scts-ssl
16 [0-ct-permissive-without-scts-ssl]
17 server = 0-ct-permissive-without-scts-server
[all …]
/third_party/grpc/test/core/gpr/
Dcpu_test.cc68 struct cpu_test* ct = static_cast<struct cpu_test*>(arg); in worker_thread() local
81 GPR_ASSERT(cpu < ct->ncores); in worker_thread()
82 gpr_mu_lock(&ct->mu); in worker_thread()
83 ct->used[cpu] = 1; in worker_thread()
84 for (j = 0; j < ct->ncores; j++) { in worker_thread()
85 if (!ct->used[j]) break; in worker_thread()
87 gpr_mu_unlock(&ct->mu); in worker_thread()
88 if (j == ct->ncores) { in worker_thread()
92 gpr_mu_lock(&ct->mu); in worker_thread()
93 ct->r = r; /* make it look like we care about r's value... */ in worker_thread()
[all …]
/third_party/node/test/fixtures/
Daead-vectors.js5 ct: '4be13896f64dfa2c2d0f2c76', property
10 ct: '4be13896f64dfa2c2d0f2c76', aad: '000000FF', property
15 ct: '4be13596f64dfa2c2d0fac76', property
20 ct: '58e62cfe7b1d274111a82267ebb93866e72b6c2a', property
25 ct: '58e62cff7b1d274011a82267ebb93866e72b6c2b', property
31 ct: 'dda53a4059aa17b88756984995f7bba3c636cc44', property
43 ct: '', property
52 ct: '0388dace60b6a392f328c2b971b2fe78', property
64 ct: '42831ec2217774244b7221b784d0d49c' + property
80 ct: '42831ec2217774244b7221b784d0d49c' + property
[all …]
/third_party/boost/boost/geometry/srs/projections/impl/
Dpj_gridinfo.hpp147 pj_ctable ct; member
155 ct.swap(r.ct); in swap()
192 pj_ctable & ct = gi.ct; in pj_gridinfo_load_ctable() local
202 std::size_t a_size = ct.lim.lam * ct.lim.phi; in pj_gridinfo_load_ctable()
203 ct.cvs.resize(a_size); in pj_gridinfo_load_ctable()
206 is.read(reinterpret_cast<char*>(&ct.cvs[0]), ch_size); in pj_gridinfo_load_ctable()
210 ct.cvs.clear(); in pj_gridinfo_load_ctable()
228 pj_ctable & ct = gi.ct; in pj_gridinfo_load_ctable2() local
233 std::size_t a_size = ct.lim.lam * ct.lim.phi; in pj_gridinfo_load_ctable2()
234 ct.cvs.resize(a_size); in pj_gridinfo_load_ctable2()
[all …]
Dpj_apply_gridshift.hpp64 pj_ctable const& ct) in nad_intr() argument
70 indx.lam = int_floor(in_lon /= ct.del.lam); in nad_intr()
71 indx.phi = int_floor(in_lat /= ct.del.phi); in nad_intr()
82 } else if ((in = indx.lam + 1) >= ct.lim.lam) { in nad_intr()
83 if (in == ct.lim.lam && frct.lam < 1e-11) { in nad_intr()
95 } else if ((in = indx.phi + 1) >= ct.lim.phi) { in nad_intr()
96 if (in == ct.lim.phi && frct.phi < 1e-11) { in nad_intr()
102 boost::int32_t index = indx.phi * ct.lim.lam + indx.lam; in nad_intr()
103 pj_ctable::flp_t const& f00 = ct.cvs[index++]; in nad_intr()
104 pj_ctable::flp_t const& f10 = ct.cvs[index]; in nad_intr()
[all …]
/third_party/libnl/src/lib/
Dct.c25 struct nfnl_ct *ct; in nl_cli_ct_alloc() local
27 ct = nfnl_ct_alloc(); in nl_cli_ct_alloc()
28 if (!ct) in nl_cli_ct_alloc()
31 return ct; in nl_cli_ct_alloc()
39 void nl_cli_ct_parse_family(struct nfnl_ct *ct, char *arg) in nl_cli_ct_parse_family() argument
48 nfnl_ct_set_family(ct, family); in nl_cli_ct_parse_family()
51 void nl_cli_ct_parse_protocol(struct nfnl_ct *ct, char *arg) in nl_cli_ct_parse_protocol() argument
60 nfnl_ct_set_proto(ct, proto); in nl_cli_ct_parse_protocol()
63 void nl_cli_ct_parse_mark(struct nfnl_ct *ct, char *arg) in nl_cli_ct_parse_mark() argument
66 nfnl_ct_set_mark(ct, mark); in nl_cli_ct_parse_mark()
[all …]
/third_party/googletest/googlemock/include/gmock/
Dgmock-function-mocker.h377 #define MOCK_METHOD0_WITH_CALLTYPE(ct, m, ...) \ argument
378 GMOCK_INTERNAL_MOCK_METHODN(, ct, m, 0, __VA_ARGS__)
379 #define MOCK_METHOD1_WITH_CALLTYPE(ct, m, ...) \ argument
380 GMOCK_INTERNAL_MOCK_METHODN(, ct, m, 1, __VA_ARGS__)
381 #define MOCK_METHOD2_WITH_CALLTYPE(ct, m, ...) \ argument
382 GMOCK_INTERNAL_MOCK_METHODN(, ct, m, 2, __VA_ARGS__)
383 #define MOCK_METHOD3_WITH_CALLTYPE(ct, m, ...) \ argument
384 GMOCK_INTERNAL_MOCK_METHODN(, ct, m, 3, __VA_ARGS__)
385 #define MOCK_METHOD4_WITH_CALLTYPE(ct, m, ...) \ argument
386 GMOCK_INTERNAL_MOCK_METHODN(, ct, m, 4, __VA_ARGS__)
[all …]
/third_party/libnl/src/
Dnf-ct-list.c55 struct nfnl_ct *ct; in main() local
61 ct = nl_cli_ct_alloc(); in main()
108 case '4': nfnl_ct_set_family(ct, AF_INET); break; in main()
109 case '6': nfnl_ct_set_family(ct, AF_INET6); break; in main()
113 case 'i': nl_cli_ct_parse_id(ct, optarg); break; in main()
114 case 'p': nl_cli_ct_parse_protocol(ct, optarg); break; in main()
115 case ARG_TCP_STATE: nl_cli_ct_parse_tcp_state(ct, optarg); break; in main()
116 case ARG_ORIG_SRC: nl_cli_ct_parse_src(ct, 0, optarg); break; in main()
117 case ARG_ORIG_SPORT: nl_cli_ct_parse_src_port(ct, 0, optarg); break; in main()
118 case ARG_ORIG_DST: nl_cli_ct_parse_dst(ct, 0, optarg); break; in main()
[all …]
Dnf-ct-add.c54 struct nfnl_ct *ct; in main() local
61 ct = nl_cli_ct_alloc(); in main()
107 case '4': nfnl_ct_set_family(ct, AF_INET); break; in main()
108 case '6': nfnl_ct_set_family(ct, AF_INET6); break; in main()
111 case 'p': nl_cli_ct_parse_protocol(ct, optarg); break; in main()
112 case ARG_ORIG_SRC: nl_cli_ct_parse_src(ct, 0, optarg); break; in main()
113 case ARG_ORIG_SPORT: nl_cli_ct_parse_src_port(ct, 0, optarg); break; in main()
114 case ARG_ORIG_DST: nl_cli_ct_parse_dst(ct, 0, optarg); break; in main()
115 case ARG_ORIG_DPORT: nl_cli_ct_parse_dst_port(ct, 0, optarg); break; in main()
116 case ARG_REPLY_SRC: nl_cli_ct_parse_src(ct, 1, optarg); break; in main()
[all …]
/third_party/boost/libs/geometry/test/algorithms/set_operations/difference/
Ddifference_multi_spike.cpp33 typedef typename bg::coordinate_type<P>::type ct; in test_spikes_in_ticket_8364() typedef
47 if_typed<ct, int>(19, 22), in test_spikes_in_ticket_8364()
48 if_typed<ct, int>(2775595.5, 2775256.487954), // SQL Server: 2775256.47588724 in test_spikes_in_ticket_8364()
51 if_typed<ct, int>(7893.0, 7810.487954), // SQL Server: 7810.48711165739 in test_spikes_in_ticket_8364()
52 if_typed<ct, int>(1, 5), in test_spikes_in_ticket_8364()
54 if_typed<ct, int>(2783349.5, 2775256.487954 + 7810.487954), in test_spikes_in_ticket_8364()
62 if_typed<ct, int>(1, 2), in test_spikes_in_ticket_8364()
63 if_typed<ct, int>(17, 20), in test_spikes_in_ticket_8364()
64 if_typed<ct, int>(2615783.5, 2616029.559567), // SQL Server: 2616029.55616044 in test_spikes_in_ticket_8364()
66 if_typed<ct, int>(9, 11), in test_spikes_in_ticket_8364()
[all …]
/third_party/iptables/extensions/
Dlibxt_u32.c45 const struct xt_u32_test *ct; in u32_dump() local
50 ct = &data->tests[testind]; in u32_dump()
55 printf("0x%x", ct->location[0].number); in u32_dump()
56 for (i = 1; i < ct->nnums; ++i) { in u32_dump()
57 switch (ct->location[i].nextop) { in u32_dump()
71 printf("0x%x", ct->location[i].number); in u32_dump()
75 for (i = 0; i < ct->nvalues; ++i) { in u32_dump()
78 if (ct->value[i].min == ct->value[i].max) in u32_dump()
79 printf("0x%x", ct->value[i].min); in u32_dump()
81 printf("0x%x:0x%x", ct->value[i].min, in u32_dump()
[all …]
Dlibxt_conntrack.txlate2 nft add rule ip filter INPUT ct state new,related counter accept
5 nft add rule ip6 filter INPUT ct state != new,related counter accept
8 nft add rule ip filter INPUT ct original protocol 17 counter accept
11 nft add rule ip filter INPUT ct original protocol != 17 counter accept
14 nft add rule ip filter INPUT ct original saddr 10.100.2.131 counter accept
17 nft add rule ip filter INPUT ct original saddr 10.100.0.0/16 counter accept
20 nft add rule ip filter INPUT ct original daddr 10.100.2.131 counter accept
23 nft add rule ip filter INPUT ct reply saddr 10.100.2.131 counter accept
26 nft add rule ip filter INPUT ct reply daddr 10.100.2.131 counter accept
29 nft add rule ip filter INPUT ct original protocol 6 ct original proto-src 443-444 counter accept
[all …]
/third_party/boost/boost/geometry/geometries/register/
Dsegment.hpp26 typedef typename coordinate_type<Point>::type ct; \
27 static inline ct get(Segment const& b) \
29 static inline void set(Segment& b, ct const& value) \
35 typedef typename coordinate_type<Point>::type ct; \
36 static inline ct get(Segment const& b) \
38 static inline void set(Segment& b, ct const& value) \
47 typedef typename coordinate_type<P>::type ct; \
48 static inline ct get(Segment<P> const& b) \
50 static inline void set(Segment<P>& b, ct const& value) \
56 typedef typename coordinate_type<P>::type ct; \
[all …]
Dbox.hpp26 typedef typename coordinate_type<Point>::type ct; \
27 static inline ct get(Box const& b) \
29 static inline void set(Box& b, ct const& value) \
35 typedef typename coordinate_type<Point>::type ct; \
36 static inline ct get(Box const& b) \
38 static inline void set(Box& b, ct const& value) \
47 typedef typename coordinate_type<P>::type ct; \
48 static inline ct get(Box<P> const& b) \
50 static inline void set(Box<P>& b, ct const& value) \
56 typedef typename coordinate_type<P>::type ct; \
[all …]
/third_party/boost/boost/geometry/strategies/transform/
Dmatrix_transformers.hpp116 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::detail::matrix_transformer::matrix_transformer
117 typedef boost::qvm::mat<ct, Dimension2 + 1, Dimension1 + 1> matrix_type;
126 qvm::vec<ct,Dimension1 + 1> p1temp; in apply()
128 qvm::vec<ct,Dimension2 + 1> p2temp; in apply()
170 typedef CalculationType ct; typedef in boost::geometry::strategy::transform::matrix_transformer
181 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, in matrix_transformer()
182 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, in matrix_transformer()
183 ct const& m_2_0, ct const& m_2_1, ct const& m_2_2) in matrix_transformer()
196 ct const& c1 = get<0>(p1); in apply()
197 ct const& c2 = get<1>(p1); in apply()
[all …]
/third_party/boost/libs/multi_index/example/
Dcomplex_structs.cpp187 car_table ct; in main() local
193 ct.insert(car_model("XLR",cadillac,76200)); in main()
194 ct.insert(car_model("SRX",cadillac,38690)); in main()
195 ct.insert(car_model("CTS",cadillac,30695)); in main()
196 ct.insert(car_model("Escalade",cadillac,54770)); in main()
197 ct.insert(car_model("ESV",cadillac,57195)); in main()
198 ct.insert(car_model("EXT",cadillac,52045)); in main()
199 ct.insert(car_model("Deville",cadillac,45195)); in main()
200 ct.insert(car_model("Seville",cadillac,46330)); in main()
202 ct.insert(car_model("ZX2",ford,15355)); in main()
[all …]
/third_party/boost/libs/math/test/
Dcomplex_test.cpp267 typedef std::complex<T> ct; in check_spots() typedef
268 ct result; in check_spots()
298 result = boost::math::acos(ct(zero)); in check_spots()
299 check_complex(ct(half_pi), result, 2); in check_spots()
301 result = boost::math::acos(ct(mzero)); in check_spots()
302 check_complex(ct(half_pi), result, 2); in check_spots()
304 result = boost::math::acos(ct(zero, mzero)); in check_spots()
305 check_complex(ct(half_pi), result, 2); in check_spots()
307 result = boost::math::acos(ct(mzero, mzero)); in check_spots()
308 check_complex(ct(half_pi), result, 2); in check_spots()
[all …]
/third_party/boost/boost/fusion/algorithm/query/detail/
Dcount_if.hpp71 int ct = unrolled_count_if<n-4>:: in call() local
74 ++ct; in call()
79 ++ct; in call()
84 ++ct; in call()
89 ++ct; in call()
91 return ct; in call()
102 int ct = 0; in call() local
104 ++ct; in call()
109 ++ct; in call()
114 ++ct; in call()
[all …]
/third_party/flutter/skia/include/private/
DSkImageInfoPriv.h26 static inline uint32_t SkColorTypeComponentFlags(SkColorType ct) { in SkColorTypeComponentFlags() argument
27 switch (ct) { in SkColorTypeComponentFlags()
45 static inline bool SkColorTypeIsAlphaOnly(SkColorType ct) { in SkColorTypeIsAlphaOnly() argument
46 return kAlpha_SkColorTypeComponentFlag == SkColorTypeComponentFlags(ct); in SkColorTypeIsAlphaOnly()
53 static inline bool SkColorTypeIsGray(SkColorType ct) { in SkColorTypeIsGray() argument
54 auto flags = SkColorTypeComponentFlags(ct); in SkColorTypeIsGray()
60 static int SkColorTypeShiftPerPixel(SkColorType ct) { in SkColorTypeShiftPerPixel() argument
61 switch (ct) { in SkColorTypeShiftPerPixel()
79 static inline size_t SkColorTypeMinRowBytes(SkColorType ct, int width) { in SkColorTypeMinRowBytes() argument
80 return width * SkColorTypeBytesPerPixel(ct); in SkColorTypeMinRowBytes()
[all …]
/third_party/skia/include/private/
DSkImageInfoPriv.h14 static inline uint32_t SkColorTypeChannelFlags(SkColorType ct) { in SkColorTypeChannelFlags() argument
15 switch (ct) { in SkColorTypeChannelFlags()
42 static inline bool SkColorTypeIsAlphaOnly(SkColorType ct) { in SkColorTypeIsAlphaOnly() argument
43 return SkColorTypeChannelFlags(ct) == kAlpha_SkColorChannelFlag; in SkColorTypeIsAlphaOnly()
50 static int SkColorTypeShiftPerPixel(SkColorType ct) { in SkColorTypeShiftPerPixel() argument
51 switch (ct) { in SkColorTypeShiftPerPixel()
78 static inline size_t SkColorTypeMinRowBytes(SkColorType ct, int width) { in SkColorTypeMinRowBytes() argument
79 return (size_t)(width * SkColorTypeBytesPerPixel(ct)); in SkColorTypeMinRowBytes()
86 static inline size_t SkColorTypeComputeOffset(SkColorType ct, int x, int y, size_t rowBytes) { in SkColorTypeComputeOffset() argument
87 if (kUnknown_SkColorType == ct) { in SkColorTypeComputeOffset()
[all …]
/third_party/boost/boost/math/special_functions/
Dnonfinite_num_facets.hpp179 const std::ctype<CharType>& ct in put_num_and_fill() local
205 *it = ct.toupper(*(body++)); in put_num_and_fill()
301 const std::ctype<CharType>& ct in get_signed() local
304 char c = peek_char(it, end, ct); in get_signed()
311 c = peek_char(it, end, ct); in get_signed()
319 get_unsigned(it, end, iosb, ct, state, val); in get_signed()
331 const std::ctype<CharType>& ct, in get_unsigned() argument
335 switch(peek_char(it, end, ct)) in get_unsigned()
338 get_i(it, end, ct, state, val); in get_unsigned()
342 get_n(it, end, ct, state, val); in get_unsigned()
[all …]
/third_party/boost/libs/callable_traits/example/
Dis_transaction_safe.cpp17 namespace ct = boost::callable_traits;
21 static_assert(ct::is_transaction_safe<int() transaction_safe>::value, "");
22 static_assert(ct::is_transaction_safe<int(*)() transaction_safe>::value, "");
23 static_assert(ct::is_transaction_safe<int(&)() transaction_safe>::value, "");
24 static_assert(ct::is_transaction_safe<int(foo::*)() const transaction_safe>::value, "");
26 static_assert(!ct::is_transaction_safe<int()>::value, "");
27 static_assert(!ct::is_transaction_safe<int(*)()>::value, "");
28 static_assert(!ct::is_transaction_safe<int(&)()>::value, "");
29 static_assert(!ct::is_transaction_safe<int(foo::*)() const>::value, "");
Dis_noexcept.cpp17 namespace ct = boost::callable_traits;
21 static_assert(ct::is_noexcept<int() noexcept>::value, "");
22 static_assert(ct::is_noexcept<int(*)() noexcept>::value, "");
23 static_assert(ct::is_noexcept<int(&)() noexcept>::value, "");
24 static_assert(ct::is_noexcept<int(foo::*)() const noexcept>::value, "");
26 static_assert(!ct::is_noexcept<int()>::value, "");
27 static_assert(!ct::is_noexcept<int(*)()>::value, "");
28 static_assert(!ct::is_noexcept<int(&)()>::value, "");
29 static_assert(!ct::is_noexcept<int(foo::*)() const>::value, "");

12345678910>>...28