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

1 2 3 4 5 6 7 8 91011>>

  /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/ltp/testcases/realtime/func/sched_jitter/
README 7 execution time - the shortest execution time).
  /external/v8/src/
dtoa.h 14 // Return the shortest correct representation.
35 // - SHORTEST: produce the least amount of digits for which the internal
49 // shortest representation of the input.
56 // and a terminating null-character. In SHORTEST-mode it expects a buffer of
bignum-dtoa.h 14 // Return the shortest correct representation.
33 // - SHORTEST: produce the least amount of digits for which the internal
fast-dtoa.h 14 // Computes the shortest representation of the given input. The returned
40 // The digits in the buffer are the shortest representation possible. E.g.
  /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...]
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
charset.py 25 SHORTEST = 3 # the shorter of QP and base64, but only for headers
62 'utf-8': (SHORTEST, BASE64, 'utf-8'),
118 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for
119 the shortest of qp or base64 encoding, or None for no encoding. SHORTEST
134 if body_enc == SHORTEST:
135 raise ValueError('SHORTEST not allowed for body_enc')
182 base64 encoding), or Charset.SHORTEST for the shortest of
187 header encoding. Charset.SHORTEST is not allowed for
    [all...]
  /external/python/cpython2/Lib/email/
charset.py 25 SHORTEST = 3 # the shorter of QP and base64, but only for headers
62 'utf-8': (SHORTEST, BASE64, 'utf-8'),
118 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for
119 the shortest of qp or base64 encoding, or None for no encoding. SHORTEST
134 if body_enc == SHORTEST:
135 raise ValueError('SHORTEST not allowed for body_enc')
182 base64 encoding), or Charset.SHORTEST for the shortest of
187 header encoding. Charset.SHORTEST is not allowed fo
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
charset.py 25 SHORTEST = 3 # the shorter of QP and base64, but only for headers
62 'utf-8': (SHORTEST, BASE64, 'utf-8'),
118 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for
119 the shortest of qp or base64 encoding, or None for no encoding. SHORTEST
134 if body_enc == SHORTEST:
135 raise ValueError('SHORTEST not allowed for body_enc')
182 base64 encoding), or Charset.SHORTEST for the shortest of
187 header encoding. Charset.SHORTEST is not allowed fo
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
charset.py 25 SHORTEST = 3 # the shorter of QP and base64, but only for headers
62 'utf-8': (SHORTEST, BASE64, 'utf-8'),
118 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for
119 the shortest of qp or base64 encoding, or None for no encoding. SHORTEST
134 if body_enc == SHORTEST:
135 raise ValueError('SHORTEST not allowed for body_enc')
182 base64 encoding), or Charset.SHORTEST for the shortest of
187 header encoding. Charset.SHORTEST is not allowed fo
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
charset.py 25 SHORTEST = 3 # the shorter of QP and base64, but only for headers
62 'utf-8': (SHORTEST, BASE64, 'utf-8'),
118 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for
119 the shortest of qp or base64 encoding, or None for no encoding. SHORTEST
134 if body_enc == SHORTEST:
135 raise ValueError('SHORTEST not allowed for body_enc')
182 base64 encoding), or Charset.SHORTEST for the shortest of
187 header encoding. Charset.SHORTEST is not allowed fo
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
charset.py 25 SHORTEST = 3 # the shorter of QP and base64, but only for headers
62 'utf-8': (SHORTEST, BASE64, 'utf-8'),
118 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for
119 the shortest of qp or base64 encoding, or None for no encoding. SHORTEST
134 if body_enc == SHORTEST:
135 raise ValueError('SHORTEST not allowed for body_enc')
182 base64 encoding), or Charset.SHORTEST for the shortest of
187 header encoding. Charset.SHORTEST is not allowed fo
    [all...]
  /external/strace/
count.c 49 static struct timeval shortest = { 1000000, 0 }; variable in typeref:struct:timeval
94 if (tv_cmp(&shortest, &one_tick) < 0)
95 tv = &shortest;
100 if (tv_cmp(tv, &shortest) < 0)
101 shortest = *tv;
175 tv_mul(&overhead, &shortest, 8);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_map.py 19 soon as the shortest argument is exhausted.
83 "now truncates to the shortest sequence")
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_map.py 19 soon as the shortest argument is exhausted.
83 "now truncates to the shortest sequence")
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_map.py 19 soon as the shortest argument is exhausted.
83 "now truncates to the shortest sequence")
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_map.py 19 soon as the shortest argument is exhausted.
83 "now truncates to the shortest sequence")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_map.py 19 soon as the shortest argument is exhausted.
83 "now truncates to the shortest sequence")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_map.py 19 soon as the shortest argument is exhausted.
83 "now truncates to the shortest sequence")
  /external/autotest/server/site_tests/network_WiFi_SimpleConnect/
control.wifi_checkSSIDLimits 17 longest and shortest possible SSIDs.
  /external/fonttools/Lib/fontTools/misc/
fixedTools.py 14 that has the shortest decimal reprentation. Eg. to convert a
  /external/syslinux/efi32/include/efi/
efiui.h 22 Thus the shortest possible EFI_UI_PROTOCOL has three UI_STRING_ENTRY.

Completed in 1139 milliseconds

1 2 3 4 5 6 7 8 91011>>