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

12 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
Cwise_max.cpp 2 cout << v.max(w) << endl;
  /external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/
max.pass.cpp 15 // result_type max() const;
25 D::result_type m = d.max();
26 assert(m == std::numeric_limits<int>::max());
  /external/mesa3d/src/util/
strndup.h 34 char *strndup(const char *str, size_t max);
  /external/vulkan-validation-layers/libs/glm/detail/
_fixes.hpp 32 #ifdef max
33 #undef max macro
  /hardware/interfaces/ir/1.0/
types.hal 22 uint32_t max;
  /packages/apps/TV/tests/tunerscripts/
measure-tuning-time.awk 15 max = tune_time;
20 if (tune_time > max) {
21 max = tune_time
30 print "Maximum tune time", max, "ms";
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
minmax.h 11 #ifndef max
12 #define max(a,b) (((a) > (b)) ? (a) : (b)) macro
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/
max.pass.cpp 15 // result_type max() const;
25 D::result_type m = d.max();
26 assert(m == std::numeric_limits<int>::max());
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/
_fixes.hpp 32 #ifdef max
33 #undef max macro
  /external/adhd/cras/src/common/
cras_metrics.h 14 int max, int nbuckets);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
BisectionSolver.java 58 public double solve(double min, double max, double initial)
60 return solve(f, min, max);
65 public double solve(double min, double max)
67 return solve(f, min, max);
75 public double solve(final UnivariateRealFunction f, double min, double max, double initial)
77 return solve(f, min, max);
82 public double solve(int maxEval, final UnivariateRealFunction f, double min, double max, double initial)
84 return solve(maxEval, f, min, max);
89 public double solve(int maxEval, final UnivariateRealFunction f, double min, double max)
92 return solve(f, min, max);
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-nios2/
s16_symbol.s 4 .global max
6 .set max, 0x7fff
  /external/libcxx/test/std/utilities/template.bitset/bitset.members/
to_ulong.pass.cpp 25 const std::size_t max = is_M_zero ? 0 : std::size_t(std::numeric_limits<unsigned long>::max()) >> X;
27 std::min<std::size_t>(1, max),
28 std::min<std::size_t>(2, max),
29 std::min<std::size_t>(3, max),
30 std::min(max, max-3),
31 std::min(max, max-2),
32 std::min(max, max-1)
    [all...]
  /external/skia/src/core/
SkBitmapProcState_utils.h 30 int count, unsigned max) {
40 // Note: it seems the test should be (fx <= max && lastFx <= max); but
46 if ((unsigned)SkFixedFloorToInt(fx) >= max) {
53 return sk_64_isS32(lastFx) && (unsigned)SkFixedFloorToInt(sk_64_asS32(lastFx)) < max;
  /external/skqp/src/core/
SkBitmapProcState_utils.h 30 int count, unsigned max) {
40 // Note: it seems the test should be (fx <= max && lastFx <= max); but
46 if ((unsigned)SkFixedFloorToInt(fx) >= max) {
53 return sk_64_isS32(lastFx) && (unsigned)SkFixedFloorToInt(sk_64_asS32(lastFx)) < max;
  /external/tensorflow/tensorflow/core/kernels/
quantization_utils.cc 36 std::max(input_max, std::max(-input_min, std::max(smaller_input_max,
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
post_proc.h 35 #define UPDATE_PV_MAXPV_MIN(p,max,min) if ((p) > (max)) (max)=(p); else if ((p) < (min)) (min) = (p);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
imgprocutil.h 27 inline int clamp(int min, int val, int max) {
28 return val < min ? min : (val > max ? max : val);
29 // Note that for performance reasons, this function does *not* check if min < max!
  /packages/apps/Dialer/java/com/android/dialer/common/
MathUtil.java 51 * @param max Upper bound
54 public static float clamp(float value, float min, float max) {
55 return Math.max(min, Math.min(value, max));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/bitset.members/
to_ulong.pass.cpp 25 const std::size_t max = is_M_zero ? 0 : std::size_t(std::numeric_limits<unsigned long>::max()) >> X;
27 std::min<std::size_t>(1, max),
28 std::min<std::size_t>(2, max),
29 std::min<std::size_t>(3, max),
30 std::min(max, max-3),
31 std::min(max, max-2),
32 std::min(max, max-1)
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/
cthread_unix.c 13 int i, max; local
15 max = *(int*)p;
16 for(i=0; i<max; i++)
22 doAdd(int max, int nthread)
31 pthread_create(&thread_id[i], 0, addThread, &max);
cthread_windows.c 14 int i, max; local
16 max = *(int*)p;
17 for(i=0; i<max; i++)
23 doAdd(int max, int nthread)
32 thread_id[i] = _beginthreadex(0, 0, addThread, &max, 0, 0);
  /prebuilts/go/linux-x86/misc/cgo/test/
cthread_unix.c 13 int i, max; local
15 max = *(int*)p;
16 for(i=0; i<max; i++)
22 doAdd(int max, int nthread)
31 pthread_create(&thread_id[i], 0, addThread, &max);
cthread_windows.c 14 int i, max; local
16 max = *(int*)p;
17 for(i=0; i<max; i++)
23 doAdd(int max, int nthread)
32 thread_id[i] = _beginthreadex(0, 0, addThread, &max, 0, 0);
  /system/extras/tests/schedtest/
schedtest.c 29 long max = 0; local
40 if (usec > max) max = usec;
43 printf("max %ld\tavg %ld\n", max, avg);
44 max = 0;

Completed in 544 milliseconds

12 3 4 5 6 7 8 91011>>