/external/boringssl/src/ssl/test/runner/ |
D | recordingconn.go | 35 flows []flow member 44 …if l := len(r.flows); flowType == specialFlow || r.isDatagram || l == 0 || r.flows[l-1].flowType !… 47 r.flows = append(r.flows, flow{flowType, message, buf}) 49 r.flows[l-1].data = append(r.flows[l-1].data, data...) 77 for i, flow := range r.flows { 95 func parseTestData(r io.Reader) (flows [][]byte, err error) { 104 if len(currentFlow) > 0 || len(flows) > 0 { 105 flows = append(flows, currentFlow) 138 flows = append(flows, currentFlow) 141 return flows, nil
|
/external/opencv3/modules/cudaoptflow/perf/ |
D | perf_optflow.cpp | 82 cv::cuda::GpuMat flows[2]; variable 83 cv::cuda::split(flow, flows); 85 cv::cuda::GpuMat u = flows[0]; 86 cv::cuda::GpuMat v = flows[1]; 207 cv::cuda::GpuMat flows[2]; variable 208 cv::cuda::split(flow, flows); 210 cv::cuda::GpuMat u = flows[0]; 211 cv::cuda::GpuMat v = flows[1]; 256 cv::cuda::GpuMat flows[2]; variable 257 cv::cuda::split(flow, flows); [all …]
|
/external/iproute2/tc/ |
D | q_fq_codel.c | 63 unsigned flows = 0; in fq_codel_parse_opt() local 80 if (get_unsigned(&flows, *argv, 0)) { in fq_codel_parse_opt() 127 if (flows) in fq_codel_parse_opt() 128 addattr_l(n, 1024, TCA_FQ_CODEL_FLOWS, &flows, sizeof(flows)); in fq_codel_parse_opt() 148 unsigned flows; in fq_codel_print_opt() local 168 flows = rta_getattr_u32(tb[TCA_FQ_CODEL_FLOWS]); in fq_codel_print_opt() 169 fprintf(f, "flows %u ", flows); in fq_codel_print_opt()
|
D | q_sfq.c | 84 if (get_u32(&opt.v0.flows, *argv, 0)) { in sfq_parse_opt() 229 fprintf(f, "flows %u/%u ", qopt->flows, qopt->divisor); in sfq_print_opt()
|
D | q_fq.c | 301 st->flows, st->inactive_flows, st->throttled_flows); in fq_print_xstats()
|
/external/opencv3/modules/superres/src/ |
D | optical_flow.cpp | 539 GpuMat flows[2]; in impl() local 540 cuda::split(flow, flows); in impl() 542 dst1 = flows[0]; in impl() 543 dst2 = flows[1]; in impl() 608 GpuMat flows[2]; in impl() local 609 cuda::split(flow, flows); in impl() 611 dst1 = flows[0]; in impl() 612 dst2 = flows[1]; in impl() 693 GpuMat flows[2]; in impl() local 694 cuda::split(flow, flows); in impl() [all …]
|
/external/opencv3/modules/videostab/src/ |
D | optical_flow.cpp | 141 cuda::GpuMat flows[2]; in run() local 142 cuda::split(flow, flows); in run() 144 flowX_ = flows[0]; in run() 145 flowY_ = flows[1]; in run()
|
/external/opencv3/modules/cudaoptflow/test/ |
D | test_optflow.cpp | 81 cv::cuda::GpuMat flows[2]; in CUDA_TEST_P() local 82 cv::cuda::split(flow, flows); in CUDA_TEST_P() 84 cv::cuda::GpuMat u = flows[0]; in CUDA_TEST_P() 85 cv::cuda::GpuMat v = flows[1]; in CUDA_TEST_P() 149 cv::cuda::GpuMat flows[2]; in CUDA_TEST_P() local 150 cv::cuda::split(flow, flows); in CUDA_TEST_P() 152 cv::cuda::GpuMat u = flows[0]; in CUDA_TEST_P() 153 cv::cuda::GpuMat v = flows[1]; in CUDA_TEST_P()
|
/external/iptables/extensions/ |
D | libxt_connbytes.man | 2 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
|
D | libip6t_DNPT.man | 30 target to disable connection tracking for translated flows.
|
D | libip6t_SNPT.man | 30 target to disable connection tracking for translated flows.
|
D | libxt_hashlimit.man | 71 "flows exceeding 512kbyte/s" =>
|
/external/fio/examples/ |
D | flow.fio | 1 # Example usage of flows. The below will have roughly a 1:8 difference
|
/external/opencv3/modules/cudaoptflow/src/ |
D | brox.cpp | 184 GpuMat flows[] = {u, v}; in calc() local 185 cuda::merge(flows, 2, _flow, stream); in calc()
|
D | pyrlk.cpp | 334 GpuMat flows[] = {u, v}; in calc() local 335 cuda::merge(flows, 2, _flow, stream); in calc()
|
D | tvl1flow.cpp | 172 GpuMat flows[] = {flowx, flowy}; in calc() local 173 cuda::merge(flows, 2, _flow, stream); in calc()
|
D | farneback.cpp | 175 GpuMat flows[] = {flowx, flowy}; in calc() local 176 cuda::merge(flows, 2, _flow, stream); in calc()
|
/external/kernel-headers/original/uapi/linux/ |
D | pkt_sched.h | 195 unsigned flows; /* Maximal number of flows */ member 798 __u32 flows; member
|
/external/iproute2/include/linux/ |
D | pkt_sched.h | 199 unsigned flows; /* Maximal number of flows */ member 802 __u32 flows; member
|
/external/libnl/lib/route/sch/ |
D | sfq.c | 76 sfq->qs_flows = opts->flows; in sfq_msg_parser()
|
/external/libnl/include/linux/ |
D | pkt_sched.h | 148 unsigned flows; /* Maximal number of flows */ member
|
/external/iproute2/doc/actions/ |
D | actions-general | 119 -The second meter is shared across all flows on that device [i am suprised 156 # used across all flows incoming on eth0("index 30")
|
D | mirred-usage | 127 A more interesting example is when you mirror flows to a dummy device
|
/external/llvm/test/CodeGen/ARM/ |
D | 2013-05-05-IfConvertBug.ll | 99 ; E.g., Let A be a basic block that flows conditionally into B and B be a
|
/external/clang/docs/ |
D | DataFlowSanitizerDesign.rst | 23 flows from a program's inputs (sources) to its outputs (sinks).
|