| /external/curl/docs/cmdline-opts/ |
| D | no-progress-meter.md | 1 --- 3 SPDX-License-Identifier: curl 4 Long: no-progress-meter 5 Help: Do not show the progress meter 9 See-also: 10 - verbose 11 - silent 13 - --no-progress-meter -o store $URL 14 --- 16 # `--no-progress-meter` [all …]
|
| /external/mesa3d/src/compiler/nir/ |
| D | nir_gather_types.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 29 BITSET_WORD *int_types, bool *progress) in set_type() argument 36 *progress = true; in set_type() 43 *progress = true; in set_type() 49 /* No new information, don't set anything. */ in set_type() 59 BITSET_WORD *types, bool *progress) in copy_type() argument 68 *progress = true; in copy_type() 71 *progress = true; in copy_type() 77 BITSET_WORD *int_types, bool *progress) in copy_types() argument 80 copy_type(src.ssa->index, def->index, src_is_sink, float_types, progress); in copy_types() [all …]
|
| D | nir_opt_loop.c | 3 * SPDX-License-Identifier: MIT 12 return nir_cf_node_is_last(&block->cf_node) && in is_block_empty() 13 exec_list_is_empty(&block->instr_list); in is_block_empty() 19 return nir_cf_node_is_last(&block->cf_node) && in is_block_singular() 20 (exec_list_is_empty(&block->instr_list) || in is_block_singular() 21 (exec_list_is_singular(&block->instr_list) && nir_block_ends_in_jump(block))); in is_block_singular() 27 if (exec_list_is_empty(&block->instr_list)) in nir_block_ends_in_continue() 31 return instr->type == nir_instr_type_jump && in nir_block_ends_in_continue() 32 nir_instr_as_jump(instr)->type == nir_jump_continue; in nir_block_ends_in_continue() 70 nir_block *after_if = nir_cf_node_cf_tree_next(&nif->cf_node); in opt_loop_merge_break_continue() [all …]
|
| D | nir_opt_dce.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 33 return BITSET_TEST(defs_live, def->index); in is_def_live() 39 if (!BITSET_TEST(defs_live, src->ssa->index)) { in mark_src_live() 40 BITSET_SET(defs_live, src->ssa->index); in mark_src_live() 57 switch (instr->type) { in is_live() 63 return is_def_live(&alu->def, defs_live); in is_live() 67 return is_def_live(&deref->def, defs_live); in is_live() 71 const nir_intrinsic_info *info = &nir_intrinsic_infos[intrin->intrinsic]; in is_live() 72 return !(info->flags & NIR_INTRINSIC_CAN_ELIMINATE) || in is_live() 73 (info->has_dest && is_def_live(&intrin->def, defs_live)); in is_live() [all …]
|
| D | nir_lower_continue_constructs.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 41 set_foreach(cont->predecessors, entry) { in lower_loop_continue_block() 42 nir_block *pred = (nir_block *)entry->key; in lower_loop_continue_block() 43 /* If the continue block has no predecessors, it is unreachable. */ in lower_loop_continue_block() 44 if (pred->predecessors->entries == 0) in lower_loop_continue_block() 57 nir_cf_list_extract(&extracted, &loop->continue_list); in lower_loop_continue_block() 61 assert(single_predecessor->successors[0] == cont); in lower_loop_continue_block() 62 assert(single_predecessor->successors[1] == NULL); in lower_loop_continue_block() 65 nir_cf_list_extract(&extracted, &loop->continue_list); in lower_loop_continue_block() 72 /* As control flow has to re-converge before executing the continue in lower_loop_continue_block() [all …]
|
| D | nir_opt_remove_phis.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 34 if (ssa->parent_instr->type != nir_instr_type_alu) in get_parent_mov() 37 nir_alu_instr *alu = nir_instr_as_alu(ssa->parent_instr); in get_parent_mov() 38 return (alu->op == nir_op_mov) ? alu : NULL; in get_parent_mov() 69 bool progress = false; in remove_phis_block() local 88 if (src->src.ssa == &phi->def) in remove_phis_block() 92 def = src->src.ssa; in remove_phis_block() 94 } else if (nir_src_is_undef(src->src) && in remove_phis_block() 95 nir_block_dominates(def->parent_instr->block, src->pred)) { in remove_phis_block() 98 if (src->src.ssa != def && !matching_mov(mov, src->src.ssa)) { in remove_phis_block() [all …]
|
| D | nir_opt_barriers.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 47 bool progress = false; in nir_opt_combine_barriers_impl() local 53 if (instr->type != nir_instr_type_intrinsic) { in nir_opt_combine_barriers_impl() 59 if (current->intrinsic != nir_intrinsic_barrier) { in nir_opt_combine_barriers_impl() 65 nir_instr_remove(¤t->instr); in nir_opt_combine_barriers_impl() 66 progress = true; in nir_opt_combine_barriers_impl() 73 if (progress) { in nir_opt_combine_barriers_impl() 81 return progress; in nir_opt_combine_barriers_impl() 94 bool progress = false; in nir_opt_combine_barriers() local 98 progress = true; in nir_opt_combine_barriers() [all …]
|
| D | nir_lower_returns.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 35 * control-flow. Since whether or not the return happens can only be 36 * determined dynamically at run-time, everything that occurs afterwards 50 nir_builder *b = &state->builder; in predicate_following() 51 b->cursor = nir_after_cf_node_and_phis(node); in predicate_following() 53 if (!state->loop && nir_cursors_equal(b->cursor, nir_after_cf_list(state->cf_list))) in predicate_following() 56 assert(state->return_flag); in predicate_following() 58 nir_if *if_stmt = nir_push_if(b, nir_load_var(b, state->return_flag)); in predicate_following() 60 if (state->loop) { in predicate_following() 66 nir_block *block = nir_cursor_current_block(b->cursor); in predicate_following() [all …]
|
| D | nir_opt_dead_cf.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 40 * We delete the if statement and paste the contents of the always-executed 64 * with no side effects and without any definitions that are used 96 remove_after_cf_node(&if_stmt->cf_node); in opt_constant_if() 101 nir_block *after = nir_cf_node_as_block(nir_cf_node_next(&if_stmt->cf_node)); in opt_constant_if() 105 if (phi_src->pred != last_block) in opt_constant_if() 108 def = phi_src->src.ssa; in opt_constant_if() 112 nir_def_rewrite_uses(&phi->def, def); in opt_constant_if() 113 nir_instr_remove(&phi->instr); in opt_constant_if() 118 struct exec_list *cf_list = condition ? &if_stmt->then_list in opt_constant_if() [all …]
|
| D | nir_functions.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 38 if (!function->should_inline) { in nir_function_can_inline() 39 if (function->impl) { in nir_function_can_inline() 40 if (function->impl->num_blocks > 2) in nir_function_can_inline() 42 if (function->impl->ssa_alloc > 45) in nir_function_can_inline() 62 nir_function_impl *copy = nir_function_impl_clone(b->shader, impl); in nir_inline_function_impl() 64 exec_list_append(&b->impl->locals, ©->locals); in nir_inline_function_impl() 68 switch (instr->type) { in nir_inline_function_impl() 71 if (deref->deref_type != nir_deref_type_var) in nir_inline_function_impl() 76 * b->impl->locals. in nir_inline_function_impl() [all …]
|
| /external/mesa3d/src/gallium/drivers/r300/compiler/ |
| D | r300_nir.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 31 nir_foreach_use(src, &instr->def) { in r300_is_only_used_as_float() 36 if (user_instr->type == nir_instr_type_alu) { in r300_is_only_used_as_float() 38 switch (alu->op) { in r300_is_only_used_as_float() 52 const nir_op_info *info = &nir_op_infos[alu->op]; in r300_is_only_used_as_float() 54 int src_idx = alu_src - &alu->src[0]; in r300_is_only_used_as_float() 55 if ((info->input_types[src_idx] & nir_type_int) || in r300_is_only_used_as_float() 56 (info->input_types[src_idx] & nir_type_bool)) in r300_is_only_used_as_float() 66 if (instr->type != nir_instr_type_alu) in r300_should_vectorize_instr() 85 /* No wrapping off the end of a TGSI reg. We could do a bit better by in r300_should_vectorize_io() [all …]
|
| /external/accompanist/placeholder/src/main/java/com/google/accompanist/placeholder/ |
| D | PlaceholderHighlight.kt | 8 * https://www.apache.org/licenses/LICENSE-2.0 33 * A class which provides a brush to paint placeholder based on progress. 38 accompanist/placeholder is deprecated and the API is no longer maintained. 50 * Return a [Brush] to draw for the given [progress] and [size]. 52 * @param progress the current animated progress in the range of 0f..1f. 56 @FloatRange(from = 0.0, to = 1.0) progress: Float, in brush() 63 * @param progress the current animated progress in the range of 0f..1f. in brush() 66 public fun alpha(progress: Float): Float in brush() 81 accompanist/placeholder is deprecated and the API is no longer maintained. in brush() 97 * The highlight starts at the top-start, and then grows to the bottom-end during the animation. in brush() [all …]
|
| /external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/testing/ |
| D | BlockingFileDownloader.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 40 * <li>Idle - The download has not started yet. 41 * <li>In Progress - The download has started, but has not completed yet. 42 * <li>Finishing* - The download is finishing (Only applicable when delegate is provided). 43 * <li>Finished - The download has finished. 49 * provided. The Finishing state can be considered most like the In Progress state, the main 50 * distinction being that no action is being performed during the In Progress state, but the 53 * <p><em>Why not just run the delegate during In Progress?</em> 56 * some variability introduced that causes test assertions to become flaky. The In Progress is 57 * reserved to effectively be a Frozen state that ensure no work is being done. This ensures that [all …]
|
| /external/sg3_utils/doc/ |
| D | sg_requests.8 | 1 .TH SG_REQUESTS "8" "October 2021" "sg3_utils\-1.47" SG3_UTILS 3 sg_requests \- send one or more SCSI REQUEST SENSE commands 6 [\fI\-\-desc\fR] [\fI\-\-error\fR] [\fI\-\-help\fR] [\fI\-\-hex\fR] 7 [\fI\-\-maxlen=LEN\fR] [\fI\-\-num=NUM\fR] [\fI\-\-number=NUM\fR] 8 [\fI\-\-progress\fR] [\fI\-\-raw\fR] [\fI\-\-status\fR] [\fI\-\-time\fR] 9 [\fI\-\-verbose\fR] [\fI\-\-version\fR] \fIDEVICE\fR 17 Multiple REQUEST SENSE commands can be sent with the \fI\-\-num=NUM\fR 18 option. This can be used for timing purposes or monitoring the progress 23 \fB\-d\fR, \fB\-\-desc\fR 26 will only occur if the \fIDEVICE\fR recognizes descriptor format (SPC\-3 [all …]
|
| D | sg_turs.8 | 1 .TH SG_TURS "8" "November 2022" "sg3_utils\-1.48" SG3_UTILS 3 sg_turs \- send one or more SCSI TEST UNIT READY commands 6 [\fI\-\-delay=MS\fR] [\fI\-\-help\fR] [\fI\-\-low\fR] [\fI\-\-num=NUM\fR] 7 [\fI\-\-number=NUM\fR] [\fI\-\-progress\fR] [\fI\-\-time\fR] 8 [\fI\-\-verbose\fR] [\fI\-\-version\fR] \fIDEVICE\fR 11 [\fI\-d=MS\fR] [\fI\-n=NUM\fR] [\fI\-p\fR] [\fI\-t\fR] [\fI\-v\fR] [\fI\-V\fR] 18 Note that TEST UNIT READY has no associated data, just a 6 byte 27 \fB\-d\fR, \fB\-\-delay\fR=\fIMS\fR 31 \fB\-h\fR, \fB\-\-help\fR 34 \fB\-l\fR, \fB\-\-low\fR [all …]
|
| /external/python/cpython2/Lib/plat-mac/ |
| D | buildtools.py | 70 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) 85 # (there's no point overwriting the destination if it has a syntax error) 95 raise BuildError, "End-of-file in script %s" % (filename,) 100 if string.lower(filename[-3:]) == ".py": 101 basename = filename[:-3] 121 process_common(template, progress, code, rsrcname, destname, 0, [all …]
|
| /external/mesa3d/src/imagination/rogue/passes/ |
| D | rogue_dce.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 40 * 2) Loop through registers and delete ones that have no uses/writes. 45 bool progress = false; in rogue_dce_alu_instr() local 47 switch (alu->op) { in rogue_dce_alu_instr() 50 if (!alu->mod && rogue_instr_dst_src_equal(&alu->dst[0], &alu->src[0])) { in rogue_dce_alu_instr() 51 rogue_instr_delete(&alu->instr); in rogue_dce_alu_instr() 52 progress = true; in rogue_dce_alu_instr() 60 return progress; in rogue_dce_alu_instr() 65 bool progress = false; in rogue_dce_instrs() local 68 switch (instr->type) { in rogue_dce_instrs() [all …]
|
| /external/autotest/utils/frozen_chromite/lib/ |
| D | operation.py | 1 # -*- coding: utf-8 -*- 3 # Use of this source code is governed by a BSD-style license that can be 6 """Operation, including output and progress display 8 This module implements the concept of an operation, which has regular progress 47 """Wrapper around long running functions to show progress. 50 the output, and display a progress bar. 52 To display a progress bar for a function foo with argument foo_args, this is 65 # By default, update the progress bar every 100 ms. 87 def ProgressBar(self, progress): argument 88 """This method creates and displays a progress bar. [all …]
|
| /external/libjpeg-turbo/ |
| D | cdjpeg.c | 5 * Copyright (C) 1991-1997, Thomas G. Lane. 6 * libjpeg-turbo Modifications: 25 * Optional progress monitor: display a percent-done figure on stderr. 31 cd_progress_ptr prog = (cd_progress_ptr)cinfo->progress; in progress_monitor() 33 if (prog->max_scans != 0 && cinfo->is_decompressor) { in progress_monitor() 34 int scan_no = ((j_decompress_ptr)cinfo)->input_scan_number; in progress_monitor() 36 if (scan_no > (int)prog->max_scans) { in progress_monitor() 38 prog->max_scans); in progress_monitor() 43 if (prog->report) { in progress_monitor() 44 int total_passes = prog->pub.total_passes + prog->total_extra_passes; in progress_monitor() [all …]
|
| /external/python/cpython2/Lib/sqlite3/test/ |
| D | hooks.py | 1 #-*- coding: ISO-8859-1 -*- 2 # pysqlite2/test/hooks.py: tests for various SQLite-specific hooks 4 # Copyright (C) 2006-2007 Gerhard H�ring <gh@ghaering.de> 8 # This software is provided 'as-is', without any express or implied 9 # warranty. In no event will the authors be held liable for any damages 37 con.create_collation(None, lambda x, y: (x > y) - (x < y)) 60 mycoll = lambda x, y: -((x > y) - (x < y)) 77 return -cmp(x, y) 99 self.assertEqual(e.args[0].lower(), "no such collation sequence: mycoll") 104 return -((x > y) - (x < y)) * 2**32 [all …]
|
| /external/python/cpython2/Doc/library/ |
| D | easydialogs.rst | 2 :mod:`EasyDialogs` --- Basic Macintosh dialogs 52 .. function:: AskYesNoCancel(question[, default[, yes[, no[, cancel[, id]]]]]) 54 Presents a dialog with prompt *question* and three buttons labelled "Yes", "No", 55 and "Cancel". Returns ``1`` for "Yes", ``0`` for "No" and ``-1`` for "Cancel". 58 the *yes*, *no*, and *cancel* arguments; to prevent a button from appearing, 64 Displays a modeless progress-bar dialog. This is the constructor for the 66 (default "Working..."), *maxval* is the value at which progress is complete 68 done), and *label* is the text that is displayed above the progress bar itself. 73 Displays a dialog which aids the user in constructing a command-line argument 77 command line paths to an existing file, a (possibly) not-yet-existent file, and [all …]
|
| /external/curl/lib/ |
| D | progress.c | 21 * SPDX-License-Identifier: curl 30 #include "progress.h" 44 strcpy(r, "--:--:--"); in time2str() 49 curl_off_t m = (seconds - (h*CURL_OFF_T_C(3600))) / CURL_OFF_T_C(60); in time2str() 50 curl_off_t s = (seconds - (h*CURL_OFF_T_C(3600))) - (m*CURL_OFF_T_C(60)); in time2str() 58 h = (seconds - (d*CURL_OFF_T_C(86400))) / CURL_OFF_T_C(3600); in time2str() 95 /* 10000 MB - 100 GB, we show it as XX.XG */ in max5data() 123 pgrsStartNow() - sets start time 124 pgrsSetDownloadSize(x) - known expected download size 125 pgrsSetUploadSize(x) - known expected upload size [all …]
|
| /external/mesa3d/src/intel/compiler/ |
| D | brw_kernel.c | 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 42 if (compiler->clc_shader) in load_clc_shader() 43 return compiler->clc_shader; in load_clc_shader() 52 p_atomic_cmpxchg(&compiler->clc_shader, NULL, nir); in load_clc_shader() 93 assert(nir_intrinsic_infos[op].src_components[i] == -1); in implement_atomic_builtin() 94 src = &nir_build_deref_cast(&b, src, mode, data_type, 0)->def; in implement_atomic_builtin() 96 atomic->src[i] = nir_src_for_ssa(src); in implement_atomic_builtin() 99 nir_def_init_for_type(&atomic->instr, &atomic->def, data_type); in implement_atomic_builtin() 101 nir_builder_instr_insert(&b, &atomic->instr); in implement_atomic_builtin() 102 nir_store_deref(&b, ret, &atomic->def, ~0); in implement_atomic_builtin() [all …]
|
| /external/autotest/client/site_tests/network_WiFiTxRx/ |
| D | network-flipflop.sh | 8 shopt -s extglob; 14 # copy stderr to the next free vt so the user can see progress 15 # on the DUT, otherwise they're just sitting there with no feedback 16 # (if we can, that is - if openvt isn't there, just get on with it) 22 tail --pid $$ -f $stderrlog >&$oldstderr & 23 openvt -s -w -- tail --pid $$ -f $stderrlog & 28 if [[ -f "$stderrlog" ]]; then 33 progress () { echo "$@" 1>&2; } function 53 if [[ -z "$iface" ]]; then 54 while read _iface _ignore && test -z "$iface"; do [all …]
|
| /external/aws-sdk-java-v2/docs/design/services/s3/transfermanager/listener/ |
| D | README.md | 5 # v2 Transfer Manager Progress Listeners 9 …-initiated uploads and downloads. The classic example use case of a `ProgressListener` is to allow… 47 // TM-specific events: 61 1. There are *many* event types that can trigger a progress listener update. 62 2. Some events are generic and some are unique to `TransferManager`-related requests. 65 …2. For example, `{REQUEST_CONTENT_LENGTH_EVENT, bytes}` refers to the content-length bytes (the nu… 72 …om/sdk-for-java/v1/developer-guide/examples-s3-transfermanager.html#transfermanager-get-status-and… 83 *This is incorrect. A single ProgressEvent does not track a past-seen content length, nor does it a… 85 …s* track the total number of bytes processed so far. Every `TransferManager`-initiated transfer is… 88 TransferProgress progress = transfer.getProgress(); [all …]
|