Home
last modified time | relevance | path

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

12345678910>>...29

/third_party/mesa3d/src/panfrost/bifrost/valhall/test/
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(END); in TEST_F()
126 I->flow = VA_FLOW_WAIT0; in TEST_F()
[all …]
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(WAIT); in TEST_F()
103 flow(END); in TEST_F()
[all …]
/third_party/skia/third_party/externals/icu/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);
/third_party/icu/icu4c/source/samples/layout/
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->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);
/third_party/mesa3d/src/panfrost/bifrost/valhall/
Dva_merge_flow.c84 if (last->flow != VA_FLOW_RECONVERGE && last->flow != VA_FLOW_END) return; in merge_end_reconverge()
89 if (last->flow == VA_FLOW_END) { in merge_end_reconverge()
90 while (penult->op == BI_OPCODE_NOP && penult->flow != VA_FLOW_WAIT) { in merge_end_reconverge()
102 if (penult->flow != VA_FLOW_NONE) return; in merge_end_reconverge()
105 penult->flow = last->flow; in merge_end_reconverge()
137 I->op == BI_OPCODE_NOP && va_flow_is_wait_or_none(I->flow)) { in merge_waits()
140 last_free->flow = union_waits(last_free->flow, I->flow); in merge_waits()
156 if (va_flow_is_wait_or_none(I->flow)) in merge_waits()
173 if ((I->op == BI_OPCODE_NOP) && (I->flow == VA_FLOW_DISCARD)) { in merge_discard()
181 if (prev->flow == VA_FLOW_NONE) { in merge_discard()
[all …]
Dva_insert_flow.c63 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 |= bi_pop_slot(st, slot); in bi_set_dependencies()
224 I->flow |= bi_pop_slot(st, i); in bi_set_dependencies()
274 uint8_t flow = 0; in scoreboard_block_update() local
277 flow |= bi_pop_slot(&state, slot); in scoreboard_block_update()
279 bi_flow(ctx, bi_after_block(blk), flow); in scoreboard_block_update()
456 if (I->flow && I->op != BI_OPCODE_NOP) { in va_insert_flow_control_nops()
[all …]
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()
/third_party/gstreamer/gstreamer/tests/check/elements/
Ddataurisrc.c236 GstFlowReturn flow; in GST_START_TEST() local
288 flow = gst_pad_get_range (src_pad, 0, 100, &buf1); in GST_START_TEST()
289 fail_unless_equals_int (flow, GST_FLOW_OK); in GST_START_TEST()
295 flow = gst_pad_get_range (src_pad, 0, 50, &buf2); in GST_START_TEST()
296 fail_unless_equals_int (flow, GST_FLOW_OK); in GST_START_TEST()
305 flow = gst_pad_get_range (src_pad, 50, 50, &buf2); in GST_START_TEST()
306 fail_unless_equals_int (flow, GST_FLOW_OK); in GST_START_TEST()
313 flow = gst_pad_get_range (src_pad, 1, 100, &buf1); in GST_START_TEST()
314 fail_unless_equals_int (flow, GST_FLOW_OK); in GST_START_TEST()
321 flow = gst_pad_get_range (src_pad, 0, 999999, &buf1); in GST_START_TEST()
[all …]
/third_party/jerryscript/tests/jerry/
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');
Dobject-literal.js75 flow = '';
79 flow += 'get: ' + (typeof q);
85 flow += ', set: ' + (typeof q);
92 assert (flow == 'get: undefined, set: undefined');
/third_party/gstreamer/gstreamer/plugins/elements/
Dgstfilesink.c710 GstFlowReturn flow; in gst_file_sink_render_list_internal() local
725 flow = in gst_file_sink_render_list_internal()
733 if (flow != GST_FLOW_FLUSHING) in gst_file_sink_render_list_internal()
736 flow = gst_base_sink_wait_preroll (GST_BASE_SINK (sink)); in gst_file_sink_render_list_internal()
738 if (flow != GST_FLOW_OK) in gst_file_sink_render_list_internal()
739 return flow; in gst_file_sink_render_list_internal()
742 return flow; in gst_file_sink_render_list_internal()
826 GstFlowReturn flow; in render_buffer() local
831 flow = in render_buffer()
840 if (flow != GST_FLOW_FLUSHING) in render_buffer()
[all …]
/third_party/openGLES/extensions/AMD/
DAMD_shader_ballot.txt133 …| genDType minInvocationsAMD(genDType v) | control flow. These functions operate com…
138 …| genDType minInvocationsNonUniformAMD(genDType v) | control flow. These functions operate com…
143 …| genDType minInvocationsInclusiveScanAMD(genDType v) | control flow. These functions operate com…
152 …| genIType v) | control flow. These functions operate com…
161 …| genDType minInvocationsExclusiveScanAMD(genDType v) | control flow. These functions operate com…
170 …| genIType v) | control flow. These functions operate com…
179 …| genDType maxInvocationsAMD(genDType v) | control flow. These functions operate com…
184 …| genDType maxInvocationsNonUniformAMD(genDType v) | control flow. These functions operate com…
189 …| genDType maxInvocationsInclusiveScanAMD(genDType v) | control flow. These functions operate com…
198 …| genIType v) | control flow. These functions operate com…
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
DAMD_shader_ballot.txt133 …| genDType minInvocationsAMD(genDType v) | control flow. These functions operate com…
138 …| genDType minInvocationsNonUniformAMD(genDType v) | control flow. These functions operate com…
143 …| genDType minInvocationsInclusiveScanAMD(genDType v) | control flow. These functions operate com…
152 …| genIType v) | control flow. These functions operate com…
161 …| genDType minInvocationsExclusiveScanAMD(genDType v) | control flow. These functions operate com…
170 …| genIType v) | control flow. These functions operate com…
179 …| genDType maxInvocationsAMD(genDType v) | control flow. These functions operate com…
184 …| genDType maxInvocationsNonUniformAMD(genDType v) | control flow. These functions operate com…
189 …| genDType maxInvocationsInclusiveScanAMD(genDType v) | control flow. These functions operate com…
198 …| genIType v) | control flow. These functions operate com…
[all …]
/third_party/node/test/parallel/
Dtest-stream2-set-encoding.js74 tr.on('readable', function flow() { function
113 tr.on('readable', function flow() {
147 tr.on('readable', function flow() {
179 tr.on('readable', function flow() {
206 tr.on('readable', function flow() {
244 tr.on('readable', function flow() {
277 tr.on('readable', function flow() {
308 tr.on('readable', function flow() {
Dtest-stream2-readable-empty-buffer-no-eof.js75 function flow() { function
80 r.on('readable', flow);
84 flow();
102 function flow() { function
107 r.on('readable', flow);
111 flow();
/third_party/node/benchmark/net/
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();
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();
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();
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/PyYAML/examples/yaml-highlight/
Dyaml_hl.cfg19 flow-sequence-start: { start: "\e[33m", end: "\e[0;1;30;40m" }
20 flow-mapping-start: { start: "\e[33m", end: "\e[0;1;30;40m" }
21 flow-sequence-end: { start: "\e[33m", end: "\e[0;1;30;40m" }
22 flow-mapping-end: { start: "\e[33m", end: "\e[0;1;30;40m" }
26 flow-entry: { start: "\e[33m", end: "\e[0;1;30;40m" }
51 flow-sequence-start: { start: <code class="delimiter_token">, end: </code> }
52 flow-mapping-start: { start: <code class="delimiter_token">, end: </code> }
53 flow-sequence-end: { start: <code class="delimiter_token">, end: </code> }
54 flow-mapping-end: { start: <code class="delimiter_token">, end: </code> }
58 flow-entry: { start: <code class="delimiter_token">, end: </code> }
/third_party/gstreamer/gstplugins_bad/ext/bz2/
Dgstbz2enc.c112 GstFlowReturn flow = GST_FLOW_OK; in gst_bz2enc_event() local
144 flow = gst_pad_push (b->src, out); in gst_bz2enc_event()
146 if (flow != GST_FLOW_OK) { in gst_bz2enc_event()
148 gst_flow_get_name (flow)); in gst_bz2enc_event()
155 if (r != BZ_STREAM_END || flow != GST_FLOW_OK) in gst_bz2enc_event()
172 GstFlowReturn flow = GST_FLOW_OK; in gst_bz2enc_chain() local
208 flow = gst_pad_push (b->src, out); in gst_bz2enc_chain()
210 if (flow != GST_FLOW_OK) in gst_bz2enc_chain()
220 return flow; in gst_bz2enc_chain()
226 flow = GST_FLOW_FLUSHING; in gst_bz2enc_chain()
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_constant_time_hmac.data1 Constant-flow HMAC: MD5
5 Constant-flow HMAC: SHA1
9 Constant-flow HMAC: SHA256
13 Constant-flow HMAC: SHA384
/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dgstmsdkdec.c184 GstFlowReturn flow; in allocate_output_buffer() local
201 flow = gst_video_decoder_allocate_output_frame (decoder, frame); in allocate_output_buffer()
202 if (flow != GST_FLOW_OK) { in allocate_output_buffer()
204 return flow; in allocate_output_buffer()
697 GstFlowReturn flow; in gst_msdkdec_finish_task() local
761 flow = gst_video_decoder_finish_frame (decoder, frame); in gst_msdkdec_finish_task()
762 if (flow == GST_FLOW_ERROR) in gst_msdkdec_finish_task()
764 return flow; in gst_msdkdec_finish_task()
1052 GstFlowReturn flow; in gst_msdkdec_handle_frame() local
1087 flow = GST_FLOW_OK; in gst_msdkdec_handle_frame()
[all …]

12345678910>>...29