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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
RandomData.java 46 * <code>lower</code> and <code>upper</code> (endpoints included).
53 * <li><code>lower < upper</code> (otherwise an IllegalArgumentException
58 * @param upper upper bound for generated integer
60 * and less than or equal to <code>upper</code>.
62 int nextInt(int lower, int upper);
66 * <code>lower</code> and <code>upper</code> (endpoints included).
74 * <li><code>lower < upper</code> (otherwise an IllegalArgumentException
79 * @param upper upper bound for generated intege
    [all...]
RandomDataImpl.java 190 * <code>lower</code> and <code>upper</code>, inclusive.
194 * @param upper
195 * the upper bound.
197 * @throws NumberIsTooLargeException if {@code lower >= upper}.
199 public int nextInt(int lower, int upper) {
200 if (lower >= upper) {
202 lower, upper, false);
205 return (int) ((r * upper) + ((1.0 - r) * lower) + r);
210 * <code>lower</code> and <code>upper</code>, inclusive.
214 * @param upper
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
ArgumentOutsideDomainException.java 38 * @param upper upper bound of the domain
40 public ArgumentOutsideDomainException(double argument, double lower, double upper) {
41 super(argument, LocalizedFormats.ARGUMENT_OUTSIDE_DOMAIN, argument, lower, upper);
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/command/
bound_registers.py 26 upper = self.val["ubound"]
28 size = (long) ((upper) - (lower))
31 result = '{lbound = %s, ubound = %s} : size %s' % (lower, upper, size)
  /external/chromium-libpac/test/
jstocstring.pl 16 $upper = uc();
17 print FILE "#define $upper \\\n";
  /external/icu/icu4c/source/samples/case/
ucase.c 25 static const UChar upper[] = {0x61, 0x42, 0x49, 0}; /* upper = "aBI" */ local
50 length = u_strToLower(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
51 sizeof(upper)/sizeof(upper[0]), "tr", &errorCode);
57 u_fprintf(out, "u_strToLower(%S, turkish) -> %S\n", upper, buffer);
63 length = u_strToUpper(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
64 sizeof(upper)/sizeof(upper[0]), "en", &errorCode);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
UnivariateRealSolverImpl.java 147 * @param max the upper bound for the interval.
170 * @param max the upper bound for the interval.
225 * @param upper the upper endpoint
227 * @return true if f(lower) * f(upper) < 0
230 protected boolean isBracketing(final double lower, final double upper,
234 final double f2 = function.value(upper);
255 * @param upper upper endpoint
258 protected void verifyInterval(final double lower, final double upper) {
    [all...]
  /frameworks/base/core/java/android/util/
Range.java 44 * The endpoints are {@code [lower, upper]}; that
46 * to {@code upper}.
50 * @param upper The upper endpoint (inclusive)
52 * @throws NullPointerException if {@code lower} or {@code upper} is {@code null}
54 public Range(final T lower, final T upper) {
56 mUpper = checkNotNull(upper, "upper must not be null");
58 if (lower.compareTo(upper) > 0) {
59 throw new IllegalArgumentException("lower must be less than or equal to upper");
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 169 * @param upper the upper endpoint of the inclusive range
176 public static float checkArgumentInRange(float value, float lower, float upper,
183 "%s is out of range of [%f, %f] (too low)", valueName, lower, upper));
184 } else if (value > upper) {
187 "%s is out of range of [%f, %f] (too high)", valueName, lower, upper));
198 * @param upper the upper endpoint of the inclusive range
205 public static int checkArgumentInRange(int value, int lower, int upper,
210 "%s is out of range of [%d, %d] (too low)", valueName, lower, upper));
    [all...]
  /external/bison/lib/
c-strcaseeq.h 34 # define CASEEQ(other,upper) \
35 (c_isupper (upper) ? ((other) & ~0x20) == (upper) : (other) == (upper))
37 # define CASEEQ(other,upper) \
38 (c_isupper (upper) ? (other) == (upper) || (other) == (upper) - 'A' + 'a' : (other) == (upper))
40 # define CASEEQ(other,upper) \
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
ctype_base.h 50 static const mask upper = 1 << 0; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
ctype_base.h 50 static const mask upper = 1 << 0; member in struct:ctype_base
  /external/google-breakpad/src/processor/
binarystream.cc 80 uint32_t lower, upper; local
81 *this >> lower >> upper; local
83 u64 = static_cast<uint64_t>(lower) | (static_cast<uint64_t>(upper) << 32);
119 uint32_t upper = static_cast<uint32_t>(u64 >> 32); local
120 *this << lower << upper; local
  /external/guava/guava/src/com/google/common/collect/
SortedLists.java 70 int upper = list.size() - 1; local
71 // Everything between lower and upper inclusive compares at >= 0.
72 while (lower < upper) {
73 int middle = (lower + upper + 1) >>> 1;
76 upper = middle - 1;
94 int upper = foundIndex; local
96 // Everything between lower and upper inclusive compares at <= 0.
97 while (lower < upper) {
98 int middle = (lower + upper) >>> 1;
103 upper = middle
268 int upper = list.size() - 1; local
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
StringCaseMappingBenchmark.java 31 UPPER2(upper(2)), enum constant in enum:StringCaseMappingBenchmark.Inputs
35 UPPER8(upper(8)), enum constant in enum:StringCaseMappingBenchmark.Inputs
39 UPPER32(upper(32)), enum constant in enum:StringCaseMappingBenchmark.Inputs
43 UPPER512(upper(512)), enum constant in enum:StringCaseMappingBenchmark.Inputs
47 UPPER2048(upper(2048)), enum constant in enum:StringCaseMappingBenchmark.Inputs
51 UPPER_1M(upper(1024*1024)), enum constant in enum:StringCaseMappingBenchmark.Inputs
59 private static String upper(int length) { method in class:StringCaseMappingBenchmark.Inputs
146 // slow path: s contains upper case chars
  /external/icu/icu4c/source/i18n/
collationweights.cpp 219 printf("length of upper limit 0x%08lx is %ld\n", upperLimit, upperLength);
222 // Permit upperLength<middleLength: The upper limit for secondaries is 0x10000.
226 printf("error: no space between lower & upper limits\n");
235 printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit);
240 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */
242 WeightRange lower[5], middle, upper[5]; /* [0] and [1] are not used - this simplifies indexing */ local
245 uprv_memset(upper, 0, sizeof(upper));
254 * upper[2] 2
255 * upper[3]
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
is_1.pass.cpp 41 assert(f.is(F::upper, L'A'));
42 assert(!f.is(F::upper, L'a'));
66 assert(f.is(F::upper, L'\x00DA'));
84 assert(f.is(F::upper, L'A'));
85 assert(!f.is(F::upper, L'a'));
109 assert(!f.is(F::upper, L'\x00DA'));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
is_1.pass.cpp 39 assert(f.is(F::upper, L'A'));
40 assert(!f.is(F::upper, L'a'));
64 assert(f.is(F::upper, L'\x00DA'));
82 assert(f.is(F::upper, L'A'));
83 assert(!f.is(F::upper, L'a'));
107 assert(!f.is(F::upper, L'\x00DA'));

Completed in 1486 milliseconds

1 2 3 4 5 6 7 8 91011>>