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

1 2 3 4 5 6 7 8 910

  /external/fio/
flow.c 18 struct fio_flow *flow = td->flow; local
21 if (!flow)
24 sign = td->o.flow > 0 ? 1 : -1;
25 if (sign * flow->flow_counter > td->o.flow_watermark) {
35 * matter if the flow count is slightly inaccurate */
36 flow->flow_counter += td->o.flow;
42 struct fio_flow *flow = NULL; local
51 flow = flist_entry(n, struct fio_flow, list)
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/java/
GroveWFSSample.java 39 // Instantiate a Grove Water Flow Sensor on digital pin D2
40 upm_grovewfs.GroveWFS flow = new upm_grovewfs.GroveWFS(2); local
42 flow.clearFlowCounter();
43 flow.startFlowCounter();
46 System.out.print("Millis: " + flow.getMillis() + " FlowCount: " + flow.flowCounter());
47 System.out.println(" Flow Rate: " + flow.flowRate() + " LPM");
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
grovewfs.cxx 46 // Instantiate a Grove Water Flow Sensor on digital pin D2
47 upm::GroveWFS* flow = new upm::GroveWFS(2); local
49 // set the flow counter to 0 and start counting
50 flow->clearFlowCounter();
51 flow->startFlowCounter();
57 uint32_t millis = flow->getMillis();
58 uint32_t flowCount = flow->flowCounter();
60 float fr = flow->flowRate();
62 // output milliseconds passed, flow count, and computed flow rat
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
IProbeIdGenerator.java 12 package org.jacoco.core.internal.flow;
IFrame.java 12 package org.jacoco.core.internal.flow;
ClassProbesVisitor.java 12 package org.jacoco.core.internal.flow;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructorTest.java 23 CompactConstructor flow = new CompactConstructor(); local
24 assertNull(flow.getCompactData("scalar"));
25 assertNull(flow.getCompactData("123"));
26 assertNull(flow.getCompactData("(name=frame,title=My Frame)"));
27 assertNull(flow.getCompactData("JFrame name=frame,title=My Frame)"));
28 assertNull(flow.getCompactData("JFrame name=frame,title=My Frame"));
29 assertNull(flow.getCompactData("JFrame(name=frame,title=My Frame"));
30 assertNull(flow.getCompactData("JFrame(name=frame,title=My Frame)b"));
31 assertNull(flow.getCompactData("JFrame(name=frame,title=My Frame) "));
32 assertNull(flow.getCompactData("JFrame(name=)"))
37 CompactConstructor flow = new CompactConstructor(); local
46 CompactConstructor flow = new CompactConstructor(); local
58 CompactConstructor flow = new CompactConstructor(); local
70 CompactConstructor flow = new CompactConstructor(); local
80 CompactConstructor flow = new CompactConstructor(); local
91 CompactConstructor flow = new CompactConstructor(); local
100 CompactConstructor flow = new CompactConstructor(); local
    [all...]
  /external/icu/icu4c/source/samples/layout/
pflow.h 23 void pf_close(pf_flow *flow);
25 le_int32 pf_getAscent(pf_flow *flow);
26 le_int32 pf_getLineHeight(pf_flow *flow);
27 le_int32 pf_getLineCount(pf_flow *flow);
28 void pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height);
29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
pflow.c 110 pf_object *flow; local
123 flow = NEW_ARRAY(pf_object, 1);
125 flow->fParagraphLayout = NULL;
126 flow->fParagraphCount = 0;
127 flow->fParagraphMax = PARA_GROW;
128 flow->fParagraphGrow = PARA_GROW;
129 flow->fLineCount = 0;
130 flow->fLinesMax = LINE_GROW;
131 flow->fLinesGrow = LINE_GROW;
132 flow->fLines = NULL
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/samples/
oauth2_for_devices.py 14 flow = OAuth2WebServerFlow(CLIENT_ID, CLIENT_SECRET, " ".join(SCOPES)) variable
18 flow_info = flow.step1_get_device_and_user_codes()
26 credentials = flow.step2_exchange(device_flow_info=flow_info)
  /external/opencv3/modules/video/test/
test_tvl1optflow.cpp 57 // binary file format for flow data specified here:
58 // http://vision.middlebury.edu/flow/data/
59 void writeOpticalFlowToFile(const Mat_<Point2f>& flow, const string& fileName)
66 file.write((const char*) &flow.cols, sizeof(int));
67 file.write((const char*) &flow.rows, sizeof(int));
69 for (int i = 0; i < flow.rows; ++i)
71 for (int j = 0; j < flow.cols; ++j)
73 const Point2f u = flow(i, j);
82 // binary file format for flow data specified here:
83 // http://vision.middlebury.edu/flow/data
155 Mat_<Point2f> flow; local
    [all...]
  /external/opencv3/samples/python2/
opt_flow.py 11 1 - toggle HSV flow visualization
16 def draw_flow(img, flow, step=16):
19 fx, fy = flow[y,x].T
28 def draw_hsv(flow):
29 h, w = flow.shape[:2]
30 fx, fy = flow[:,:,0], flow[:,:,1]
40 def warp_flow(img, flow):
41 h, w = flow.shape[:2]
42 flow = -flo
66 flow = cv2.calcOpticalFlowFarneback(prevgray, gray, None, 0.5, 3, 15, 3, 5, 1.2, 0) variable
    [all...]
  /external/iproute2/examples/bpf/
