/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jcapistd.c | 88 /* Call progress monitor hook if present */ in GLOBAL() 89 if (cinfo->progress != NULL) { in GLOBAL() 90 cinfo->progress->pass_counter = (long)cinfo->next_scanline; in GLOBAL() 91 cinfo->progress->pass_limit = (long)cinfo->image_height; in GLOBAL() 92 (*cinfo->progress->progress_monitor) ((j_common_ptr)cinfo); in GLOBAL() 133 /* Call progress monitor hook if present */ in GLOBAL() 134 if (cinfo->progress != NULL) { in GLOBAL() 135 cinfo->progress->pass_counter = (long)cinfo->next_scanline; in GLOBAL() 136 cinfo->progress->pass_limit = (long)cinfo->image_height; in GLOBAL() 137 (*cinfo->progress in GLOBAL() [all...] |
H A D | jdapistd.c | 63 /* Call progress monitor hook if present */ 64 if (cinfo->progress != NULL) 65 (*cinfo->progress->progress_monitor) ((j_common_ptr)cinfo); 72 /* Advance progress counter if appropriate */ 73 if (cinfo->progress != NULL && 75 if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) { 77 cinfo->progress->pass_limit += (long)cinfo->total_iMCU_rows; 116 /* Call progress monitor hook if present */ in LOCAL() 117 if (cinfo->progress ! in LOCAL() [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_phis_to_scalar.c | 192 bool progress = false; in lower_phis_to_scalar_block() local 266 progress = true; in lower_phis_to_scalar_block() 278 return progress; in lower_phis_to_scalar_block() 285 bool progress = false; in lower_phis_to_scalar_impl() local 294 progress = lower_phis_to_scalar_block(block, &state) || progress; in lower_phis_to_scalar_impl() 304 return progress; in lower_phis_to_scalar_impl() 317 bool progress = false; in nir_lower_phis_to_scalar() local 321 progress = lower_phis_to_scalar_impl(function->impl, lower_all) || progress; in nir_lower_phis_to_scalar() [all...] |
H A D | nir_repair_ssa.c | 33 bool progress; member 48 /* We're going to build a phi. That's progress. */ in prep_build_phi() 49 state->progress = true; in prep_build_phi() 169 state.progress = false; in nir_repair_ssa_impl() 180 if (state.progress) in nir_repair_ssa_impl() 189 return state.progress; in nir_repair_ssa_impl() 202 bool progress = false; in nir_repair_ssa() local 206 progress = nir_repair_ssa_impl(function->impl) || progress; in nir_repair_ssa() 209 return progress; in nir_repair_ssa() [all...] |
H A D | nir_remove_dead_variables.c | 165 bool progress = false; in remove_dead_vars() local 180 progress = true; in remove_dead_vars() 184 return progress; in remove_dead_vars() 191 bool progress = false; in nir_remove_dead_variables() local 197 progress = remove_dead_vars(&shader->variables, modes, in nir_remove_dead_variables() 198 live, opts) || progress; in nir_remove_dead_variables() 207 progress = true; in nir_remove_dead_variables() 218 if (progress) { in nir_remove_dead_variables() 227 return progress; in nir_remove_dead_variables()
|
H A D | nir_opt_comparison_pre.c | 206 bool progress = false; in comparison_pre_block() local 306 progress = true; in comparison_pre_block() 339 progress = true; in comparison_pre_block() 344 return progress; in comparison_pre_block() 358 const bool progress = in nir_opt_comparison_pre_impl() local 363 if (progress) { in nir_opt_comparison_pre_impl() 370 return progress; in nir_opt_comparison_pre_impl() 376 bool progress = false; in nir_opt_comparison_pre() local 380 progress |= nir_opt_comparison_pre_impl(function->impl); in nir_opt_comparison_pre() 383 return progress; in nir_opt_comparison_pre() [all...] |
H A D | nir_lower_samplers.c | 147 bool progress = false; in lower_impl() local 152 progress |= lower_sampler(&b, nir_instr_as_tex(instr)); in lower_impl() 156 if (progress) { in lower_impl() 163 return progress; in lower_impl() 169 bool progress = false; in nir_lower_samplers() local 174 progress |= lower_impl(function->impl); in nir_lower_samplers() 177 return progress; in nir_lower_samplers()
|
H A D | nir_lower_var_copies.c | 124 bool progress = false; in lower_var_copies_impl() local 144 progress = true; in lower_var_copies_impl() 149 if (progress) { in lower_var_copies_impl() 156 return progress; in lower_var_copies_impl() 165 bool progress = false; in nir_lower_var_copies() local 169 progress |= lower_var_copies_impl(function->impl); in nir_lower_var_copies() 172 return progress; in nir_lower_var_copies()
|
H A D | nir_opt_move_discards_to_top.c | 136 bool progress = false; in opt_move_discards_to_top_impl() local 217 return progress; in opt_move_discards_to_top_impl() 219 progress |= nir_instr_move(cursor, instr); in opt_move_discards_to_top_impl() 226 return progress; in opt_move_discards_to_top_impl() 238 bool progress = false; in nir_opt_move_discards_to_top() local 247 progress = true; in nir_opt_move_discards_to_top() 251 return progress; in nir_opt_move_discards_to_top()
|
H A D | nir_opt_move.c | 69 bool progress = false; in nir_opt_move_block() local 127 progress = true; in nir_opt_move_block() 145 progress = true; in nir_opt_move_block() 148 return progress; in nir_opt_move_block() 154 bool progress = false; in nir_opt_move() local 170 progress = true; in nir_opt_move() 176 return progress; in nir_opt_move()
|
H A D | nir_lower_array_deref_of_vec.c | 66 bool progress = false; in nir_lower_array_deref_of_vec_impl() local 133 progress = true; in nir_lower_array_deref_of_vec_impl() 161 progress = true; in nir_lower_array_deref_of_vec_impl() 166 if (progress) { in nir_lower_array_deref_of_vec_impl() 173 return progress; in nir_lower_array_deref_of_vec_impl() 188 bool progress = false; in nir_lower_array_deref_of_vec() local 193 progress = true; in nir_lower_array_deref_of_vec() 196 return progress; in nir_lower_array_deref_of_vec()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | opt_dead_code_local.cpp | 175 bool progress = false; in process_assignment() local 226 progress = true; in process_assignment() 280 progress = true; in process_assignment() 298 return progress; in process_assignment() 310 bool progress = false; in dead_code_local_basic_block() local 326 progress = process_assignment(lin_ctx, ir_assign, &assignments) || in dead_code_local_basic_block() 327 progress; in dead_code_local_basic_block() 336 *out_progress = progress; in dead_code_local_basic_block() 346 bool progress = false; in do_dead_code_local() local 348 call_for_basic_blocks(instructions, dead_code_local_basic_block, &progress); in do_dead_code_local() [all...] |
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_liveness.c | 77 bool progress = false; in compute_block_liveness() local 82 progress = true; in compute_block_liveness() 94 progress = true; in compute_block_liveness() 108 progress = true; in compute_block_liveness() 114 return progress; in compute_block_liveness() 154 bool progress = true; in ir3_calc_liveness() local 155 while (progress) { in ir3_calc_liveness() 156 progress = false; in ir3_calc_liveness() 158 progress |= in ir3_calc_liveness()
|
H A D | ir3_nir_lower_tex_prefetch.c | 155 bool progress = false; in lower_tex_prefetch_block() local 189 progress |= true; in lower_tex_prefetch_block() 193 return progress; in lower_tex_prefetch_block() 219 bool progress = lower_tex_prefetch_block(block); in lower_tex_prefetch_func() local 221 if (progress) { in lower_tex_prefetch_func() 226 return progress; in lower_tex_prefetch_func() 232 bool progress = false; in ir3_nir_lower_tex_prefetch() local 243 progress |= lower_tex_prefetch_func(function->impl); in ir3_nir_lower_tex_prefetch() 246 return progress; in ir3_nir_lower_tex_prefetch()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_nir_optim.c | 192 bool progress; in si_nir_is_output_const_if_tex_is_const() local 194 progress = false; in si_nir_is_output_const_if_tex_is_const() 195 NIR_PASS(progress, shader, nir_copy_prop); in si_nir_is_output_const_if_tex_is_const() 196 NIR_PASS(progress, shader, nir_opt_remove_phis); in si_nir_is_output_const_if_tex_is_const() 197 NIR_PASS(progress, shader, nir_opt_dce); in si_nir_is_output_const_if_tex_is_const() 198 NIR_PASS(progress, shader, nir_opt_dead_cf); in si_nir_is_output_const_if_tex_is_const() 199 NIR_PASS(progress, shader, nir_opt_algebraic); in si_nir_is_output_const_if_tex_is_const() 200 NIR_PASS(progress, shader, nir_opt_constant_folding); in si_nir_is_output_const_if_tex_is_const() 201 } while (progress); in si_nir_is_output_const_if_tex_is_const()
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_dead_control_flow.cpp | 43 bool progress = false; in dead_control_flow_eliminate() local 63 progress = true; in dead_control_flow_eliminate() 100 progress = true; in dead_control_flow_eliminate() 113 progress = true; in dead_control_flow_eliminate() 117 if (progress) in dead_control_flow_eliminate() 120 return progress; in dead_control_flow_eliminate()
|
H A D | brw_fs_saturate_propagation.cpp | 50 bool progress = false; in opt_saturate_propagation_local() local 79 progress = true; in opt_saturate_propagation_local() 121 progress = true; in opt_saturate_propagation_local() 148 return progress; in opt_saturate_propagation_local() 155 bool progress = false; in opt_saturate_propagation() local 158 progress = opt_saturate_propagation_local(live, block) || progress; in opt_saturate_propagation() 163 return progress; in opt_saturate_propagation()
|
/foundation/arkui/ace_engine/frameworks/base/geometry/ |
H A D | transform_util.h | 41 static TranslateOperation Blend(const TranslateOperation& to, const TranslateOperation& from, float progress); 56 static ScaleOperation Blend(const ScaleOperation& to, const ScaleOperation& from, float progress); 69 static SkewOperation Blend(const SkewOperation& to, const SkewOperation& from, float progress); 85 static RotateOperation Blend(const RotateOperation& to, const RotateOperation& from, float progress); 97 static PerspectiveOperation Blend(const PerspectiveOperation& to, const PerspectiveOperation& from, float progress); 164 static TransformOperation Blend(const TransformOperation& to, const TransformOperation& from, float progress); 169 const TransformOperation& to, const TransformOperation& from, float progress, TransformOperation& out); 178 static TransformOperations Blend(const TransformOperations& to, const TransformOperations& from, float progress); 224 void BlendInner(const TransformOperations& from, float progress, TransformOperations& out) const; 231 const DecomposedTransform& to, const DecomposedTransform& from, double progress); [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | variableDeclaratorResolvedDuringContextualTyping.js | 16 (progress: any): any; 20 constructor(init: (complete: ValueCallback, error: ErrorCallback, progress: ProgressCallback) => void, oncancel?: any); 31 public then(success?: ValueCallback, error?: ErrorCallback, progress?: ProgressCallback): Promise; 32 public done(success?: ValueCallback, error?: ErrorCallback, progress?: ProgressCallback): void; 38 constructor(init: (complete: (value: V) => void, error: (err: any) => void, progress: ProgressCallback) => void, oncancel?: any); 40 public then<U>(success?: (value: V) => TPromise<U>, error?: (err: any) => TPromise<U>, progress?: ProgressCallback): TPromise<U>; 41 public then<U>(success?: (value: V) => TPromise<U>, error?: (err: any) => U, progress?: ProgressCallback): TPromise<U>; 42 public then<U>(success?: (value: V) => U, error?: (err: any) => TPromise<U>, progress?: ProgressCallback): TPromise<U>; 43 public then<U>(success?: (value: V) => U, error?: (err: any) => U, progress?: ProgressCallback): TPromise<U>; 45 public done(success?: (value: V) => void, error?: (err: any) => any, progress [all...] |
/third_party/lzma/CPP/7zip/Compress/ |
H A D | CopyCoder.cpp | 26 ICompressProgressInfo *progress))
in Code() 103 if (progress && (TotalSize & (((UInt32)1 << 22) - 1)) == 0)
in Code() 105 RINOK(progress->SetRatioInfo(&TotalSize, &TotalSize))
in Code() 139 HRESULT CopyStream(ISequentialInStream *inStream, ISequentialOutStream *outStream, ICompressProgressInfo *progress)
in CopyStream() argument 142 return copyCoder->Code(inStream, outStream, NULL, NULL, progress);
in CopyStream() 145 HRESULT CopyStream_ExactSize(ISequentialInStream *inStream, ISequentialOutStream *outStream, UInt64 size, ICompressProgressInfo *progress)
in CopyStream_ExactSize() argument 149 RINOK(copyCoder->Code(inStream, outStream, NULL, &size, progress))
in CopyStream_ExactSize() 23 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) Code() argument
|
/third_party/mesa3d/src/broadcom/compiler/ |
H A D | v3d_nir_lower_line_smooth.c | 61 bool progress = false; in lower_line_smooth_func() local 82 progress = true; in lower_line_smooth_func() 86 return progress; in lower_line_smooth_func() 151 bool progress = false; in v3d_nir_lower_line_smooth() local 164 progress |= lower_line_smooth_func(&state, function->impl); in v3d_nir_lower_line_smooth() 166 if (progress) { in v3d_nir_lower_line_smooth() 175 return progress; in v3d_nir_lower_line_smooth()
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_opt_copy_propagation.c | 68 bool progress = false; in try_copy_prop() local 150 progress = true; in try_copy_prop() 153 return progress; in try_copy_prop() 175 bool progress = false; in qir_opt_copy_propagation() local 189 progress = try_copy_prop(c, inst, movs) || progress; in qir_opt_copy_propagation() 200 return progress; in qir_opt_copy_propagation()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_nir.cpp | 113 bool progress = false; in r600_lower_scratch_addresses() local 127 progress = true; in r600_lower_scratch_addresses() 131 return progress; in r600_lower_scratch_addresses() 420 bool progress = false; in r600_lower_shared_io_impl() local 484 progress = true; in r600_lower_shared_io_impl() 487 return progress; in r600_lower_shared_io_impl() 493 bool progress=false; in r600_lower_shared_io() local 497 progress = true; in r600_lower_shared_io() 499 return progress; in r600_lower_shared_io() 548 bool progress in optimize_once() local [all...] |
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_api/cloudsync_impl/ |
H A D | cloud_download_callback_client_test.cpp | 38 void OnDownloadProcess(const DownloadProgressObj &progress) in OnDownloadProcess() argument 74 DownloadProgressObj progress; in HWTEST_F() local 77 cloudCallback.OnDownloadProcess(progress); in HWTEST_F() 96 DownloadProgressObj progress; in HWTEST_F() local 99 cloudCallback.OnDownloadProcess(progress); in HWTEST_F()
|
/kernel/linux/linux-5.10/tools/perf/ui/gtk/ |
H A D | progress.c | 5 #include "../progress.h" 8 static GtkWidget *progress; variable 20 progress = gtk_progress_bar_new(); in gtk_ui_progress__update() 23 gtk_box_pack_start(GTK_BOX(vbox), progress, TRUE, TRUE, 3); in gtk_ui_progress__update() local 34 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(progress), fraction); in gtk_ui_progress__update() 36 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progress), buf); in gtk_ui_progress__update()
|