Home
last modified time | relevance | path

Searched refs:progress (Results 1 – 25 of 1061) sorted by relevance

12345678910>>...43

/external/curl/lib/
Dprogress.c141 data->progress.lastshow = 0; in Curl_pgrsDone()
146 if(!(data->progress.flags & PGRS_HIDE) && in Curl_pgrsDone()
147 !data->progress.callback) in Curl_pgrsDone()
152 data->progress.speeder_c = 0; /* reset the progress meter display */ in Curl_pgrsDone()
178 data->progress.t_startop = now; in Curl_pgrsTime()
182 data->progress.t_startsingle = now; in Curl_pgrsTime()
183 data->progress.is_t_startransfer_set = false; in Curl_pgrsTime()
186 data->progress.t_acceptdata = now; in Curl_pgrsTime()
189 delta = &data->progress.t_nslookup; in Curl_pgrsTime()
192 delta = &data->progress.t_connect; in Curl_pgrsTime()
[all …]
Dgetinfo.c47 struct Progress *pro = &data->progress; in Curl_initinfo()
264 *param_offt = data->progress.uploaded; in getinfo_offt()
267 *param_offt = data->progress.downloaded; in getinfo_offt()
270 *param_offt = data->progress.dlspeed; in getinfo_offt()
273 *param_offt = data->progress.ulspeed; in getinfo_offt()
276 *param_offt = (data->progress.flags & PGRS_DL_SIZE_KNOWN)? in getinfo_offt()
277 data->progress.size_dl:-1; in getinfo_offt()
280 *param_offt = (data->progress.flags & PGRS_UL_SIZE_KNOWN)? in getinfo_offt()
281 data->progress.size_ul:-1; in getinfo_offt()
284 *param_offt = data->progress.timespent; in getinfo_offt()
[all …]
/external/python/cpython2/Lib/plat-mac/
Dbuildtools.py70 rsrcname=None, others=[], raw=0, progress="default", destroot=""): argument
72 if progress == "default":
77 progress = EasyDialogs.ProgressBar("Processing %s..."%os.path.split(filename)[1], 120)
78 progress.label("Compiling...")
79 progress.inc(0)
121 process_common(template, progress, code, rsrcname, destname, 0,
128 if progress:
131 progress = None
133 progress = EasyDialogs.ProgressBar("Updating %s..."%os.path.split(filename)[1], 120)
135 progress = None
[all …]
/external/mesa3d/src/compiler/nir/
Dnir_opt_constant_folding.c38 bool progress; member
120 bool progress = false; in constant_fold_deref() local
141 progress = true; in constant_fold_deref()
145 return progress; in constant_fold_deref()
151 bool progress = false; in constant_fold_intrinsic_instr() local
155 progress |= constant_fold_deref(&instr->instr, instr->variables[i]); in constant_fold_intrinsic_instr()
162 progress = true; in constant_fold_intrinsic_instr()
166 return progress; in constant_fold_intrinsic_instr()
172 bool progress = false; in constant_fold_tex_instr() local
175 progress |= constant_fold_deref(&instr->instr, instr->texture); in constant_fold_tex_instr()
[all …]
Dnir_remove_dead_variables.c153 bool progress = false; in remove_dead_vars() local
161 progress = true; in remove_dead_vars()
165 return progress; in remove_dead_vars()
171 bool progress = false; in nir_remove_dead_variables() local
178 progress = remove_dead_vars(&shader->uniforms, live) || progress; in nir_remove_dead_variables()
181 progress = remove_dead_vars(&shader->inputs, live) || progress; in nir_remove_dead_variables()
184 progress = remove_dead_vars(&shader->outputs, live) || progress; in nir_remove_dead_variables()
187 progress = remove_dead_vars(&shader->globals, live) || progress; in nir_remove_dead_variables()
190 progress = remove_dead_vars(&shader->system_values, live) || progress; in nir_remove_dead_variables()
193 progress = remove_dead_vars(&shader->shared, live) || progress; in nir_remove_dead_variables()
[all …]
Dnir_opt_copy_propagate.c203 bool progress = false; in copy_prop_deref_var() local
214 progress = true; in copy_prop_deref_var()
216 return progress; in copy_prop_deref_var()
222 bool progress = false; in copy_prop_instr() local
229 progress = true; in copy_prop_instr()
232 progress = true; in copy_prop_instr()
234 return progress; in copy_prop_instr()
242 progress = true; in copy_prop_instr()
246 progress = true; in copy_prop_instr()
248 progress = true; in copy_prop_instr()
[all …]
Dnir_lower_returns.c84 bool progress = lower_returns_in_cf_list(&loop->body, state); in lower_returns_in_loop() local
92 if (progress) { in lower_returns_in_loop()
97 return progress; in lower_returns_in_loop()
103 bool progress, then_progress, else_progress; in lower_returns_in_if() local
110 progress = then_progress || else_progress; in lower_returns_in_if()
122 if (progress && !state->loop) { in lower_returns_in_if()
144 state->has_predicated_return = progress || has_predicated_return; in lower_returns_in_if()
146 return progress; in lower_returns_in_if()
213 bool progress = false; in lower_returns_in_cf_list() local
227 progress = true; in lower_returns_in_cf_list()
[all …]
Dnir_opt_trivial_continues.c38 bool progress = false; in lower_trivial_continues_block() local
45 progress |= lower_trivial_continues_block( in lower_trivial_continues_block()
47 progress |= lower_trivial_continues_block( in lower_trivial_continues_block()
62 return progress; in lower_trivial_continues_block()
77 bool progress = false; in lower_trivial_continues_list() local
88 progress = true; in lower_trivial_continues_list()
90 progress = true; in lower_trivial_continues_list()
97 progress = true; in lower_trivial_continues_list()
99 progress = true; in lower_trivial_continues_list()
108 return progress; in lower_trivial_continues_list()
[all …]
Dnir_opt_cse.c44 bool progress = false; in cse_block() local
48 progress = true; in cse_block()
55 progress |= cse_block(child, instr_set); in cse_block()
61 return progress; in cse_block()
71 bool progress = cse_block(nir_start_block(impl), instr_set); in nir_opt_cse_impl() local
73 if (progress) in nir_opt_cse_impl()
78 return progress; in nir_opt_cse_impl()
84 bool progress = false; in nir_opt_cse() local
88 progress |= nir_opt_cse_impl(function->impl); in nir_opt_cse()
91 return progress; in nir_opt_cse()
Dnir_opt_remove_phis.c69 bool progress = false; in remove_phis_block() local
136 progress = true; in remove_phis_block()
139 return progress; in remove_phis_block()
145 bool progress = false; in remove_phis_impl() local
150 progress |= remove_phis_block(block, &bld); in remove_phis_impl()
153 if (progress) { in remove_phis_impl()
158 return progress; in remove_phis_impl()
164 bool progress = false; in nir_opt_remove_phis() local
168 progress = remove_phis_impl(function->impl) || progress; in nir_opt_remove_phis()
170 return progress; in nir_opt_remove_phis()
Dnir_lower_constant_initializers.c44 bool progress = false; in lower_const_initializer() local
52 progress = true; in lower_const_initializer()
65 return progress; in lower_const_initializer()
71 bool progress = false; in nir_lower_constant_initializers() local
78 progress |= lower_const_initializer(&builder, &shader->outputs); in nir_lower_constant_initializers()
81 progress |= lower_const_initializer(&builder, &shader->globals); in nir_lower_constant_initializers()
84 progress |= lower_const_initializer(&builder, &shader->system_values); in nir_lower_constant_initializers()
86 if (progress) { in nir_lower_constant_initializers()
106 progress = true; in nir_lower_constant_initializers()
111 return progress; in nir_lower_constant_initializers()
Dnir_opt_move_comparisons.c105 bool *progress = data; in move_comparison_source_cb() local
109 *progress = true; in move_comparison_source_cb()
117 bool progress = false; in move_comparisons() local
133 progress |= move_comparison_source(&iff->condition, block, NULL); in move_comparisons()
154 progress |= move_comparison_source(&alu->src[i].src, in move_comparisons()
158 nir_foreach_src(instr, move_comparison_source_cb, &progress); in move_comparisons()
162 return progress; in move_comparisons()
168 bool progress = false; in nir_opt_move_comparisons() local
179 progress = true; in nir_opt_move_comparisons()
184 return progress; in nir_opt_move_comparisons()
Dnir_normalize_cubemap_coords.c39 bool progress = false; in normalize_cubemap_coords_block() local
81 progress = true; in normalize_cubemap_coords_block()
85 return progress; in normalize_cubemap_coords_block()
93 bool progress = false; in normalize_cubemap_coords_impl() local
96 progress |= normalize_cubemap_coords_block(block, &b); in normalize_cubemap_coords_impl()
102 return progress; in normalize_cubemap_coords_impl()
108 bool progress = false; in nir_normalize_cubemap_coords() local
112 progress = normalize_cubemap_coords_impl(function->impl) || progress; in nir_normalize_cubemap_coords()
115 return progress; in nir_normalize_cubemap_coords()
Dnir_lower_clamp_color_outputs.c104 bool progress = false; in lower_block() local
108 progress |= lower_intrinsic(state, nir_instr_as_intrinsic(instr)); in lower_block()
111 return progress; in lower_block()
118 bool progress = false; in lower_impl() local
121 progress |= lower_block(state, block); in lower_impl()
126 return progress; in lower_impl()
132 bool progress = false; in nir_lower_clamp_color_outputs() local
139 progress |= lower_impl(&state, function->impl); in nir_lower_clamp_color_outputs()
142 return progress; in nir_lower_clamp_color_outputs()
/external/e2fsprogs/lib/ext2fs/
Dprogress.c38 struct ext2fs_numeric_progress_struct * progress, in ext2fs_numeric_progress_init() argument
55 memset(progress, 0, sizeof(*progress)); in ext2fs_numeric_progress_init()
57 progress->skip_progress++; in ext2fs_numeric_progress_init()
63 progress->max = max; in ext2fs_numeric_progress_init()
64 progress->log_max = int_log10(max); in ext2fs_numeric_progress_init()
74 struct ext2fs_numeric_progress_struct * progress, in ext2fs_numeric_progress_update() argument
81 if (progress->skip_progress) in ext2fs_numeric_progress_update()
88 printf("%*llu/%*llu", progress->log_max, val, in ext2fs_numeric_progress_update()
89 progress->log_max, progress->max); in ext2fs_numeric_progress_update()
90 fprintf(stdout, "%.*s", (2*progress->log_max)+1, backspaces); in ext2fs_numeric_progress_update()
[all …]
/external/curl/tests/unit/
Dunit1399.c49 data->progress.t_startsingle.tv_sec = fake_now.tv_sec + seconds_offset; in fake_t_startsingle_time()
50 data->progress.t_startsingle.tv_usec = fake_now.tv_usec; in fake_t_startsingle_time()
67 fail_unless(usec_matches_seconds(data->progress.t_nslookup, seconds), msg); in expect_timer_seconds()
68 fail_unless(usec_matches_seconds(data->progress.t_connect, seconds), msg); in expect_timer_seconds()
69 fail_unless(usec_matches_seconds(data->progress.t_appconnect, seconds), msg); in expect_timer_seconds()
70 fail_unless(usec_matches_seconds(data->progress.t_pretransfer, seconds), in expect_timer_seconds()
72 fail_unless(usec_matches_seconds(data->progress.t_starttransfer, seconds), in expect_timer_seconds()
85 data.progress.t_nslookup = 0;
86 data.progress.t_connect = 0;
87 data.progress.t_appconnect = 0;
[all …]
/external/libjpeg-turbo/
Djdtrans.c60 if (cinfo->progress != NULL) in jpeg_read_coefficients()
61 (*cinfo->progress->progress_monitor) ((j_common_ptr)cinfo); in jpeg_read_coefficients()
69 if (cinfo->progress != NULL && in jpeg_read_coefficients()
71 if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) { in jpeg_read_coefficients()
73 cinfo->progress->pass_limit += (long)cinfo->total_iMCU_rows; in jpeg_read_coefficients()
138 if (cinfo->progress != NULL) { in transdecode_master_selection()
150 cinfo->progress->pass_counter = 0L; in transdecode_master_selection()
151 cinfo->progress->pass_limit = (long)cinfo->total_iMCU_rows * nscans; in transdecode_master_selection()
152 cinfo->progress->completed_passes = 0; in transdecode_master_selection()
153 cinfo->progress->total_passes = 1; in transdecode_master_selection()
Dwrrle.c86 cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress; in start_output_rle() local
142 if (progress != NULL) { in start_output_rle()
143 progress->total_extra_passes++; /* count file writing as separate pass */ in start_output_rle()
185 cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress; in finish_output_rle() local
218 if (progress != NULL) { in finish_output_rle()
219 progress->pub.pass_limit = cinfo->output_height; in finish_output_rle()
220 progress->pub.pass_counter = 0; in finish_output_rle()
221 (*progress->pub.progress_monitor) ((j_common_ptr)cinfo); in finish_output_rle()
232 if (progress != NULL) { in finish_output_rle()
233 progress->pub.pass_counter++; in finish_output_rle()
[all …]
Drdrle.c89 cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress; in start_input_rle() local
173 if (progress != NULL) { in start_input_rle()
175 progress->total_extra_passes++; in start_input_rle()
253 cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress; in load_image() local
265 if (progress != NULL) { in load_image()
266 progress->pub.pass_limit = cinfo->image_height; in load_image()
267 progress->pub.pass_counter = 0; in load_image()
268 (*progress->pub.progress_monitor) ((j_common_ptr)cinfo); in load_image()
281 if (progress != NULL) { in load_image()
282 progress->pub.pass_counter++; in load_image()
[all …]
/external/autotest/client/site_tests/network_WiFiTxRx/
Dnetwork-flipflop.sh33 progress () { echo "$@" 1>&2; } function
145 progress "Found test ESSID $cell_essid (Frequency: $cell_freq)";
155 progress "Ignoring ESSID $cell_essid (Frequency: $cell_freq)";
167 progress Bringing up $iface;
169 progress Scanning for ESSID $target;
180 progress Allowing link $gateway strength/quality readings to stabilise;
183 progress Contacting AP at "/dev/tcp/$gateway/80" to collect TX strength;
207 progress "$SECONDS: $if_essid/$if_ap (want $essid)";
253 progress "WiFi Association failed for $wlan_if [$ap_ssid vs $if_ap]";
263 progress "Start: $iface ($if_mode/$if_80211) ap $if_ap essid '$if_essid'";
[all …]
/external/python/cpython3/Lib/sqlite3/test/
Dbackup.py61 def progress(status, remaining, total): function
65 self.cx.backup(bck, pages=1, progress=progress)
75 def progress(status, remaining, total): function
79 self.cx.backup(bck, progress=progress)
88 def progress(status, remaining, total): function
92 self.cx.backup(bck, pages=-1, progress=progress)
101 self.cx.backup(bck, pages=1, progress='bar')
107 def progress(status, remaining, total): function
114 self.cx.backup(bck, pages=1, progress=progress)
128 def progress(status, remaining, total): function
[all …]
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_opt_algebraic.c147 bool progress = false; in qir_opt_algebraic() local
156 progress = true; in qir_opt_algebraic()
165 progress = true; in qir_opt_algebraic()
173 progress = true; in qir_opt_algebraic()
184 progress = true; in qir_opt_algebraic()
192 progress = true; in qir_opt_algebraic()
205 progress = true; in qir_opt_algebraic()
222 progress = true; in qir_opt_algebraic()
234 progress = true; in qir_opt_algebraic()
243 progress = true; in qir_opt_algebraic()
[all …]
/external/mesa3d/prebuilt-intermediates/compiler/
Dbrw_nir_trig_workarounds.c115 bool progress = false; in brw_nir_apply_trig_workarounds_block() local
132 progress = true; in brw_nir_apply_trig_workarounds_block()
143 progress = true; in brw_nir_apply_trig_workarounds_block()
153 return progress; in brw_nir_apply_trig_workarounds_block()
160 bool progress = false; in brw_nir_apply_trig_workarounds_impl() local
163 progress |= brw_nir_apply_trig_workarounds_block(block, condition_flags, mem_ctx); in brw_nir_apply_trig_workarounds_impl()
166 if (progress) in brw_nir_apply_trig_workarounds_impl()
170 return progress; in brw_nir_apply_trig_workarounds_impl()
177 bool progress = false; in brw_nir_apply_trig_workarounds() local
186 progress |= brw_nir_apply_trig_workarounds_impl(function->impl, condition_flags); in brw_nir_apply_trig_workarounds()
[all …]
/external/mesa3d/src/intel/compiler/
Dbrw_fs_cmod_propagation.cpp54 bool progress = false; in opt_cmod_propagation_local() local
104 progress = true; in opt_cmod_propagation_local()
129 progress = true; in opt_cmod_propagation_local()
180 progress = true; in opt_cmod_propagation_local()
192 return progress; in opt_cmod_propagation_local()
198 bool progress = false; in opt_cmod_propagation() local
201 progress = opt_cmod_propagation_local(devinfo, block) || progress; in opt_cmod_propagation()
204 if (progress) in opt_cmod_propagation()
207 return progress; in opt_cmod_propagation()
Dbrw_nir_lower_cs_intrinsics.c31 bool progress; member
40 bool progress = false; in lower_cs_intrinsics_convert_block() local
113 state->progress = true; in lower_cs_intrinsics_convert_block()
116 return progress; in lower_cs_intrinsics_convert_block()
138 bool progress = false; in brw_nir_lower_cs_intrinsics() local
148 state.progress = false; in brw_nir_lower_cs_intrinsics()
155 progress |= state.progress; in brw_nir_lower_cs_intrinsics()
156 } while (state.progress); in brw_nir_lower_cs_intrinsics()
158 return progress; in brw_nir_lower_cs_intrinsics()

12345678910>>...43