bpf_prog.c 213 /* Helper functions and definitions for the flow dissector used by the
214 * example classifier. This resembles the kernel's flow dissector to
259 __u8 *ip_proto, struct flow_keys *flow)
269 flow->src = load_word(skb, nh_off + offsetof(struct iphdr, saddr));
270 flow->dst = load_word(skb, nh_off + offsetof(struct iphdr, daddr));
293 __u8 *ip_proto, struct flow_keys *flow)
297 flow->src = flow_addr_hash_ipv6(skb, nh_off + offsetof(struct ipv6hdr, saddr));
298 flow->dst = flow_addr_hash_ipv6(skb, nh_off + offsetof(struct ipv6hdr, daddr));
304 struct flow_keys *flow)
323 nh_off = flow_parse_ipv4(skb, nh_off, &ip_proto, flow);
445 struct flow_keys flow; local
    [all...]
  /external/opencv3/samples/cpp/
fback.cpp 14 "\nThis program demonstrates dense optical flow algorithm by Gunnar Farneback\n"
20 static void drawOptFlowMap(const Mat& flow, Mat& cflowmap, int step,
26 const Point2f& fxy = flow.at<Point2f>(y, x);
40 Mat flow, cflow, frame;
42 namedWindow("flow", 1);
53 uflow.copyTo(flow);
54 drawOptFlowMap(flow, cflow, 16, 1.5, Scalar(0, 255, 0));
55 imshow("flow", cflow);
tvl1_optical_flow.cpp 87 static void drawOpticalFlow(const Mat_<Point2f>& flow, Mat& dst, float maxmotion = -1)
89 dst.create(flow.size(), CV_8UC3);
98 for (int y = 0; y < flow.rows; ++y)
100 for (int x = 0; x < flow.cols; ++x)
102 Point2f u = flow(y, x);
112 for (int y = 0; y < flow.rows; ++y)
114 for (int x = 0; x < flow.cols; ++x)
116 Point2f u = flow(y, x);
124 // binary file format for flow data specified here:
125 // http://vision.middlebury.edu/flow/data
177 Mat_<Point2f> flow; local
    [all...]
  /external/opencv3/modules/video/perf/
perf_tvl1optflow.cpp 23 Mat flow; local
27 TEST_CYCLE_N(10) tvl1->calc(frame1, frame2, flow);
29 SANITY_CHECK(flow, 0.8);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
ProbeCounter.java 14 import org.jacoco.core.internal.flow.ClassProbesVisitor;
15 import org.jacoco.core.internal.flow.MethodProbesVisitor;
  /external/opencv3/modules/java/src/
video+DenseOpticalFlow.java 18 // C++: void calc(Mat I0, Mat I1, Mat& flow)
21 //javadoc: DenseOpticalFlow::calc(I0, I1, flow)
22 public void calc(Mat I0, Mat I1, Mat flow)
25 calc_0(nativeObj, I0.nativeObj, I1.nativeObj, flow.nativeObj);
52 // C++: void calc(Mat I0, Mat I1, Mat& flow)
  /device/google/dragon/audio/hal/
cras_dsp_ini.c 71 const struct flow *flow; local
73 FOR_ARRAY_ELEMENT(&ini->flows, i, flow) {
74 if (strcmp(flow->name, name) == 0)
83 struct flow *flow; local
88 flow = ARRAY_APPEND_ZERO(&ini->flows);
89 flow->name = name;
171 struct flow *flow; local
    [all...]
cras_dsp_ini.h 34 /* This is only used if there is a flow connects to this port,
54 struct flow { struct
55 enum port_type type; /* the type of the ports this flow connects to */
64 DECLARE_ARRAY_TYPE(struct flow, flow_array)
  /external/opencv3/modules/video/test/ocl/
test_optflow_tvl1flow.cpp 82 cv::Mat flow; cv::UMat uflow; local
91 //create initial flow as result of algorithm calculation
95 uflow.copyTo(flow);
98 //set flag to use initial flow as it is ready to use
101 OCL_OFF(alg->calc(frame0, frame1, flow));
104 EXPECT_MAT_SIMILAR(flow, uflow, 1e-2);
test_optflow_farneback.cpp 94 cv::Mat flow; cv::UMat uflow; local
98 uflow.copyTo(flow);
101 OCL_OFF(cv::calcOpticalFlowFarneback(frame0, frame1, flow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags));
104 EXPECT_MAT_SIMILAR(flow, uflow, 0.1);
  /external/opencv3/modules/cudaoptflow/perf/
perf_optflow.cpp 74 cv::cuda::GpuMat flow; local
80 TEST_CYCLE() d_alg->calc(d_frame0, d_frame1, flow);
83 cv::cuda::split(flow, flows);
198 cv::cuda::GpuMat flow; local
205 TEST_CYCLE() d_pyrLK->calc(d_frame0, d_frame1, flow);
208 cv::cuda::split(flow, flows);
248 cv::cuda::GpuMat flow; local
254 TEST_CYCLE() d_farneback->calc(d_frame0, d_frame1, flow);
257 cv::cuda::split(flow, flows);
267 cv::Mat flow; local
293 cv::cuda::GpuMat flow; local
311 cv::Mat flow; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML.java 46 public enum Flow {
57 private final Flow flow; field in class:HTML.Element
62 * NOTE: Even though breaksFlow and flow are named similarly, they're not quite the same thing.
63 * Flow refers to whether the element is inherently character or block level. Breaks flow
66 * @throws IllegalArgumentException if name or flow is null.
69 boolean optionalEndTag, boolean breaksFlow, Flow flow) {
71 Preconditions.checkNotNull(flow, "Element flow can not be null")
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
old_run.py 50 def run(flow, storage, http=None):
54 through all the steps to obtain credentials. It takes a ``Flow``
81 flow: Flow, an OAuth 2.0 Flow to step through.
119 flow.redirect_uri = oauth_callback
120 authorize_url = flow.step1_get_authorize_url()
153 credential = flow.step2_exchange(code, http=http)

Completed in 518 milliseconds

1 2 3 4 5 6 7 8 910