HomeSort by relevance Sort by last modified time
    Searched refs:range (Results 126 - 150 of 11335) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Edit/
EditsReceiver.h 26 virtual void replace(CharSourceRange range, StringRef text) = 0;
28 virtual void remove(CharSourceRange range);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
armv8_2-a-illegal.l 2 [^:]+:[0-9]+: Error: immediate value out of range 0 to 1 at operand 1 -- `msr uao,#2'
3 [^:]+:[0-9]+: Error: immediate value out of range 0 to 1 at operand 1 -- `msr uao,#3'
4 [^:]+:[0-9]+: Error: immediate value out of range 0 to 1 at operand 1 -- `msr uao,#4'
5 [^:]+:[0-9]+: Error: immediate value out of range 0 to 1 at operand 1 -- `msr uao,#5'
6 [^:]+:[0-9]+: Error: immediate value out of range 0 to 1 at operand 1 -- `msr uao,#8'
7 [^:]+:[0-9]+: Error: immediate value out of range 0 to 1 at operand 1 -- `msr uao,#15'
8 [^:]+:[0-9]+: Error: immediate value out of range 0 to 1 at operand 1 -- `msr uao,#19'
9 [^:]+:[0-9]+: Error: immediate value out of range 0 to 1 at operand 1 -- `msr uao,#31'
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
branch-extern.l 2 .*:5: Warning: relaxed out-of-range branch into a jump
branch-section.l 2 .*:5: Warning: relaxed out-of-range branch into a jump
branch-weak.l 2 .*:6: Warning: relaxed out-of-range branch into a jump
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
pad2p18m32.s 2 * short-range relocs.
pad2p26m32.s 2 * long-range relocs.
  /cts/apps/CameraITS/tests/scene1/
