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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-bound1.s 1 ; Some simple bound operands, but no memory operands.
3 bound.b r3,r7
4 bound.w r8,r1
5 bound.d r11,r3
6 bound.b 0x42,r2
7 bound.w 4200,r0
8 bound.d 4200042,r5
bound-err-1.s 4 ; Memory operand for bound didn't make it to v32. Check that
6 bound.b [r3],r7 ; { dg-error "operands" }
7 bound.w [r8+],r1 ; { dg-error "operands" }
8 bound.d [r11],r3 ; { dg-error "operands" }
rd-bound1.d 6 [ ]+0:[ ]+c375[ ]+bound\.b r3,r7
7 [ ]+2:[ ]+d815[ ]+bound\.w r8,r1
8 [ ]+4:[ ]+eb35[ ]+bound\.d r11,r3
9 [ ]+6:[ ]+cf2d 4200[ ]+bound\.b 0x42,r2
10 [ ]+a:[ ]+df0d 6810[ ]+bound\.w 0x1068,r0
11 [ ]+e:[ ]+ef5d 6a16 4000[ ]+bound\.d 40166a <x\+0x40166a>,r5
rd-bound2.d 10 [ ]+0:[ ]+c375[ ]+bound\.b r3,r7
11 [ ]+2:[ ]+d815[ ]+bound\.w r8,r1
12 [ ]+4:[ ]+eb35[ ]+bound\.d r11,r3
13 [ ]+6:[ ]+cf2d 4200[ ]+bound\.b 0x42,r2
14 [ ]+a:[ ]+df0d 6810[ ]+bound\.w 0x1068,r0
15 [ ]+e:[ ]+ef5d 6a16 4000[ ]+bound.d 40166a <x\+0x40166a>,r5
rd-bound3.d 2 #source: bound-err-1.s
5 # A bound insn with a memory operand is an error for v32, but is
11 [ ]+0:[ ]+c379[ ]+bound\.b \[r3\],r7
12 [ ]+2:[ ]+d81d[ ]+bound\.w \[r8\+\],r1
13 [ ]+4:[ ]+eb39[ ]+bound\.d \[r11\],r3
rd-bound4.d 5 # Bound with register and immediate are part of the common
13 [ ]+0:[ ]+c375[ ]+bound\.b r3,r7
14 [ ]+2:[ ]+d815[ ]+bound\.w r8,r1
15 [ ]+4:[ ]+eb35[ ]+bound\.d r11,r3
16 [ ]+6:[ ]+cf2d 4200[ ]+bound\.b 0x42,r2
17 [ ]+a:[ ]+df0d 6810[ ]+bound\.w 0x1068,r0
18 [ ]+e:[ ]+ef5d 6a16 4000[ ]+bound.d 40166a <x\+0x40166a>,r5
  /external/bison/lib/
