Home
last modified time | relevance | path

Searched refs:flow (Results 1 - 25 of 65) sorted by relevance

123

/third_party/icu/icu4c/source/samples/layout/
H A Dpflow.c115 pf_object *flow; in pf_create() local
128 flow = NEW_ARRAY(pf_object, 1); in pf_create()
130 flow->fParagraphLayout = NULL; in pf_create()
131 flow->fParagraphCount = 0; in pf_create()
132 flow->fParagraphMax = PARA_GROW; in pf_create()
133 flow->fParagraphGrow = PARA_GROW; in pf_create()
134 flow->fLineCount = 0; in pf_create()
135 flow->fLinesMax = LINE_GROW; in pf_create()
136 flow->fLinesGrow = LINE_GROW; in pf_create()
137 flow in pf_create()
227 pf_close(pf_flow *flow) pf_close() argument
250 pf_getAscent(pf_flow *flow) pf_getAscent() argument
257 pf_getLineHeight(pf_flow *flow) pf_getLineHeight() argument
264 pf_getLineCount(pf_flow *flow) pf_getLineCount() argument
281 pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height) pf_breakLines() argument
320 pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) pf_draw() argument
[all...]
H A 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);
/third_party/skia/third_party/externals/icu/source/samples/layout/
H A 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 in pf_create()
225 pf_close(pf_flow *flow) pf_close() argument
248 pf_getAscent(pf_flow *flow) pf_getAscent() argument
255 pf_getLineHeight(pf_flow *flow) pf_getLineHeight() argument
262 pf_getLineCount(pf_flow *flow) pf_getLineCount() argument
279 pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height) pf_breakLines() argument
318 pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) pf_draw() argument
[all...]
H A 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);
/third_party/mesa3d/src/panfrost/bifrost/valhall/test/
H A Dtest-merge-flow.cpp50 #define flow(f) bi_nop(b)->flow = VA_FLOW_ ## f macro
72 flow(END); in TEST_F()
79 I->flow = VA_FLOW_END; in TEST_F()
89 flow(RECONVERGE); in TEST_F()
96 I->flow = VA_FLOW_RECONVERGE; in TEST_F()
103 flow(WAIT0126); in TEST_F()
108 I->flow = VA_FLOW_WAIT0126; in TEST_F()
118 flow(WAIT0); in TEST_F()
120 flow(EN in TEST_F()
[all...]
H A Dtest-insert-flow.cpp58 #define flow(f) bi_nop(b)->flow = VA_FLOW_ ## f macro
79 flow(DISCARD); in TEST_F()
81 flow(WAIT); in TEST_F()
85 flow(END); in TEST_F()
89 flow(DISCARD); in TEST_F()
91 flow(WAIT); in TEST_F()
94 flow(END); in TEST_F()
98 flow(DISCARD); in TEST_F()
100 flow(WAI in TEST_F()
[all...]
/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dva_merge_flow.c29 * Merge NOPs with flow control with nearby instructions to eliminate the NOPs,
44 * reconverge/end flow control, merge with the penultimate instruction. Now we
50 * wait, and merge the flow control, aborting if we hit a message signaling the
62 * instruction has incompatible flow control (wait and end). In practice, this
84 if (last->flow != VA_FLOW_RECONVERGE && last->flow != VA_FLOW_END) return; in merge_end_reconverge()
86 /* End implies all other flow control except for waiting on barriers (slot in merge_end_reconverge()
87 * #7, with VA_FLOW_WAIT), so remove blocking flow control. in merge_end_reconverge()
89 if (last->flow == VA_FLOW_END) { in merge_end_reconverge()
90 while (penult->op == BI_OPCODE_NOP && penult->flow ! in merge_end_reconverge()
[all...]
H A Dva_insert_flow.c29 * Insert flow control into a scheduled and register allocated shader. This
31 * inserts NOPs with the appropriate flow control modifiers. It should be
32 * followed by a cleanup pass to merge flow control modifiers on adjacent
60 * Insert a NOP instruction with given flow control.
63 bi_flow(bi_context *ctx, bi_cursor cursor, enum va_flow flow) in bi_flow() argument
67 bi_nop(&b)->flow = flow; in bi_flow()
187 I->flow |= bi_depend_on_writers(st, bi_read_mask(I) | bi_write_mask(I)); in bi_set_dependencies()
194 I->flow |= bi_pop_slot(st, slot); in bi_set_dependencies()
200 I->flow | in bi_set_dependencies()
274 uint8_t flow = 0; scoreboard_block_update() local
[all...]
H A Dva_mark_last.c88 waits_on_slot(enum va_flow flow, unsigned slot) in waits_on_slot() argument
90 return (flow == VA_FLOW_WAIT) || (flow == VA_FLOW_WAIT0126) || in waits_on_slot()
91 (va_flow_is_wait_or_none(flow) && (flow & BITFIELD_BIT(slot))); in waits_on_slot()
102 if (waits_on_slot(I->flow, i)) in scoreboard_update()
121 /* Perform forward data flow analysis to calculate dependencies */ in va_analyze_scoreboard_reads()
H A Dvalhall.h158 va_flow_is_wait_or_none(enum va_flow flow) in va_flow_is_wait_or_none() argument
160 return (flow <= VA_FLOW_WAIT); in va_flow_is_wait_or_none()
/third_party/jerryscript/tests/jerry/
H A Dswitch-case.js85 var flow = ''; variable
89 flow += '1';
91 flow += '2';
93 flow += '3';
94 switch (flow) {
96 flow += 'a';
99 flow += 'b';
102 flow += '4';
105 assert (flow === '123a4');
H A Dobject-literal.js75 flow = '';
79 flow += 'get: ' + (typeof q);
85 flow += ', set: ' + (typeof q);
92 assert (flow == 'get: undefined, set: undefined');
/third_party/node/test/parallel/
H A Dtest-stream2-readable-empty-buffer-no-eof.js75 function flow() {
80 r.on('readable', flow);
84 flow();
102 function flow() {
107 r.on('readable', flow);
111 flow();
H A Dtest-stream-readable-flow-recursion.js51 function flow(stream, size, callback) { function
56 stream.once('readable', flow.bind(null, stream, size, callback));
61 console.log(`flow(${depth}): exit`);
64 flow(stream, 5000, function() {
H A Dtest-stream2-readable-wrap.js43 flow();
60 function flow() {
87 flow();
/third_party/node/benchmark/net/
H A Dnet-wrap-js-stream-passthrough.js79 function flow() { function
83 dest.once('drain', this.flow);
85 process.nextTick(this.flow);
89 this.flow = flow.bind(this);
95 this.flow();
H A Dnet-pipe.js87 function flow() { function
91 dest.once('drain', this.flow);
93 process.nextTick(this.flow);
97 this.flow = flow.bind(this);
103 this.flow();
H A Dnet-c2s.js84 function flow() { function
88 dest.once('drain', this.flow);
90 process.nextTick(this.flow);
94 this.flow = flow.bind(this);
100 this.flow();
H A Dnet-s2c.js120 function flow() { function
124 dest.once('drain', this.flow);
126 process.nextTick(this.flow);
130 this.flow = flow.bind(this);
136 this.flow();
/third_party/mesa3d/src/compiler/nir/
H A Dnir_conversion_builder.h282 double flow, fhigh; in nir_get_clamp_limits() local
285 flow = -65504.0f; in nir_get_clamp_limits()
289 flow = -FLT_MAX; in nir_get_clamp_limits()
293 flow = -DBL_MAX; in nir_get_clamp_limits()
310 if (src_ilow < flow) in nir_get_clamp_limits()
311 *low = nir_imm_intN_t(b, flow, src_bit_size); in nir_get_clamp_limits()
324 *low = nir_imm_floatN_t(b, flow, src_bit_size); in nir_get_clamp_limits()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DYAMLTraits.h66 // The optional flow flag will cause generated YAML to use a flow mapping
68 // static const bool flow = true;
88 // The optional flow flag will cause generated YAML to use a flow mapping
90 // static const bool flow = true;
110 /// of bit values and the YAML representation is a flow sequence of
250 // a flow sequence (e.g. [a,b,c]).
251 // static const bool flow = true;
259 // static const bool flow;
495 struct Fallback { bool flow; }; global() member
1877 template <> struct IsFlowSequenceBase<true> { static const bool flow = true; }; global() member
1920 static const bool flow = true; global() member
1925 static const bool flow = false; global() member
1928 static const bool flow = false; global() member
1931 static const bool flow = false; global() member
[all...]
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource6.js21 constructor (public flow: TypeFlow, public pos: number, public matchFlag: ASTFlags) {
85 memScope.flow.inScopeTypeCheck(ast, memScope.scope);
240 function MemberScopeContext(flow, pos, matchFlag) {
241 this.flow = flow;
303 memScope.flow.inScopeTypeCheck(ast, memScope.scope);
H A DprivateNameInInExpression(target=es2022).js37 flow(u: unknown, n: never, fb: Foo | Bar, fs: FooSub, b: Bar, fsb: FooSub | Bar, fsfb: Foo | FooSub | Bar) {
146 flow(u, n, fb, fs, b, fsb, fsfb) {
H A DprivateNameInInExpression(target=esnext).js37 flow(u: unknown, n: never, fb: Foo | Bar, fs: FooSub, b: Bar, fsb: FooSub | Bar, fsfb: Foo | FooSub | Bar) {
146 flow(u, n, fb, fs, b, fsb, fsfb) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h176 static const bool flow = true; member
197 static const bool flow = true; member
270 static const bool flow = true; member
348 static const bool flow = true; member
390 static const bool flow = true; member
408 static const bool flow = true; member

Completed in 17 milliseconds

123