Home
last modified time | relevance | path

Searched refs:flow (Results 1 – 25 of 380) sorted by relevance

12345678910>>...16

/external/fio/
Dflow.c18 struct fio_flow *flow = td->flow; in flow_threshold_exceeded() local
21 if (!flow) in flow_threshold_exceeded()
24 sign = td->o.flow > 0 ? 1 : -1; in flow_threshold_exceeded()
25 if (sign * flow->flow_counter > td->o.flow_watermark) { in flow_threshold_exceeded()
36 flow->flow_counter += td->o.flow; in flow_threshold_exceeded()
42 struct fio_flow *flow = NULL; in flow_get() local
51 flow = flist_entry(n, struct fio_flow, list); in flow_get()
52 if (flow->id == id) in flow_get()
55 flow = NULL; in flow_get()
58 if (!flow) { in flow_get()
[all …]
/external/icu/icu4c/source/samples/layout/
Dpflow.c113 pf_object *flow; in pf_create() local
126 flow = NEW_ARRAY(pf_object, 1); in pf_create()
128 flow->fParagraphLayout = NULL; in pf_create()
129 flow->fParagraphCount = 0; in pf_create()
130 flow->fParagraphMax = PARA_GROW; in pf_create()
131 flow->fParagraphGrow = PARA_GROW; in pf_create()
132 flow->fLineCount = 0; in pf_create()
133 flow->fLinesMax = LINE_GROW; in pf_create()
134 flow->fLinesGrow = LINE_GROW; in pf_create()
135 flow->fLines = NULL; in pf_create()
[all …]
Dpflow.h26 void pf_close(pf_flow *flow);
28 le_int32 pf_getAscent(pf_flow *flow);
29 le_int32 pf_getLineHeight(pf_flow *flow);
30 le_int32 pf_getLineCount(pf_flow *flow);
31 void pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height);
32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
DCompactConstructorTest.java23 CompactConstructor flow = new CompactConstructor(); in testNoCompactData() local
24 assertNull(flow.getCompactData("scalar")); in testNoCompactData()
25 assertNull(flow.getCompactData("123")); in testNoCompactData()
26 assertNull(flow.getCompactData("(name=frame,title=My Frame)")); in testNoCompactData()
27 assertNull(flow.getCompactData("JFrame name=frame,title=My Frame)")); in testNoCompactData()
28 assertNull(flow.getCompactData("JFrame name=frame,title=My Frame")); in testNoCompactData()
29 assertNull(flow.getCompactData("JFrame(name=frame,title=My Frame")); in testNoCompactData()
30 assertNull(flow.getCompactData("JFrame(name=frame,title=My Frame)b")); in testNoCompactData()
31 assertNull(flow.getCompactData("JFrame(name=frame,title=My Frame) ")); in testNoCompactData()
32 assertNull(flow.getCompactData("JFrame(name=)")); in testNoCompactData()
[all …]
/external/iproute2/examples/bpf/
Dbpf_prog.c259 __u8 *ip_proto, struct flow_keys *flow) in flow_parse_ipv4() argument
269 flow->src = load_word(skb, nh_off + offsetof(struct iphdr, saddr)); in flow_parse_ipv4()
270 flow->dst = load_word(skb, nh_off + offsetof(struct iphdr, daddr)); in flow_parse_ipv4()
293 __u8 *ip_proto, struct flow_keys *flow) in flow_parse_ipv6() argument
297 flow->src = flow_addr_hash_ipv6(skb, nh_off + offsetof(struct ipv6hdr, saddr)); in flow_parse_ipv6()
298 flow->dst = flow_addr_hash_ipv6(skb, nh_off + offsetof(struct ipv6hdr, daddr)); in flow_parse_ipv6()
304 struct flow_keys *flow) in flow_dissector() argument
323 nh_off = flow_parse_ipv4(skb, nh_off, &ip_proto, flow); in flow_dissector()
325 nh_off = flow_parse_ipv6(skb, nh_off, &ip_proto, flow); in flow_dissector()
359 nh_off = flow_parse_ipv4(skb, nh_off, &ip_proto, flow); in flow_dissector()
[all …]
/external/boringssl/src/ssl/test/runner/
Drecordingconn.go37 type flow struct { struct
49 flows []flow
61 r.flows = append(r.flows, flow{flowType, message, buf})
91 for i, flow := range r.flows {
92 switch flow.flowType {
98 fmt.Fprintf(w, ">>> Flow %d %q\n", i+1, flow.message)
101 if flow.data != nil {
103 dumper.Write(flow.data)
111 for _, flow := range r.flows {
112 if flow.flowType != writeFlow {
[all …]
/external/iproute2/doc/
Dapi-ip6-flowlabels.tex22 Every IPv6 packet carries 28 bits of flow information. RFC2460 splits
24 prefer this term) and 20 bits of flow label. Currently there exist
25 no well-defined API to manage IPv6 flow information. In this document
42 \item To assign flow labels to packets sent by user.
44 \item To get flow labels of received packets. I do not know
46 want to use flow labels to distinguish sub-flows.
48 \item To allocate flow labels in the way, compliant to RFC2460. Namely:
56 Flows with coinciding source address and flow label must have identical
65 with flow labels.
75 flow label for another flow within the maximal lifetime has expired,
[all …]
/external/tcpdump/
Dprint-ip6.c224 u_int flow; in ip6_print() local
249 flow = EXTRACT_32BITS(&ip6->ip6_flow); in ip6_print()
253 if (flow & 0x0f000000) in ip6_print()
254 ND_PRINT((ndo, "pri 0x%02x, ", (flow & 0x0f000000) >> 24)); in ip6_print()
255 if (flow & 0x00ffffff) in ip6_print()
256 ND_PRINT((ndo, "flowlabel 0x%06x, ", flow & 0x00ffffff)); in ip6_print()
259 if (flow & 0x0ff00000) in ip6_print()
260 ND_PRINT((ndo, "class 0x%02x, ", (flow & 0x0ff00000) >> 20)); in ip6_print()
261 if (flow & 0x000fffff) in ip6_print()
262 ND_PRINT((ndo, "flowlabel 0x%05x, ", flow & 0x000fffff)); in ip6_print()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_tgsi_setup.c329 return &ctx->flow[ctx->flow_depth - 1]; in get_current_flow()
337 if (ctx->flow[i - 1].loop_entry_block) in get_innermost_loop()
338 return &ctx->flow[i - 1]; in get_innermost_loop()
346 struct si_llvm_flow *flow; in push_flow() local
350 ctx->flow = REALLOC(ctx->flow, in push_flow()
351 ctx->flow_depth_max * sizeof(*ctx->flow), in push_flow()
352 new_max * sizeof(*ctx->flow)); in push_flow()
356 flow = &ctx->flow[ctx->flow_depth]; in push_flow()
359 flow->next_block = NULL; in push_flow()
360 flow->loop_entry_block = NULL; in push_flow()
[all …]
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-09-12.data1 # Outside flow collection:
5 # Inside flow collection:
/external/llvm/test/YAMLParser/
Dspec-09-12.test3 # Outside flow collection:
7 # Inside flow collection:
/external/fio/examples/
Dflow.fio20 flow=-8
25 flow=1
Dpoisson-rate-submission.fio11 # Real world random request flow follows Poisson process. To give better
12 # insight on latency distribution, we simulate request flow under Poisson
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DProbeCounter.java14 import org.jacoco.core.internal.flow.ClassProbesVisitor;
15 import org.jacoco.core.internal.flow.MethodProbesVisitor;
DClassInstrumenter.java14 import org.jacoco.core.internal.flow.ClassProbesVisitor;
15 import org.jacoco.core.internal.flow.MethodProbesVisitor;
DMethodInstrumenter.java14 import org.jacoco.core.internal.flow.IFrame;
15 import org.jacoco.core.internal.flow.LabelInfo;
16 import org.jacoco.core.internal.flow.MethodProbesVisitor;
/external/mesa3d/src/compiler/nir/
DREADME107 Like in GLSL IR, control flow consists of a tree of "control flow nodes", which
114 make up the control flow graph, in this case a redundant piece of information on
115 top of the control flow tree that will be used by almost all the optimizations.
116 There are helper functions to add and remove control flow nodes that also update
117 the control flow graph, and so usually it doesn't need to be touched by passes
118 that modify control flow nodes.
/external/llvm/test/Analysis/DependenceAnalysis/
DBanerjee.ll19 ; CHECK: da analyze - flow [<= <>]!
27 ; DELIN: da analyze - flow [<= <>]!
79 ; CHECK: da analyze - flow [* <>]!
87 ; DELIN: da analyze - flow [* <>]!
213 ; CHECK: da analyze - flow [> >]!
221 ; DELIN: da analyze - flow [> >]!
331 ; CHECK: da analyze - flow [< <]!
339 ; DELIN: da analyze - flow [< <]!
390 ; CHECK: da analyze - flow [=> <>]!
398 ; DELIN: da analyze - flow [=> <>]!
[all …]
DExactSIV.ll17 ; CHECK: da analyze - flow [<=|<]!
128 ; CHECK: da analyze - flow [>]!
164 ; CHECK: da analyze - flow [>]!
200 ; CHECK: da analyze - flow [=>|<]!
236 ; CHECK: da analyze - flow [=>|<]!
272 ; CHECK: da analyze - flow [*|<]!
344 ; CHECK: da analyze - flow [>]!
380 ; CHECK: da analyze - flow [>]!
416 ; CHECK: da analyze - flow [=>|<]!
452 ; CHECK: da analyze - flow [=>|<]!
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dutil.rb23 def tidy( here_doc, flow = false ) argument
25 if flow
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DClassAnalyzer.java15 import org.jacoco.core.internal.flow.ClassProbesVisitor;
16 import org.jacoco.core.internal.flow.MethodProbesVisitor;
DMethodAnalyzer.java31 import org.jacoco.core.internal.flow.IFrame;
32 import org.jacoco.core.internal.flow.Instruction;
33 import org.jacoco.core.internal.flow.LabelInfo;
34 import org.jacoco.core.internal.flow.MethodProbesVisitor;
/external/arm-neon-tests/
DInitCache.s5 ; and program flow prediction
39 ; Cortex-A8 program flow prediction
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir.cpp1079 FlowInstruction *flow = (i ? static_cast<FlowInstruction *>(i) : in clone() local
1082 Instruction::clone(pol, flow); in clone()
1083 flow->allWarp = allWarp; in clone()
1084 flow->absolute = absolute; in clone()
1085 flow->limit = limit; in clone()
1086 flow->builtin = builtin; in clone()
1089 flow->target.builtin = target.builtin; in clone()
1092 flow->target.fn = target.fn; in clone()
1095 flow->target.bb = pol.get<BasicBlock>(target.bb); in clone()
1097 return flow; in clone()
/external/python/cpython2/Doc/library/
Dcurses.ascii.rst30 | :const:`ENQ` | Enquiry, goes with :const:`ACK` flow control |
58 | :const:`DC1` | XON, for flow control |
60 | :const:`DC2` | Device control 2, block-mode flow control |
62 | :const:`DC3` | XOFF, for flow control |

12345678910>>...16