HomeSort by relevance Sort by last modified time
    Searched refs:shortest (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /build/kati/testcase/
implicit_pattern_rule_prefix.mk 7 # GNU make 3 does not prioritize the rule with a shortest stem.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
Timer.java 99 // Once we get to within 1/4 of the timingPeriod, we change to adding 33%, plus 1. We also remember the shortest duration from this point on.
100 // We return the shortest of the durations.
107 long shortest = Long.MAX_VALUE; local
115 return Math.min(duration, shortest);
118 shortest = Math.min(duration, shortest);
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
Timer.java 98 // Once we get to within 1/4 of the timingPeriod, we change to adding 33%, plus 1. We also remember the shortest duration from this point on.
99 // We return the shortest of the durations.
106 long shortest = Long.MAX_VALUE; local
114 return Math.min(duration, shortest);
117 shortest = Math.min(duration, shortest);
  /external/strace/
count.c 48 static struct timeval shortest = { 1000000, 0 }; variable in typeref:struct:timeval
93 if (tv_cmp(&shortest, &one_tick) < 0)
94 tv = &shortest;
99 if (tv_cmp(tv, &shortest) < 0)
100 shortest = *tv;
174 tv_mul(&overhead, &shortest, 8);
  /external/harfbuzz_ng/src/
hb-ot-shape-normalize.cc 120 decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab)
131 if (shortest && has_a) {
142 if ((ret = decompose (c, shortest, a))) {
163 decompose_current_character (const hb_ot_shape_normalize_context_t *c, bool shortest)
169 if (shortest && c->font->get_nominal_glyph (u, &glyph))
175 if (decompose (c, shortest, u))
181 if (!shortest && c->font->get_nominal_glyph (u, &glyph))
  /prebuilts/go/darwin-x86/src/strconv/
ftoa.go 108 shortest := prec < 0
109 if shortest {
119 // Precision for shortest representation mode.
151 return formatDigits(dst, shortest, neg, digs, prec, fmt)
160 shortest := prec < 0
161 if shortest {
164 // Precision for shortest representation mode.
188 return formatDigits(dst, shortest, neg, digs, prec, fmt)
191 func formatDigits(dst []byte, shortest bool, neg bool, digs decimalSlice, prec int, fmt byte) []byte {
205 // if precision was the shortest possible, use precision 6 for this decision
    [all...]
extfloat.go 528 // ShortestDecimal stores in d the shortest decimal representation of f
580 // The shortest representation of f is either rounded up or down, but
  /prebuilts/go/linux-x86/src/strconv/
ftoa.go 108 shortest := prec < 0
109 if shortest {
119 // Precision for shortest representation mode.
151 return formatDigits(dst, shortest, neg, digs, prec, fmt)
160 shortest := prec < 0
161 if shortest {
164 // Precision for shortest representation mode.
188 return formatDigits(dst, shortest, neg, digs, prec, fmt)
191 func formatDigits(dst []byte, shortest bool, neg bool, digs decimalSlice, prec int, fmt byte) []byte {
205 // if precision was the shortest possible, use precision 6 for this decision
    [all...]
extfloat.go 528 // ShortestDecimal stores in d the shortest decimal representation of f
580 // The shortest representation of f is either rounded up or down, but
  /frameworks/base/core/java/com/android/internal/policy/
PipSnapAlgorithm.java 333 int shortest; local
336 shortest = (mOrientation == Configuration.ORIENTATION_LANDSCAPE)
340 shortest = Math.min(Math.min(fromLeft, fromRight), Math.min(fromTop, fromBottom));
342 if (shortest == fromLeft) {
344 } else if (shortest == fromTop) {
346 } else if (shortest == fromRight) {
  /prebuilts/go/darwin-x86/src/math/big/
ftoa.go 94 shortest := false
96 shortest = true
98 // Precision for shortest representation mode.
138 // If precision was the shortest possible, use eprec = 6 for
140 if shortest {
172 // shortest decimal number d such that lower <= d <= upper.
floatconv_test.go 301 // When formatting values with prec = -1 (shortest representation),
  /prebuilts/go/linux-x86/src/math/big/
ftoa.go 94 shortest := false
96 shortest = true
98 // Precision for shortest representation mode.
138 // If precision was the shortest possible, use eprec = 6 for
140 if shortest {
172 // shortest decimal number d such that lower <= d <= upper.
floatconv_test.go 301 // When formatting values with prec = -1 (shortest representation),
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
bundle.s 104 # to its shortest form, and one that must use the long form.
x86-64-bundle.s 108 # to its shortest form, and one that must use the long form.
  /prebuilts/go/darwin-x86/src/net/
dnsconfig_unix_test.go 213 // Test a name that will be maximally long when prefixing the shortest
  /prebuilts/go/darwin-x86/src/unicode/utf8/
utf8.go 151 // out of range, or is not the shortest possible UTF-8 encoding for the
199 // out of range, or is not the shortest possible UTF-8 encoding for the
247 // out of range, or is not the shortest possible UTF-8 encoding for the
287 // out of range, or is not the shortest possible UTF-8 encoding for the
  /prebuilts/go/linux-x86/src/net/
dnsconfig_unix_test.go 213 // Test a name that will be maximally long when prefixing the shortest
  /prebuilts/go/linux-x86/src/unicode/utf8/
utf8.go 151 // out of range, or is not the shortest possible UTF-8 encoding for the
199 // out of range, or is not the shortest possible UTF-8 encoding for the
247 // out of range, or is not the shortest possible UTF-8 encoding for the
287 // out of range, or is not the shortest possible UTF-8 encoding for the
  /prebuilts/go/darwin-x86/src/cmd/go/
list.go 94 ImportStack []string // shortest path from package named on command line to this one
  /prebuilts/go/darwin-x86/src/path/
path.go 52 // Clean returns the shortest path name equivalent to path
  /prebuilts/go/linux-x86/src/cmd/go/
list.go 94 ImportStack []string // shortest path from package named on command line to this one
  /prebuilts/go/linux-x86/src/path/
path.go 52 // Clean returns the shortest path name equivalent to path
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
subr.go     [all...]

Completed in 1113 milliseconds

1 2 3 4 5 6