Home
last modified time | relevance | path

Searched refs:flows (Results 1 – 25 of 51) sorted by relevance

123

/external/boringssl/src/ssl/test/runner/
Drecordingconn.go49 flows []flow member
58 …if l := len(r.flows); flowType == specialFlow || r.isDatagram || l == 0 || r.flows[l-1].flowType !…
61 r.flows = append(r.flows, flow{flowType, message, buf})
63 r.flows[l-1].data = append(r.flows[l-1].data, data...)
91 for i, flow := range r.flows {
111 for _, flow := range r.flows {
124 func parseTestData(r io.Reader) (flows [][]byte, err error) {
133 if len(currentFlow) > 0 || len(flows) > 0 {
134 flows = append(flows, currentFlow)
167 flows = append(flows, currentFlow)
[all …]
/external/tensorflow/tensorflow/contrib/image/python/kernel_tests/
Ddense_image_warp_test.py98 flows = array_ops.placeholder(dtype=tf_type[flow_type], shape=flow_shape)
99 return image, flows
106 flows = np.random.normal(size=flow_shape) * 3
107 return image.astype(image_type), flows.astype(flow_type)
111 flows, argument
121 displacement = flows[batch_index, y_index, x_index, :]
159 image, flows = self.get_image_and_flow_placeholders(shape, image_type,
161 interp = dense_image_warp.dense_image_warp(image, flows)
171 flows: rand_flows
190 image, flows = self.get_image_and_flow_placeholders(shape, image_type,
[all …]
/external/adhd/cras/src/tests/
Ddsp_ini_unittest.cc42 EXPECT_EQ(0, ARRAY_COUNT(&ini->flows)); in TEST_F()
64 EXPECT_EQ(0, ARRAY_COUNT(&ini->flows)); in TEST_F()
89 EXPECT_EQ(0, ARRAY_COUNT(&ini->flows)); in TEST_F()
104 EXPECT_EQ(0, ARRAY_COUNT(&ini->flows)); in TEST_F()
154 EXPECT_EQ(2, ARRAY_COUNT(&ini->flows)); in TEST_F()
155 struct flow *flow0 = ARRAY_ELEMENT(&ini->flows, 0); in TEST_F()
156 struct flow *flow1 = ARRAY_ELEMENT(&ini->flows, 1); in TEST_F()
264 struct flow *flow_a0 = ARRAY_ELEMENT(&ini->flows, 0); in TEST_F()
265 struct flow *flow_a1 = ARRAY_ELEMENT(&ini->flows, 1); in TEST_F()
266 struct flow *flow_b0 = ARRAY_ELEMENT(&ini->flows, 2); in TEST_F()
[all …]
/external/iproute2/tc/
Dq_fq_codel.c63 unsigned int flows = 0; in fq_codel_parse_opt() local
81 if (get_unsigned(&flows, *argv, 0)) { in fq_codel_parse_opt()
134 if (flows) in fq_codel_parse_opt()
135 addattr_l(n, 1024, TCA_FQ_CODEL_FLOWS, &flows, sizeof(flows)); in fq_codel_parse_opt()
159 unsigned int flows; in fq_codel_print_opt() local
181 flows = rta_getattr_u32(tb[TCA_FQ_CODEL_FLOWS]); in fq_codel_print_opt()
182 fprintf(f, "flows %u ", flows); in fq_codel_print_opt()
Dq_sfq.c82 if (get_u32(&opt.v0.flows, *argv, 0)) { in sfq_parse_opt()
228 fprintf(f, "flows %u/%u ", qopt->flows, qopt->divisor); in sfq_print_opt()
Dq_fq.c322 st->flows, st->inactive_flows, st->throttled_flows); in fq_print_xstats()
/external/adhd/cras/src/server/
Dcras_dsp_ini.c76 FOR_ARRAY_ELEMENT(&ini->flows, i, flow) { in lookup_flow()
90 i = ARRAY_COUNT(&ini->flows); in lookup_or_add_flow()
91 flow = ARRAY_APPEND_ZERO(&ini->flows); in lookup_or_add_flow()
183 flow = ARRAY_ELEMENT(&ini->flows, flow_id); in fill_flow_info()
241 i = ARRAY_COUNT(&ini->flows); in add_new_flow()
242 flow = ARRAY_APPEND_ZERO(&ini->flows); in add_new_flow()
424 ARRAY_FREE(&ini->flows); in cras_dsp_ini_free()
485 dumpf(d, "number of flows = %d\n", ARRAY_COUNT(&ini->flows)); in cras_dsp_ini_dump()
486 FOR_ARRAY_ELEMENT(&ini->flows, i, flow) { in cras_dsp_ini_dump()
Dcras_dsp_ini.h70 flow_array flows; member
Dcras_dsp_pipeline.c180 flow = ARRAY_ELEMENT(&ini->flows, flow_id); in find_origin_port()
298 flow = ARRAY_ELEMENT(&ini->flows, flow_id); in topological_sort()
/external/libnl/lib/cli/qdisc/
Dfq_codel.c37 int limit, flows; in fq_codel_parse_argv() local
79 flows = nl_cli_parse_u32(optarg); in fq_codel_parse_argv()
80 rtnl_qdisc_fq_codel_set_flows(qdisc, flows); in fq_codel_parse_argv()
/external/iptables/extensions/
Dlibxt_connbytes.man2 flows constituting the connection) has transferred so far, or by
16 flows will not be gaining/losing a/the accounting structure when be sysctl flag
Dlibip6t_SNPT.man30 target to disable connection tracking for translated flows.
Dlibip6t_DNPT.man30 target to disable connection tracking for translated flows.
Dlibxt_hashlimit.man71 "flows exceeding 512kbyte/s" =>
/external/ukey2/src/main/proto/
Ddevice_to_device_messages.proto73 // Some (but not all) SPAKE flows send a point on an elliptic curve
76 // Some (but not all) SPAKE flows send a hash value
/external/libnl/lib/route/qdisc/
Dfq_codel.c290 int rtnl_qdisc_fq_codel_set_flows(struct rtnl_qdisc *qdisc, int flows) in rtnl_qdisc_fq_codel_set_flows() argument
297 fq_codel->fq_flows = flows; in rtnl_qdisc_fq_codel_set_flows()
Dsfq.c59 sfq->qs_flows = opts->flows; in sfq_msg_parser()
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DCFIVerify.rst39 implemented around all indirect control flows by analysing the output machine
45 review. These unexpected control flows may simply have not been accounted for in
/external/iproute2/include/uapi/linux/
Dpkt_sched.h201 unsigned flows; /* Maximal number of flows */ member
820 __u32 flows; member
/external/bcc/tools/
Dtcpretrans_example.txt47 To spot heavily retransmitting flows quickly one can use the -c flag. It will
/external/u-boot/arch/arm/dts/
Dkeystone-k2g-netcp.dtsi86 <0x4013000 0x400>; /* 32 Rx flows */
/external/kernel-headers/original/uapi/linux/
Dpkt_sched.h217 unsigned flows; /* Maximal number of flows */ member
910 __u32 flows; member
/external/iproute2/bash-completion/
Dtc147 flows|hh_limit|increment|indices|linklayer|non_hh_weight|num_tc|\
299 _tc_once_attr 'limit flows target interval quantum'
343 _tc_once_attr 'limit perturb quantum divisor flows depth headdrop \
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dselect-cmp-br.ll246 ; of the select is used in both flows following the br (the special case where
247 ; the conditional branch has the same target for both flows).
/external/libnl/include/linux-private/linux/
Dpkt_sched.h183 unsigned flows; /* Maximal number of flows */ member

123