HomeSort by relevance Sort by last modified time
    Searched refs:max (Results 51 - 75 of 11221) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/template.bitset/bitset.members/
to_ullong.pass.cpp 24 const unsigned long long max = is_M_zero ? 0 : (unsigned long long)(-1) >> X;
26 std::min<unsigned long long>(1, max),
27 std::min<unsigned long long>(2, max),
28 std::min<unsigned long long>(3, max),
29 std::min(max, max-3),
30 std::min(max, max-2),
31 std::min(max, max-1)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/bitset.members/
to_ullong.pass.cpp 24 const unsigned long long max = is_M_zero ? 0 : (unsigned long long)(-1) >> X;
26 std::min<unsigned long long>(1, max),
27 std::min<unsigned long long>(2, max),
28 std::min<unsigned long long>(3, max),
29 std::min(max, max-3),
30 std::min(max, max-2),
31 std::min(max, max-1)
    [all...]
  /external/clang/test/SemaTemplate/
alignas.cpp 7 constexpr T max(T t, U u) { return t > u ? t : u; } function
10 constexpr auto max(T t, Ts ...ts) -> decltype(max(t, max(ts...))) { function
11 return max(t, max(ts...));
15 alignas(T...) char buffer[max(sizeof(T)...)];
  /external/skia/src/opts/
SkBitmapProcState_matrixProcs_neon.cpp 20 // TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
21 static inline int16x8_t sbpsm_clamp_tile8(int32x4_t low, int32x4_t high, unsigned max) {
29 res = vminq_s16(res, vdupq_n_s16(max));
34 // TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
35 static inline int32x4_t sbpsm_clamp_tile4(int32x4_t f, unsigned max) {
43 res = vminq_s32(res, vdupq_n_s32(max));
48 // EXTRACT_LOW_BITS(fy, max) (((fy) >> 12) & 0xF)
62 // TILEX_PROCF(fx, max) (((fx)&0xFFFF)*((max)+1)>> 16
    [all...]
  /external/skqp/src/opts/
SkBitmapProcState_matrixProcs_neon.cpp 20 // TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
21 static inline int16x8_t sbpsm_clamp_tile8(int32x4_t low, int32x4_t high, unsigned max) {
29 res = vminq_s16(res, vdupq_n_s16(max));
34 // TILEX_PROCF(fx, max) SkClampMax((fx) >> 16, max)
35 static inline int32x4_t sbpsm_clamp_tile4(int32x4_t f, unsigned max) {
43 res = vminq_s32(res, vdupq_n_s32(max));
48 // EXTRACT_LOW_BITS(fy, max) (((fy) >> 12) & 0xF)
62 // TILEX_PROCF(fx, max) (((fx)&0xFFFF)*((max)+1)>> 16
    [all...]
  /external/skia/tests/
SafeMathTest.cpp 12 size_t max = std::numeric_limits<size_t>::max(); local
15 size_t halfMax = max >> 1;
20 REPORTER_ASSERT(r, safe.add(halfMax, halfMaxPlus1) == max);
22 REPORTER_ASSERT(r, safe.add(max, 1) == 0);
28 (void) safe.add(max, max);
35 size_t sqrtMax = max >> halfBits;
48 (void) safe.mul(max, max);
    [all...]
  /external/skqp/tests/
SafeMathTest.cpp 12 size_t max = std::numeric_limits<size_t>::max(); local
15 size_t halfMax = max >> 1;
20 REPORTER_ASSERT(r, safe.add(halfMax, halfMaxPlus1) == max);
22 REPORTER_ASSERT(r, safe.add(max, 1) == 0);
28 (void) safe.add(max, max);
35 size_t sqrtMax = max >> halfBits;
48 (void) safe.mul(max, max);
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
Utils.java 39 public final static int clamp(int value, int min, int max) {
41 if (min == max) {
45 } else if (min < max) {
48 } else if (value > max) {
49 result = max;
52 result = clamp(value, max, min);
  /external/libcxx/test/std/numerics/numarray/template.valarray/valarray.members/
max.pass.cpp 14 // value_type max() const;
26 assert(v1.max() == 4.0);
31 v1.max();
38 assert((2*v1).max() == 8.0);
  /external/skia/src/core/
SkSafeRange.h 21 // checks 0 <= value <= max.
24 template <typename T> T checkLE(uint64_t value, T max) {
25 SkASSERT(static_cast<int64_t>(max) >= 0);
26 if (value > static_cast<uint64_t>(max)) {
  /external/skqp/src/core/
SkSafeRange.h 21 // checks 0 <= value <= max.
24 template <typename T> T checkLE(uint64_t value, T max) {
25 SkASSERT(static_cast<int64_t>(max) >= 0);
26 if (value > static_cast<uint64_t>(max)) {
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
my_corr.c 32 int16_t max; local
39 max=WebRtcSpl_MaxAbsValueW16(seq1, dim1);
40 scale=WebRtcSpl_GetSizeInBits(max);
  /frameworks/base/graphics/java/android/graphics/
TableMaskFilter.java 35 public static TableMaskFilter CreateClipTable(int min, int max) {
36 return new TableMaskFilter(nativeNewClip(min, max));
44 private static native long nativeNewClip(int min, int max);
  /libcore/benchmarks/src/benchmarks/regression/
LoopingBackwardsBenchmark.java 27 @Param({"2", "20", "2000", "20000000"}) int max; field in class:LoopingBackwardsBenchmark
32 for (int j = 0; j < max; j++) {
42 for (int j = max - 1; j >= 0; j--) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.valarray/valarray.members/
max.pass.cpp 14 // value_type max() const;
26 assert(v1.max() == 4.0);
31 v1.max();
38 assert((2*v1).max() == 8.0);
  /system/core/base/include/android-base/
parsedouble.h 29 // Optionally allows the caller to define a 'min' and 'max' beyond which
33 double max = std::numeric_limits<double>::max()) {
40 if (result < min || max < result) {
parseint.h 30 // that value. Optionally allows the caller to define a 'max' beyond which
35 T max = std::numeric_limits<T>::max()) {
43 if (max < result) {
53 T max = std::numeric_limits<T>::max()) {
54 return ParseUint(s.c_str(), out, max);
58 // that value. Optionally allows the caller to define a 'min' and 'max
64 T max = std::numeric_limits<T>::max()) {
    [all...]
  /system/update_engine/update_manager/
prng.h 36 // Returns a random integer uniformly distributed in the range [min, max].
37 int RandMinMax(int min, int max) {
38 DCHECK_LE(min, max);
39 return std::uniform_int_distribution<>(min, max)(gen_);
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_length.h 23 __u16 min, max; member in struct:xt_length_info
  /external/clang/utils/ABITest/return-types-32/
Makefile 7 TESTARGS += --max-args 0
  /external/clang/utils/ABITest/return-types-64/
Makefile 7 TESTARGS += --max-args 0
  /external/clang/utils/ABITest/single-args-32/
Makefile 7 TESTARGS += --no-function-return --max-args 1
  /external/clang/utils/ABITest/single-args-64/
Makefile 13 TESTARGS += --no-function-return --max-args 1
  /external/fio/
tickmarks.h 9 int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm,
  /external/iptables/include/linux/netfilter/
xt_length.h 7 __u16 min, max; member in struct:xt_length_info

Completed in 281 milliseconds

1 23 4 5 6 7 8 91011>>