Home
last modified time | relevance | path

Searched refs:shortest (Results 1 – 25 of 148) sorted by relevance

123456

/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
DTimer.java106 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/icu/android_icu4j/src/main/tests/android/icu/dev/util/
DTimer.java109 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/tensorflow/tensorflow/python/kernel_tests/
Das_string_op_test.py41 output = string_ops.as_string(input_, shortest=True)
62 output = string_ops.as_string(input_, width=3, fill="0", shortest=True)
71 input_, precision=10, width=3, fill="0", shortest=True)
76 output = string_ops.as_string(input_, scientific=True, shortest=True)
111 output = string_ops.as_string(input_, shortest=True)
176 output = string_ops.as_string(input_, shortest=True)
200 output = string_ops.as_string(input_, width=3, fill="0", shortest=True)
213 input_, precision=10, width=3, fill="0", shortest=True)
220 output = string_ops.as_string(input_, scientific=True, shortest=True)
/external/tensorflow/tensorflow/core/kernels/
Das_string_op.cc39 bool shortest; in AsStringOp() local
46 OP_REQUIRES_OK(ctx, ctx->GetAttr("shortest", &shortest)); in AsStringOp()
56 OP_REQUIRES(ctx, !(scientific || shortest), in AsStringOp()
68 OP_REQUIRES(ctx, !(scientific && shortest), in AsStringOp()
108 if (shortest) { in AsStringOp()
Das_string_op_test.cc35 bool shortest = false) { in Init() argument
41 .Attr("shortest", shortest) in Init()
/external/cldr/tools/java/org/unicode/cldr/draft/
DShortestCanonicalForm.java91 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/harfbuzz_ng/src/
Dhb-ot-shape-normalize.cc124 decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab) in decompose() argument
135 if (shortest && has_a) { in decompose()
146 if ((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)) in decompose_current_character()
179 if (decompose (c, shortest, u)) in decompose_current_character()
185 if (!shortest && c->font->get_nominal_glyph (u, &glyph)) in decompose_current_character()
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DAsString.pbtxt41 name: "shortest"
103 name: "shortest"
166 name: "shortest"
230 name: "shortest"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DAsString.pbtxt41 name: "shortest"
103 name: "shortest"
166 name: "shortest"
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_AsString.pbtxt17 name: "shortest"
19 Use shortest representation (either scientific or standard) for
/external/rust/crates/ring/tests/
Drsa_primitive_verify_tests.txt18 # 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/
DStringEscapeUtils.java226 private final int shortest; field in StringEscapeUtils.LookupTranslator
256 shortest = _shortest; in LookupTranslator()
272 for (int i = max; i >= shortest; i--) { in translate()
/external/ltp/testcases/realtime/func/sched_jitter/
DREADME7 execution time - the shortest execution time).
/external/llvm-project/mlir/test/mlir-reduce/
Dmultiple-function.mlir4 // the @simple5 function remains as this is the shortest function
/external/zstd/tests/
DMakefile296 .PHONY: shortest
297 shortest: ZSTDRTTEST= # remove long tests target
298 shortest: test-zstd target
301 check: shortest
/external/zstd/
DMakefile89 .PHONY: shortest
90 shortest: target
95 check: shortest
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.dtypes.pbtxt117 …argspec: "args=[\'input\', \'precision\', \'scientific\', \'shortest\', \'width\', \'fill\', \'nam…
Dtensorflow.strings.pbtxt5 …argspec: "args=[\'input\', \'precision\', \'scientific\', \'shortest\', \'width\', \'fill\', \'nam…
/external/llvm-project/lld/docs/
Dgetting_started.rst6 This page gives you the shortest path to checking out and building lld. If you
/external/rust/crates/rayon/
DFAQ.md207 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/perfetto/docs/data-sources/
Djava-heap-profiler.md52 taking the shortest path to the root and get cumulative sizes.
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.strings.pbtxt5 …argspec: "args=[\'input\', \'precision\', \'scientific\', \'shortest\', \'width\', \'fill\', \'nam…
/external/python/cpython3/Doc/library/
Demail.charset.rst63 ``Charset.SHORTEST`` for the shortest of QP or BASE64 encoding. Otherwise,
180 ``Charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding,
/external/python/cpython2/Doc/library/
Demail.charset.rst58 ``Charset.SHORTEST`` for the shortest of QP or BASE64 encoding. Otherwise,
219 ``Charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding,
/external/webrtc/modules/audio_coding/audio_network_adaptor/
Dconfig.proto124 // bitrate for the payload. The chosen frame length is the shortest possible

123456