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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/builtins/
negvdi2.c 24 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvsi2.c 24 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1);
25 if (a == MIN)
negvti2.c 26 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1);
27 if (a == MIN)
mulodi4.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
mulosi4.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
muloti4.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
31 if (a == MIN)
37 if (b == MIN)
56 if (abs_a > MIN / -abs_b)
mulvdi3.c 25 const di_int MIN = (di_int)1 << (N-1);
26 const di_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvsi3.c 25 const si_int MIN = (si_int)1 << (N-1);
26 const si_int MAX = ~MIN;
27 if (a == MIN)
33 if (b == MIN)
52 if (abs_a > MIN / -abs_b)
mulvti3.c 27 const ti_int MIN = (ti_int)1 << (N-1);
28 const ti_int MAX = ~MIN;
29 if (a == MIN)
35 if (b == MIN)
54 if (abs_a > MIN / -abs_b)
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/display/
BrightnessUtilsTest.java 30 private static final int MIN = 1;
35 assertThat(BrightnessUtils.convertLinearToGamma(MIN, MIN, MAX)).isEqualTo(0);
40 assertThat(BrightnessUtils.convertLinearToGamma(MAX, MIN, MAX)).isEqualTo(GAMMA_SPACE_MAX);
45 assertThat(BrightnessUtils.convertGammaToLinear(MIN, MIN, MAX)).isEqualTo(MIN);
50 assertThat(BrightnessUtils.convertGammaToLinear(GAMMA_SPACE_MAX, MIN, MAX)).isEqualTo(MAX);
  /external/ltp/testcases/kernel/syscalls/splice/
splice.h 31 return MIN(pipe_max_unpriv, default_len_data);
36 return MIN(pipe_max_unpriv * getpagesize(), default_len_data);
  /external/mesa3d/src/gallium/tests/graw/fragment-shader/
frag-min.sh 8 MIN OUT[0], IN[0], IMM[0]
  /external/strace/
macros.h 41 #ifndef MIN
42 # define MIN(a, b) (((a) < (b)) ? (a) : (b))
44 #define CLAMP(val, min, max) MIN(MAX(min, val), max)
  /external/ltp/testcases/kernel/fs/fsstress/
xfscompat.h 6 #define MIN(a,b) ((a)<(b) ? (a):(b))
  /external/ltp/include/
tst_minmax.h 21 #ifndef MIN
22 # define MIN(a, b) ({ \
27 #endif /* MIN */
  /external/mesa3d/src/gallium/tests/graw/vertex-shader/
vert-min.sh 11 MIN OUT[1], IN[1], IMM[0]
  /frameworks/hardware/interfaces/schedulerservice/1.0/
ISchedulingPolicyService.hal 20 MIN = 1,
29 * @param priority Value within [Priority:MIN, Priority:MAX]
  /packages/services/BuiltInPrintService/jni/include/
wtypes.h 43 #ifndef MIN
44 #define MIN(x, y) (((x) < (y)) ? (x) : (y))
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
stream.h 31 #define MIN(a,b) ((a) < (b)? (a) : (b))
  /libcore/luni/src/test/java/libcore/java/time/
DurationTest.java 56 Duration.between(Instant.MIN, Instant.MAX).addTo(Instant.MIN));
58 Duration.between(Instant.MIN, Instant.EPOCH).addTo(Instant.MIN));
64 assertEquals(Instant.MIN,
65 Duration.between(Instant.MIN, Instant.EPOCH).subtractFrom(Instant.EPOCH));
66 assertEquals(Instant.MIN,
67 Duration.between(Instant.MIN, Instant.MAX).subtractFrom(Instant.MAX));
77 { Instant.EPOCH, Duration.between(Instant.EPOCH, Instant.MIN).minusNanos(1) },
78 { Instant.EPOCH, Duration.between(Instant.MIN, Instant.MAX) }
    [all...]
LocalDateTest.java 35 assertSame(IsoChronology.INSTANCE, LocalDate.MIN.getChronology());
  /packages/apps/Gallery2/jni/filters/
bwfilter.c 29 float min = MIN(sg,sb); local
30 min = MIN(sr,min);
33 float avg = (min+max)/2;
45 min = MIN(g,b);
46 min = MIN(r,min)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-dfa.rb 12 MIN = [7, 8].freeze
27 dfa.min.should == DFASubclass::MIN
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorSyclTuple.h 142 /// \brief Collects internal details for generating index ranges [MIN, MAX)
144 /// \tparam MIN is the starting index in the tuple
147 template <size_t MIN, size_t N, size_t... Is>
151 /// MIN==MAX. In this case the Is... is [0 to sizeof...(tuple elements))
152 /// \tparam MIN is the starting index of the tuple
154 template <size_t MIN, size_t... Is>
155 struct RangeBuilder<MIN, MIN, Is...> {
159 /// Induction step: Specialisation of the RangeBuilder class when N!=MIN
161 /// index to Is... list until MIN==
    [all...]
  /hardware/interfaces/audio/effect/2.0/
IBassBoostEffect.hal 29 MIN = 0,

Completed in 365 milliseconds

1 2 3 4 5 6 7 8 91011>>