/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
D | Timer.java | 109 long shortest = Long.MAX_VALUE; in timeIterations() local 117 return Math.min(duration, shortest); in timeIterations() 120 shortest = Math.min(duration, shortest); in timeIterations()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | Timer.java | 106 long shortest = Long.MAX_VALUE; in timeIterations() local 114 return Math.min(duration, shortest); in timeIterations() 117 shortest = Math.min(duration, shortest); in timeIterations()
|
/external/tensorflow/tensorflow/python/kernel_tests/strings_ops/ |
D | as_string_op_test.py | 38 output = string_ops.as_string(input_, shortest=True) 59 output = string_ops.as_string(input_, width=3, fill="0", shortest=True) 68 input_, precision=10, width=3, fill="0", shortest=True) 73 output = string_ops.as_string(input_, scientific=True, shortest=True) 113 output = string_ops.as_string(input_, shortest=True) 180 output = string_ops.as_string(input_, shortest=True) 204 output = string_ops.as_string(input_, width=3, fill="0", shortest=True) 217 input_, precision=10, width=3, fill="0", shortest=True) 224 output = string_ops.as_string(input_, scientific=True, shortest=True)
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/draft/ |
D | ShortestCanonicalForm.java | 91 String shortest = getShortest(trial, nfc); 92 if (!shortest.equals(nfc)) { 99 … System.out.println("\tShort: " + Utility.hex(shortest) + "\t" + shortest); 240 String shortest = scf.normalize(nfc); in main() local 241 if (!shortest.equals(nfc)) { in main() 242 System.out.println("NFC not shortest: " + shortest + ", " + nfc); in main()
|
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/text/translate/ |
D | LookupTranslator.java | 37 private final int shortest; field in LookupTranslator 67 this.shortest = tmpShortest; in LookupTranslator() 83 for (int i = max; i >= shortest; i--) { in translate()
|
/external/double-conversion/ |
D | BUILD | 51 "test/cctest/gay-shortest.cc", 52 "test/cctest/gay-shortest.h", 53 "test/cctest/gay-shortest-single.cc", 54 "test/cctest/gay-shortest-single.h",
|
/external/tensorflow/tensorflow/core/kernels/ |
D | as_string_op.cc | 39 bool shortest; in AsStringOp() local 46 OP_REQUIRES_OK(ctx, ctx->GetAttr("shortest", &shortest)); in AsStringOp() 58 OP_REQUIRES(ctx, !(scientific || shortest), in AsStringOp() 70 OP_REQUIRES(ctx, !(scientific && shortest), in AsStringOp() 120 if (shortest) { in AsStringOp()
|
D | as_string_op_test.cc | 35 bool shortest = false) { in Init() argument 41 .Attr("shortest", shortest) in Init()
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/ |
D | AsString.pbtxt | 41 name: "shortest" 103 name: "shortest" 166 name: "shortest" 230 name: "shortest" 300 name: "shortest"
|
/external/harfbuzz_ng/src/ |
D | hb-ot-shape-normalize.cc | 125 decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab) in decompose() argument 136 if (shortest && has_a) { in decompose() 146 if (unsigned ret = decompose (c, shortest, a)) { in decompose() 167 decompose_current_character (const hb_ot_shape_normalize_context_t *c, bool shortest) in decompose_current_character() argument 173 if (shortest && c->font->get_nominal_glyph (u, &glyph, c->not_found)) in decompose_current_character() 179 if (decompose (c, shortest, u)) in decompose_current_character() 185 if (!shortest && c->font->get_nominal_glyph (u, &glyph, c->not_found)) in decompose_current_character()
|
/external/double-conversion/test/cctest/ |
D | SConscript | 5 'gay-shortest.cc', 6 'gay-shortest-single.cc',
|
D | CMakeLists.txt | 6 gay-shortest.cc 7 gay-shortest-single.cc
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/ |
D | AsString.pbtxt | 41 name: "shortest" 103 name: "shortest" 166 name: "shortest"
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_AsString.pbtxt | 17 name: "shortest" 19 Use shortest representation (either scientific or standard) for
|
/external/rust/crates/ring/tests/ |
D | rsa_primitive_verify_tests.txt | 18 # Test too large e (2 ** 33 + 1) with shortest allowed n (2048 bits) 25 # Test maximum e (2 ** 33 - 1) with shortest allowed n (2048 bits)
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/ |
D | StringEscapeUtils.java | 226 private final int shortest; field in StringEscapeUtils.LookupTranslator 256 shortest = _shortest; in LookupTranslator() 272 for (int i = max; i >= shortest; i--) { in translate()
|
/external/harfbuzz_ng/docs/ |
D | repacker.md | 90 * Sorting by shortest distance 92 Kahn's algorithm is approximately twice as fast as the shortest distance sort so that is attempted 93 first (only on the first topological sort). If it fails to eliminate overflows then shortest distan… 104 The distance of a node is the sum of all weights along the shortest path from the root to that node 109 The shortest distance to each node is determined using 112 based on the shortest distance to each node. 139 If a graph contains multiple 32 bit offsets then the shortest distance sorting will be likely be 141 to a subgraph which are not connected to each other. The shortest distance sort will interleave the 154 Where the links from a to b and a to c are 32 bit offsets, the shortest distance sort would be:
|
/external/ltp/testcases/realtime/func/sched_jitter/ |
D | README | 7 execution time - the shortest execution time).
|
/external/zstd/tests/ |
D | Makefile | 289 .PHONY: shortest 290 shortest: ZSTDRTTEST= # remove long tests target 291 shortest: test-zstd target 294 check: shortest
|
/external/zstd/ |
D | Makefile | 89 .PHONY: shortest 90 shortest: target 95 check: shortest
|
/external/rust/crates/rayon/ |
D | FAQ.md | 207 to find the shortest route. To avoid fruitless search, you might want 208 to keep a cell with the shortest route you've found thus far. This 210 this shortest route, you can just stop and avoid wasted effort. In
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.dtypes.pbtxt | 117 …argspec: "args=[\'input\', \'precision\', \'scientific\', \'shortest\', \'width\', \'fill\', \'nam…
|
D | tensorflow.strings.pbtxt | 5 …argspec: "args=[\'input\', \'precision\', \'scientific\', \'shortest\', \'width\', \'fill\', \'nam…
|
/external/python/cpython3/Doc/library/ |
D | email.charset.rst | 63 ``Charset.SHORTEST`` for the shortest of QP or BASE64 encoding. Otherwise, 180 ``Charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding,
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.strings.pbtxt | 5 …argspec: "args=[\'input\', \'precision\', \'scientific\', \'shortest\', \'width\', \'fill\', \'nam…
|