HomeSort by relevance Sort by last modified time
    Searched full:bound (Results 1 - 25 of 5160) 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
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
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-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
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
  /art/test/987-agent-bind/
info.txt 1 Tests that native methods are bound from agent libs.
  /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...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7525.go 14 a [unsafe.Sizeof(x.a)]int // ERROR "array bound|typechecking loop|invalid expression"
15 b [unsafe.Offsetof(x.b)]int // ERROR "array bound"
16 c [unsafe.Alignof(x.c)]int // ERROR "array bound|invalid expression"
17 d [len(x.d)]int // ERROR "array bound|invalid array"
18 e [cap(x.e)]int // ERROR "array bound|invalid array"
issue5609.go 13 var foo [Large]uint64 // ERROR "array bound is too large|array bound overflows"
bug255.go 12 var d ["abc"]int // ERROR "invalid array bound|not numeric"
13 var e [nil]int // ERROR "use of untyped nil|invalid array bound|not numeric"
14 var f [e]int // ERROR "invalid array bound|not constant"
15 var g [1 << 65]int // ERROR "array bound is too large|overflows"
20 var i [len([1]string{ff()})]int // ERROR "non-constant array bound|not constant"
issue13485.go 12 _ [float64(10)]int // ERROR "invalid array bound"
15 _ [complex128(complex(10, 0))]int // ERROR "invalid array bound"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7525.go 14 a [unsafe.Sizeof(x.a)]int // ERROR "array bound|typechecking loop|invalid expression"
15 b [unsafe.Offsetof(x.b)]int // ERROR "array bound"
16 c [unsafe.Alignof(x.c)]int // ERROR "array bound|invalid expression"
17 d [len(x.d)]int // ERROR "array bound|invalid array"
18 e [cap(x.e)]int // ERROR "array bound|invalid array"
issue5609.go 13 var foo [Large]uint64 // ERROR "array bound is too large|array bound overflows"
bug255.go 12 var d ["abc"]int // ERROR "invalid array bound|not numeric"
13 var e [nil]int // ERROR "use of untyped nil|invalid array bound|not numeric"
14 var f [e]int // ERROR "invalid array bound|not constant"
15 var g [1 << 65]int // ERROR "array bound is too large|overflows"
20 var i [len([1]string{ff()})]int // ERROR "non-constant array bound|not constant"
issue13485.go 12 _ [float64(10)]int // ERROR "invalid array bound"
15 _ [complex128(complex(10, 0))]int // ERROR "invalid array bound"
  /external/v8/src/compiler/
loop-variable-optimizer.h 27 struct Bound {
28 Bound(Node* bound, ConstraintKind kind) : bound(bound), kind(kind) {}
30 Node* bound; member in struct:v8::internal::compiler::InductionVariable::Bound
34 const ZoneVector<Bound>& lower_bounds() { return lower_bounds_; }
35 const ZoneVector<Bound>& upper_bounds() { return upper_bounds_; }
52 void AddUpperBound(Node* bound, ConstraintKind kind);
53 void AddLowerBound(Node* bound, ConstraintKind kind)
    [all...]
  /art/test/632-checker-char-at-bounds/
info.txt 2 had its SSA dependency incorrect with its corresponding bound check.
  /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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
x86-64-opcode-inval.s 15 bound: label
16 bound %edx,(%eax)
  /art/test/477-checker-bound-type/
info.txt 1 Tests that we only generate a bound type if we have relevant users.
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
NavigableMapTestSuiteBuilder.java 22 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
65 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
66 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
67 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
68 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.INCLUSIVE));
69 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.INCLUSIVE))
    [all...]
NavigableSetTestSuiteBuilder.java 19 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
57 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
58 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
59 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
60 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.INCLUSIVE));
61 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.INCLUSIVE, Bound.INCLUSIVE))
    [all...]
  /external/clang/test/SemaObjCXX/Inputs/
nullability-pragmas-generics-1.h 20 @interface NSGeneric<T : C *>(Blah) // expected-error{{type bound 'C *' for type parameter 'T' conflicts with previous bound 'B *'}}
  /libcore/ojluni/src/main/java/java/util/
SplittableRandom.java 223 static final String BAD_BOUND = "bound must be positive";
224 static final String BAD_RANGE = "bound must be greater than origin";
251 * the public nextX(origin, bound) methods. These exist mainly to
258 * origin is greater than bound, acts as unbounded form of
261 * @param origin the least value, unless greater than bound
262 * @param bound the upper bound (exclusive), must not equal origin
265 final long internalNextLong(long origin, long bound) {
276 * when the implicit nextLong() bound (2<sup>64</sup>) is not
280 * varies from 1 to 2, depending on the bound. The loop itsel
836 final int bound; field in class:SplittableRandom.RandomIntsSpliterator
892 final long bound; field in class:SplittableRandom.RandomLongsSpliterator
949 final double bound; field in class:SplittableRandom.RandomDoublesSpliterator
    [all...]

Completed in 1330 milliseconds

1 2 3 4 5 6 7 8 91011>>