test_param_shading_mode.py 60 reference_maps = [[] for mode in range(3)]
62 for mode in range(1, 3):
78 for i in range(NUM_SHADING_MODE_SWITCH_LOOPS):
79 for mode in range(3):
88 shading_maps = [[[] for loop in range(NUM_SHADING_MODE_SWITCH_LOOPS)]
89 for mode in range(3)]
92 for i in range(len(caps)):
98 for mode in range(3):
99 for i in range(NUM_SHADING_MODE_SWITCH_LOOPS):
101 pylab.plot(range(num_map_gains), shading_maps[mode][i], 'r'
    [all...]
  /external/skia/src/gpu/effects/
GrDitherEffect.fp 8 // This controls the range of values added to color channels
48 half range;
51 range = 1.0 / 255.0;
54 range = 1.0 / 63.0;
58 range = 1.0 / 15.0;
78 sk_OutColor = half4(clamp(sk_InColor.rgb + value * range, 0, sk_InColor.a), sk_InColor.a);
82 float range = testData->fRandom->nextRangeF(0.001f, 0.05f);
83 return std::unique_ptr<GrFragmentProcessor>(new GrDitherEffect(range));
  /external/skqp/src/gpu/effects/
GrDitherEffect.fp 8 // This controls the range of values added to color channels
48 half range;
51 range = 1.0 / 255.0;
54 range = 1.0 / 63.0;
58 range = 1.0 / 15.0;
78 sk_OutColor = half4(clamp(sk_InColor.rgb + value * range, 0, sk_InColor.a), sk_InColor.a);
82 float range = testData->fRandom->nextRangeF(0.001f, 0.05f);
83 return std::unique_ptr<GrFragmentProcessor>(new GrDitherEffect(range));
  /external/replicaisland/src/com/replica/replicaisland/
Lerp.java 26 final float range = target - start; local
28 value = start + (range * percent);
42 final float range = target - start; local
46 value = start + ((range / 2.0f) * percent * percent * percent);
51 value = start + ((range / 2.0f) *
  /external/toolchain-utils/toolchain_utils_githooks/
pre-push.real 35 range=$1
36 files=$(git show --pretty="format:" --name-only $range)
60 range="$local_sha"
63 range="$remote_sha..$local_sha"
65 run_PyFormat $range
  /prebuilts/go/darwin-x86/test/
range.go 7 // Test the 'for range' construct.
11 // test range over channels
30 for range alphabet {
34 println("for range: wrong count", n, "want 26")
38 for _ = range alphabet {
42 println("for _ = range: wrong count", n, "want 26")
46 for _, _ = range alphabet {
50 println("for _, _ = range: wrong count", n, "want 26")
54 for i, _ := range alphabet {
58 println("for i, _ := range: wrong sum", s, "want 325"
    [all...]
  /prebuilts/go/linux-x86/test/
range.go 7 // Test the 'for range' construct.
11 // test range over channels
30 for range alphabet {
34 println("for range: wrong count", n, "want 26")
38 for _ = range alphabet {
42 println("for _ = range: wrong count", n, "want 26")
46 for _, _ = range alphabet {
50 println("for _, _ = range: wrong count", n, "want 26")
54 for i, _ := range alphabet {
58 println("for i, _ := range: wrong sum", s, "want 325"
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeMapIterator.java 70 * iteration range, if <tt>codepoint != IS_STRING</tt>. If
85 * The value associated with this element or range.
129 while (range < endRange) {
130 if (loadRange(++range) == null) {
147 * Returns the next element in the set, either a code point range
151 * range of one or more code points from <tt>codepoint</tt> to
172 while (range < endRange) {
173 if (loadRange(++range) == null) {
209 // we set them to fail this test, which will cause them to load the first range
212 range = -1
238 private int range = 0; field in class:UnicodeMapIterator
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeMapIterator.java 67 * iteration range, if <tt>codepoint != IS_STRING</tt>. If
82 * The value associated with this element or range.
126 while (range < endRange) {
127 if (loadRange(++range) == null) {
144 * Returns the next element in the set, either a code point range
148 * range of one or more code points from <tt>codepoint</tt> to
169 while (range < endRange) {
170 if (loadRange(++range) == null) {
206 // we set them to fail this test, which will cause them to load the first range
209 range = -1
235 private int range = 0; field in class:UnicodeMapIterator
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
bitreader.h 39 unsigned int range; member in struct:__anon26288
78 unsigned int range; local
79 unsigned int split = (r->range * prob + (256 - prob)) >> CHAR_BIT;
88 range = split;
91 range = r->range - split;
97 register int shift = vpx_norm[range];
98 range <<= shift;
104 r->range = range;
    [all...]
  /external/libmojo/ui/gfx/range/
range.h 16 #include "ui/gfx/range/gfx_range_export.h"
33 // A Range contains two integer values that represent a numeric range, like the
34 // range of characters in a text selection. A range is made of a start and end
35 // position; when they are the same, the Range is akin to a caret. Note that
37 // range.
38 class GFX_RANGE_EXPORT Range {
40 // Creates an empty range {0,0}.
41 constexpr Range() : Range(0) {
    [all...]
  /bionic/benchmarks/
string_benchmark.cpp 25 const size_t nbytes = state.range(0);
26 const size_t src_alignment = state.range(1);
27 const size_t dst_alignment = state.range(2);
44 const size_t nbytes = state.range(0);
45 const size_t src_alignment = state.range(1);
46 const size_t dst_alignment = state.range(2);
62 const size_t nbytes = state.range(0);
63 const size_t src_alignment = state.range(1);
64 const size_t dst_alignment = state.range(2);
80 const size_t nbytes = state.range(0)
    [all...]
  /frameworks/base/core/java/android/util/
Range.java 24 * Immutable class for describing the range of two numeric values.
26 * A range (or "interval") defines the inclusive boundaries around a contiguous span of
31 * All ranges are bounded, and the left side of the range is always {@code >=}
32 * the right side of the range.
36 * stored must also be immutable. If mutable objects are stored here, then the range
39 public final class Range<T extends Comparable<? super T>> {
41 * Create a new immutable range.
45 * is the range is bounded. {@code lower} must be {@link Comparable#compareTo lesser or equal}
54 public Range(final T lower, final T upper) {
64 * Create a new immutable range, with the argument types inferred
    [all...]
  /libcore/luni/src/test/java/libcore/java/time/chrono/
MinguoChronologyTest.java 47 ChronoField.PROLEPTIC_MONTH.range().getMinimum() - YEARS_BEHIND * 12L,
48 ChronoField.PROLEPTIC_MONTH.range().getMaximum() - YEARS_BEHIND * 12L);
51 // range for era ROC is 1..<yearRange.max - OFFSET>
52 // range for era before ROC is 1..<-yearRange.min + 1 + OFFSET>
53 expected = ValueRange.of(1, ChronoField.YEAR.range().getMaximum() - YEARS_BEHIND,
54 -ChronoField.YEAR.range().getMinimum() + 1 + YEARS_BEHIND);
58 expected = ValueRange.of(ChronoField.YEAR.range().getMinimum() - YEARS_BEHIND,
59 ChronoField.YEAR.range().getMaximum() - YEARS_BEHIND);
63 expected = field.range();
66 assertEquals("Range of " + field, expected, MinguoChronology.INSTANCE.range(field))
106 MinguoDate.of(1, 1, 1).range(ChronoField.YEAR_OF_ERA)); method
108 MinguoDate.of(-1, 1, 1).range(ChronoField.YEAR_OF_ERA)); method
    [all...]
ThaiBuddhistChronologyTest.java 47 ChronoField.PROLEPTIC_MONTH.range().getMinimum() + YEARS_AHEAD * 12L,
48 ChronoField.PROLEPTIC_MONTH.range().getMaximum() + YEARS_AHEAD * 12L);
51 // range for era BE is 1..<yearRange.max - OFFSET>
52 // range for era before BE is 1..<-yearRange.min + 1 + OFFSET>
54 .of(1, -ChronoField.YEAR.range().getMinimum() + 1 - YEARS_AHEAD,
55 ChronoField.YEAR.range().getMaximum() + YEARS_AHEAD);
59 expected = ValueRange.of(ChronoField.YEAR.range().getMinimum() + YEARS_AHEAD,
60 ChronoField.YEAR.range().getMaximum() + YEARS_AHEAD);
64 expected = field.range();
67 assertEquals("Range of " + field, expected
108 ThaiBuddhistDate.of(1, 1, 1).range(ChronoField.YEAR_OF_ERA)); method
110 ThaiBuddhistDate.of(-1, 1, 1).range(ChronoField.YEAR_OF_ERA)); method
    [all...]
  /external/libchrome/base/
rand_util.cc 22 uint64_t range = static_cast<uint64_t>(max) - min + 1; local
23 // |range| is at most UINT_MAX + 1, so the result of RandGenerator(range)
26 static_cast<int>(min + static_cast<int64_t>(base::RandGenerator(range)));
39 // produce output in the range [0, 1). For IEEE 754 doubles, the mantissa
52 uint64_t RandGenerator(uint64_t range) {
53 DCHECK_GT(range, 0u);
56 // MAX_UINT64 was 7 and |range| was 5, then a result of 1 would be twice
59 (std::numeric_limits<uint64_t>::max() / range) * range - 1
    [all...]
  /external/libcxx/benchmarks/
string.bench.cpp 12 std::string s1(state.range(0), '-');
17 BENCHMARK(BM_StringFindNoMatch)->Range(10, MAX_STRING_LEN);
22 std::string s2(state.range(0), '-');
26 BENCHMARK(BM_StringFindAllMatch)->Range(1, MAX_STRING_LEN);
31 s1 += std::string(state.range(0), '-');
32 std::string s2(state.range(0), '-');
36 BENCHMARK(BM_StringFindMatch1)->Range(1, MAX_STRING_LEN / 4);
41 s1 += std::string(state.range(0), '-');
42 s1 += std::string(state.range(0), '*');
43 std::string s2(state.range(0), '-')
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
RangeDecoder.java 17 int range = 0; field in class:RangeDecoder
26 int bound = (range >>> BIT_MODEL_TOTAL_BITS) * prob;
31 range = bound;
36 range -= bound;
75 range >>>= 1;
76 int t = (code - range) >>> 31;
77 code -= range & (t - 1);

Completed in 1271 milliseconds

1 2 3 4 56 7 8 91011>>