getdtablesize.c 71 The number N can also be obtained as the upper bound for
77 unsigned int bound; local
78 for (bound = 0x10000; _setmaxstdio (bound) < 0; bound = bound / 2)
81 dtablesize = bound;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
EstimatedParameter.java 25 * a bound flag. The value of bound parameters is considered trusted
49 /** Indicator for bound parameters
52 private boolean bound; field in class:EstimatedParameter
63 bound = false;
68 * bound flag
71 * @param bound flag, should be true if the parameter is bound
75 boolean bound) {
78 this.bound = bound
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalRandomTest.java 40 // max sampled int bound
43 // max sampled long bound
130 for (int bound : new int[] { 0, -17, Integer.MIN_VALUE }) {
132 rnd.nextInt(bound);
139 * nextInt(least >= bound) throws IllegalArgumentException
157 * nextInt(bound) returns 0 <= value < bound;
161 // sample bound space across prime number increments
162 for (int bound = 2; bound < MAX_INT_BOUND; bound += 524959)
    [all...]
ThreadLocalRandom8Test.java 28 // max sampled int bound
31 // max sampled long bound
125 for (int bound = least + 2; bound > least && bound < MAX_INT_BOUND; bound += 67867967) {
126 final int lo = least, hi = bound;
144 for (long bound = least + 2; bound > least && bound < MAX_LONG_BOUND; bound += Math.abs(bound * 7919))
    [all...]
  /libcore/ojluni/src/main/java/java/util/
SplittableRandom.java 224 static final String BAD_BOUND = "bound must be positive";
225 static final String BAD_RANGE = "bound must be greater than origin";
252 * the public nextX(origin, bound) methods. These exist mainly to
259 * origin is greater than bound, acts as unbounded form of
262 * @param origin the least value, unless greater than bound
263 * @param bound the upper bound (exclusive), must not equal origin
266 final long internalNextLong(long origin, long bound) {
277 * when the implicit nextLong() bound (2<sup>64</sup>) is not
281 * varies from 1 to 2, depending on the bound. The loop itsel
837 final int bound; field in class:SplittableRandom.RandomIntsSpliterator
893 final long bound; field in class:SplittableRandom.RandomLongsSpliterator
950 final double bound; field in class:SplittableRandom.RandomDoublesSpliterator
    [all...]
Random.java 95 static final String BadBound = "bound must be positive";
96 static final String BadRange = "bound must be greater than origin";
237 * origin is greater than bound, acts as unbounded form of
240 * @param origin the least value, unless greater than bound
241 * @param bound the upper bound (exclusive), must not equal origin
244 final long internalNextLong(long origin, long bound) {
246 if (origin < bound) {
247 long n = bound - origin, m = n - 1;
258 while (r < origin || r >= bound)
1007 final int bound; field in class:Random.RandomIntsSpliterator
1062 final long bound; field in class:Random.RandomLongsSpliterator
1118 final double bound; field in class:Random.RandomDoublesSpliterator
    [all...]
  /external/v8/test/mjsunit/
function-bind-name.js 7 assertEquals('bound f', fb.name);
11 assertEquals('bound ', fb2.name);
15 assertEquals('bound g', gb.name);
16 assertEquals('bound f', fb.name);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
x86-64-opcode-inval.s 15 bound: label
16 bound %edx,(%eax)
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 174 * origin is greater than bound, acts as unbounded form of
177 * @param origin the least value, unless greater than bound
178 * @param bound the upper bound (exclusive), must not equal origin
181 final long internalNextLong(long origin, long bound) {
183 if (origin < bound) {
184 long n = bound - origin, m = n - 1;
195 while (r < origin || r >= bound)
206 * @param origin the least value, unless greater than bound
207 * @param bound the upper bound (exclusive), must not equal origi
715 final int bound; field in class:ThreadLocalRandom.RandomIntsSpliterator
770 final long bound; field in class:ThreadLocalRandom.RandomLongsSpliterator
826 final double bound; field in class:ThreadLocalRandom.RandomDoublesSpliterator
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
RangeDecoder.java 26 int bound = (range >>> BIT_MODEL_TOTAL_BITS) * prob; local
29 // Compare code and bound as if they were unsigned 32-bit integers.
30 if ((code ^ 0x80000000) < (bound ^ 0x80000000)) {
31 range = bound;
36 range -= bound;
37 code -= bound;
  /cts/tests/tests/permission/src/android/permission/cts/
AppWidgetManagerPermissionTest.java 54 final boolean bound = mAppWidgetManager.bindAppWidgetIdIfAllowed(1,
56 assertFalse("Was able to call bindAppWidgetId", bound);
  /libcore/luni/src/test/java/libcore/java/util/
RandomTest.java 79 final int origin = 128, bound = 256; local
84 rands[i] = rand.nextInt(bound - origin) + origin;
87 int[] streamRands = new Random(0).ints(origin, bound).limit(limit).toArray();
98 final int origin = 128, bound = 256; local
103 rands[i] = rand.nextInt(bound - origin) + origin;
106 int[] streamRands = new Random(0).ints(size, origin, bound).toArray();
108 assertEquals(size, new Random(0).ints(size, origin, bound).count());
154 final int origin = 128, bound = 256; local
162 long[] streamRands = new Random(0).longs(origin, bound).limit(limit).toArray();
173 final int origin = 128, bound = 256 local
229 final int origin = 128, bound = 256; local
252 final int origin = 128, bound = 256; local
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 30 Chunk() : next(NULL), bound(0) {}
44 size_t bound; member in class:mcld::Chunk
54 Chunk() : next(NULL), bound(0) {
80 size_t bound; member in class:mcld::Chunk
146 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
150 result = m_pCurrent->data + m_pCurrent->bound;
151 m_pCurrent->bound += N;
161 if (chunk_type::size() == m_pCurrent->bound)
163 result = m_pCurrent->data + m_pCurrent->bound;
164 ++m_pCurrent->bound;
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 44 private final static Object bound = new Object(); field in class:HttpURLConnectionTest
64 synchronized (bound) {
66 bound.notify();
166 synchronized(bound) {
168 bound.wait(5000);
201 synchronized(bound) {
202 if (!server.started) bound.wait(5000);
205 synchronized(bound) {
206 if (!proxy.started) bound.wait(5000);
246 synchronized(bound) {
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
fisheye.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
fisheye_approx.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
fisheye.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
fisheye_approx.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
fisheye.rsh 38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;

Completed in 535 milliseconds

1 2 3 4 5 6 7 8 91011>>