Searched refs:lower (Results 1 - 25 of 338) sorted by relevance

1234567891011>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DRandomData.java46 * <code>lower</code> and <code>upper</code> (endpoints included).
53 * <li><code>lower < upper</code> (otherwise an IllegalArgumentException
57 * @param lower lower bound for generated integer
59 * @return a random integer greater than or equal to <code>lower</code>
62 int nextInt(int lower, int upper); argument
66 * <code>lower</code> and <code>upper</code> (endpoints included).
74 * <li><code>lower < upper</code> (otherwise an IllegalArgumentException
78 * @param lower lower boun
83 nextLong(long lower, long upper) argument
124 nextSecureInt(int lower, int upper) argument
148 nextSecureLong(long lower, long upper) argument
225 nextUniform(double lower, double upper) argument
[all...]
H A DRandomDataImpl.java190 * <code>lower</code> and <code>upper</code>, inclusive.
192 * @param lower
193 * the lower bound.
197 * @throws NumberIsTooLargeException if {@code lower >= upper}.
199 public int nextInt(int lower, int upper) { argument
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.
212 * @param lower
219 nextLong(long lower, long upper) argument
310 nextSecureInt(int lower, int upper) argument
331 nextSecureLong(long lower, long upper) argument
511 nextUniform(double lower, double upper) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/
H A DArgumentOutsideDomainException.java37 * @param lower lower bound of the domain
40 public ArgumentOutsideDomainException(double argument, double lower, double upper) { argument
41 super(argument, LocalizedFormats.ARGUMENT_OUTSIDE_DOMAIN, argument, lower, upper);
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDGPUMCInstLower.h23 /// lower - Lower a MachineInstr to an MCInst
24 void lower(const MachineInstr *MI, MCInst &OutMI) const;
H A DAMDGPUMCInstLower.cpp10 // This file contains code to lower AMDGPU MachineInstrs to their corresponding
30 void AMDGPUMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:AMDGPUMCInstLower
73 MCInstLowering.lower(BundledInst, MCBundleInst);
79 MCInstLowering.lower(MI, TmpInst);
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
H A Dheaders.py16 key = key.lower()
18 if k.lower() == key:
23 key = key.lower()
26 if k.lower() == key:
40 r.setdefault(key.lower(), []).append(val)
44 norm_key = key.lower()
47 if items[i][0].lower() == norm_key:
52 key = key.lower()
56 if items[i][0].lower() == key:
63 key = key.lower()
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DUnivariateRealSolverImpl.java146 * @param min the lower bound for the interval.
169 * @param min the lower bound for the interval.
224 * @param lower the lower endpoint
227 * @return true if f(lower) * f(upper) < 0
230 protected boolean isBracketing(final double lower, final double upper, argument
233 final double f1 = function.value(lower);
254 * @param lower lower endpoint
258 protected void verifyInterval(final double lower, fina argument
275 verifySequence(final double lower, final double initial, final double upper) argument
293 verifyBracketing(final double lower, final double upper, final UnivariateRealFunction function) argument
[all...]
/external/libcxx/test/libcxx/test/
H A Dtarget_info.py24 platform_name = sys.platform.lower().strip()
36 name = name.lower().strip()
44 ver = ver.lower().strip()
/external/guava/guava/src/com/google/common/collect/
H A DSortedLists.java69 int lower = foundIndex;
71 // Everything between lower and upper inclusive compares at >= 0.
72 while (lower < upper) {
73 int middle = (lower + upper + 1) >>> 1;
78 lower = middle;
81 return lower;
93 int lower = 0;
96 // Everything between lower and upper inclusive compares at <= 0.
97 while (lower < upper) {
98 int middle = (lower
[all...]
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcTargetStreamer.cpp31 << "%" << StringRef(SparcInstPrinter::getRegisterName(reg)).lower()
37 << "%" << StringRef(SparcInstPrinter::getRegisterName(reg)).lower()
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/
H A Dsetup.py27 if 'java' in _sys.platform.lower():
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/
H A Dsetup.py27 if 'java' in _sys.platform.lower():
/external/llvm/lib/Target/R600/
H A DAMDGPUMCInstLower.h29 void lower(const MachineInstr *MI, MCInst &OutMI) const;
/external/google-breakpad/src/processor/
H A Dbinarystream.cc80 uint32_t lower, upper; local
81 *this >> lower >> upper;
83 u64 = static_cast<uint64_t>(lower) | (static_cast<uint64_t>(upper) << 32);
118 uint32_t lower = static_cast<uint32_t>(u64 & 0xFFFFFFFF); local
120 *this << lower << upper;
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Dresponse.py57 return str(key).lower().strip()
92 name = name.lower()
94 if header.lower() == name:
114 name = name.lower()
116 if header.lower() == name]
128 name = name.lower()
132 if headers[i][0].lower() == name:
150 name = name.lower()
154 if headers[i][0].lower() == name:
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Dfinddata.py62 or fn.lower() == pattern.lower()):
84 or fn.lower() == pattern.lower()):
H A Dconverters.py9 obj = obj.strip().lower()
/external/lldb/test/unittest2/
H A Dcompatibility.py22 if start_list[0].lower() != path_list[0].lower():
33 if start_list[i].lower() != path_list[i].lower():
/external/icu/icu4c/source/i18n/
H A Dcollationweights.cpp123 // We use only the lower 16 bits for secondary weights.
137 // We use only the lower 16 bits for tertiary weights.
218 printf("length of lower limit 0x%08lx is %ld\n", lowerLimit, lowerLength);
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
243 uprv_memset(lower, 0, sizeof(lower));
250 * lower[
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationWeights.java43 // We use only the lower 16 bits for secondary weights.
56 // We use only the lower 16 bits for tertiary weights.
293 // printf("length of lower limit 0x%08lx is %ld\n", lowerLimit, lowerLength);
299 // printf("error: no space between lower & upper limits\n");
306 // printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit);
310 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */
312 WeightRange[] lower = new WeightRange[5]; /* [0] and [1] are not used - this simplifies indexing */
319 * lower[4] 4
320 * lower[3] 3
321 * lower[
[all...]
/external/elfutils/src/libdw/
H A Ddwarf_aggregate_size.c83 Dwarf_Sword lower; local
93 if (INTUSE(dwarf_formsdata) (attr_mem, &lower) != 0)
98 /* Determine default lower bound from language,
116 lower = 0;
129 lower = 1;
136 if (unlikely (lower > upper))
138 count = upper - lower + 1;
/external/mesa3d/src/glsl/
H A Dlower_jumps.cpp72 * lower strength. Accordingly, strength is used as a heuristic to
264 * Note that visiting a jump does not lower it. That is the
308 * Insert the instructions necessary to lower a return statement,
329 * If the given instruction is a return, lower it to instructions
357 * If the given instruction is a break, lower it to an instruction
372 * If the block ends in a conditional or unconditional break, lower
462 bool lower; local
466 lower = false; /* don't change this, code relies on it */
469 lower = lower_continue;
473 /* never lower "canonica
608 int lower; local
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
H A DUnivariateRealIntegratorImpl.java158 * @param lower lower endpoint
162 protected void verifyInterval(double lower, double upper) throws argument
164 if (lower >= upper) {
167 lower, upper);
172 * Verifies that the upper and lower limits of iterations are valid.
/external/libcxx/test/std/localization/locale.categories/category.ctype/
H A Dctype_base.pass.cpp27 // static const mask lower = 1 << 4;
48 assert(std::ctype_base::lower);
58 & std::ctype_base::lower
70 test(std::ctype_base::lower);
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py3/
H A Dutil.py61 return _util.strtobool(str(value).strip().lower() or 'no')

Completed in 738 milliseconds

1234567891011>>