Home
last modified time | relevance | path

Searched refs:run_index (Results 1 – 11 of 11) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dffv1enc_template.c30 int run_index = s->run_index; in RENAME() local
84 while (run_count >= 1 << ff_log2_run[run_index]) { in RENAME()
85 run_count -= 1 << ff_log2_run[run_index]; in RENAME()
86 run_index++; in RENAME()
90 put_bits(&s->pb, 1 + ff_log2_run[run_index], run_count); in RENAME()
91 if (run_index) in RENAME()
92 run_index--; in RENAME()
103 run_count, run_index, run_mode, x, in RENAME()
111 while (run_count >= 1 << ff_log2_run[run_index]) { in RENAME()
112 run_count -= 1 << ff_log2_run[run_index]; in RENAME()
[all …]
Dffv1dec_template.c32 int run_index = s->run_index; in RENAME() local
76 run_count = 1 << ff_log2_run[run_index]; in RENAME()
78 run_index++; in RENAME()
80 if (ff_log2_run[run_index]) in RENAME()
81 run_count = get_bits(&s->gb, ff_log2_run[run_index]); in RENAME()
84 if (run_index) in RENAME()
85 run_index--; in RENAME()
116 run_count, run_index, run_mode, x, get_bits_count(&s->gb)); in RENAME()
124 s->run_index = run_index; in RENAME()
142 s->run_index = 0; in RENAME()
Djpeglsenc.c124 while (run >= (1 << ff_log2_run[state->run_index[comp]])) { in ls_encode_run()
126 run -= 1 << ff_log2_run[state->run_index[comp]]; in ls_encode_run()
127 if (state->run_index[comp] < 31) in ls_encode_run()
128 state->run_index[comp]++; in ls_encode_run()
135 if (ff_log2_run[state->run_index[comp]]) in ls_encode_run()
136 put_bits(pb, ff_log2_run[state->run_index[comp]], run); in ls_encode_run()
205 ff_log2_run[state->run_index[comp]]); in ls_encode_line()
207 if (state->run_index[comp] > 0) in ls_encode_line()
208 state->run_index[comp]--; in ls_encode_line()
Djpeglsdec.c257 r = 1 << ff_log2_run[state->run_index[comp]]; in ls_decode_line()
265 if (r != 1 << ff_log2_run[state->run_index[comp]]) in ls_decode_line()
267 if (state->run_index[comp] < 31) in ls_decode_line()
268 state->run_index[comp]++; in ls_decode_line()
273 r = ff_log2_run[state->run_index[comp]]; in ls_decode_line()
294 ff_log2_run[state->run_index[comp]]); in ls_decode_line()
295 if (state->run_index[comp]) in ls_decode_line()
296 state->run_index[comp]--; in ls_decode_line()
Djpegls.h42 int run_index[4]; member
Dffv1.h108 int run_index; member
Dsnowenc.c787 int run_index=0; in encode_subband_c0run() local
820 runs[run_index++]= run; in encode_subband_c0run()
828 max_index= run_index; in encode_subband_c0run()
829 runs[run_index++]= run; in encode_subband_c0run()
830 run_index=0; in encode_subband_c0run()
831 run= runs[run_index++]; in encode_subband_c0run()
834 if(run_index <= max_index) in encode_subband_c0run()
875 run= runs[run_index++]; in encode_subband_c0run()
877 if(run_index <= max_index) in encode_subband_c0run()
Dffv1dec.c127 s->run_index = 0; in decode_plane()
Dffv1enc.c279 s->run_index = 0; in encode_plane()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderLinking.cpp190 for (unsigned int run_index = 0; run_index < m_test_runs.size(); ++run_index) in iterate() local
192 const _run& current_run = m_test_runs[run_index]; in iterate()
461 for (unsigned int run_index = 0; run_index < m_test_runs.size(); ++run_index) in iterate() local
463 const _run& current_run = m_test_runs[run_index]; in iterate()
/third_party/flutter/engine/flutter/third_party/txt/src/txt/
Dparagraph_txt.cc269 size_t run_index = 0; in ComputeLineBreaks() local
300 while (run_index < runs_.size()) { in ComputeLineBreaks()
301 StyledRuns::Run run = runs_.GetRun(run_index); in ComputeLineBreaks()
305 run_index++; in ComputeLineBreaks()
355 run_index++; in ComputeLineBreaks()