/frameworks/support/design/src/android/support/design/widget/ |
SwipeDismissBehavior.java | 275 int min, max; 279 min = mOriginalCapturedViewLeft - child.getWidth(); 282 min = mOriginalCapturedViewLeft; 287 min = mOriginalCapturedViewLeft; 290 min = mOriginalCapturedViewLeft - child.getWidth(); 294 min = mOriginalCapturedViewLeft - child.getWidth(); 298 return clamp(min, left, max); 354 private static float clamp(float min, float value, float max) { 355 return Math.min(Math.max(min, value), max) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/transform/ |
FastCosineTransformer.java | 75 * @param min the lower bound for the interval 84 double min, double max, int n) 86 double data[] = FastFourierTransformer.sample(f, min, max, n); 116 * @param min the lower bound for the interval 125 double min, double max, int n) 128 double data[] = FastFourierTransformer.sample(f, min, max, n); 158 * @param min the lower bound for the interval 166 double min, double max, int n) 169 double data[] = FastFourierTransformer.sample(f, min, max, n); 197 * @param min the lower bound for the interva [all...] |
FastSineTransformer.java | 74 * @param min the lower bound for the interval 83 double min, double max, int n) 86 double data[] = FastFourierTransformer.sample(f, min, max, n); 114 * @param min the lower bound for the interval 123 UnivariateRealFunction f, double min, double max, int n) 126 double data[] = FastFourierTransformer.sample(f, min, max, n); 155 * @param min the lower bound for the interval 162 public double[] inversetransform(UnivariateRealFunction f, double min, double max, int n) 165 double data[] = FastFourierTransformer.sample(f, min, max, n); 193 * @param min the lower bound for the interva [all...] |
/external/chromium-trace/trace-viewer/tracing/tracing/ui/base/ |
list_and_associated_view.css | 12 min-width: 100px;
|
/external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/about_tracing/ |
common.css | 19 min-height: 0;
|
/external/clang/test/Modules/Inputs/ |
cxx-irgen-top.h | 8 template<typename T> T min(T a, T b) { return a < b ? a : b; } function 10 extern decltype(min(1, 2)) instantiate_min_decl;
|
/external/clang/test/SemaCXX/ |
cxx1y-user-defined-literals.cpp | 15 duration operator""min(unsigned long long); 33 duration a = 1ns, b = 1us, c = 1ms, d = 1s, e = 1min, f = 1h;
|
/external/deqp/modules/glshared/ |
glsVertexArrayTests.cpp | 220 inline T getRandom (deRandom& rnd, T min, T max); 223 inline GLValue::Float getRandom (deRandom& rnd, GLValue::Float min, GLValue::Float max) 225 if (max < min) 226 return min; 228 return GLValue::Float::create(min + deRandom_getFloat(&rnd) * (max.to<float>() - min.to<float>())); 232 inline GLValue::Short getRandom (deRandom& rnd, GLValue::Short min, GLValue::Short max) 234 if (max < min) 235 return min; 237 return GLValue::Short::create((min == max ? min : min + (deRandom_getUint32(&rnd) % (max.to<int>() - min.to<int>())))) 1499 const deUint32 min = 10; local [all...] |
/external/icu/icu4c/source/test/cintltst/ |
ccaltst.h | 79 int32_t hr, int32_t min, int32_t sec, int32_t ms, 88 int32_t hour, int32_t min, int32_t sec, int32_t am_pm);
|
/external/icu/icu4c/source/test/intltest/ |
caltztst.h | 40 UDate date(int32_t y, int32_t m, int32_t d, int32_t hr=0, int32_t min=0, int32_t sec=0); 44 // Date utcDate(int y, int m, int d, int hr=0, int min=0, int sec=0); 47 void dateToFields(UDate date, int32_t& y, int32_t& m, int32_t& d, int32_t& hr, int32_t& min, int32_t& sec);
|
tzregts.h | 53 UDate findTransitionBinary(const SimpleTimeZone& tz, UDate min, UDate max); 54 UDate findTransitionStepwise(const SimpleTimeZone& tz, UDate min, UDate max);
|
tztest.h | 52 UDate min, UDate max); 58 UDate min, UDate max,
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
HeightfieldCollisionShape.java | 61 float min = heightfieldData[0];
local 63 // calculate min and max height
65 if (heightfieldData[i] < min) {
66 min = heightfieldData[i];
73 // min and max height to be equal on either side of the y axis, otherwise it gets shifted and collision is incorrect.
75 max = -min;
77 if (Math.abs(max) > Math.abs(min)) {
78 min = -max;
80 max = -min;
83 this.minHeight = min;
[all...] |
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/ |
HeightfieldCollisionShape.java | 60 float min = heightfieldData[0]; local 62 // calculate min and max height 64 if (heightfieldData[i] < min) 65 min = heightfieldData[i]; 70 // min and max height to be equal on either side of the y axis, otherwise it gets shifted and collision is incorrect. 72 max = -min; 74 if (Math.abs(max) > Math.abs(min)) 75 min = -max; 77 max = -min; 79 this.minHeight = min; [all...] |
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/ |
values.pass.cpp | 23 // static constexpr result_type min() { return 0; } 41 /*static_*/assert((E::min() == 0)/*, ""*/); 57 /*static_*/assert((E::min() == 0)/*, ""*/);
|
/external/libvorbis/vq/ |
latticebuild.c | 133 double min=quantlist[0]; local 136 for(j=1;j<quantvals;j++)if(quantlist[j]<min)min=quantlist[j]; 145 double test=fac*(quantlist[j]-min)/mindel; 153 fprintf(stderr,"min=%g mindel=%g\n",min,mindel); 155 c.q_min=_float32_pack(min); 159 min=_float32_unpack(c.q_min); 162 c.quantlist[j]=rint((quantlist[j]-min)/mindel);
|
/external/linux-tools-perf/src/tools/perf/util/ |
stat.c | 17 if (val < stats->min) 18 stats->min = val;
|
/external/ppp/pppd/include/ |
pcap-int.h | 102 #ifndef min 103 #define min(a, b) ((a) > (b) ? (b) : (a)) macro
|
/external/zlib/src/contrib/infback9/ |
inftree9.c | 42 unsigned min, max; /* minimum and maximum code lengths */ local 120 for (min = 1; min <= MAXBITS; min++) 121 if (count[min] != 0) break; 122 if (root < min) root = min; 196 len = min; /* starting code length */
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
UT_math_agree.java | 148 // min reference functions 149 private float min(float v1, float v2) { method in class:UT_math_agree 152 private float[] min(float[] v1, float[] v2) { method in class:UT_math_agree 156 rv[i] = min(v1[i], v2[i]); 159 private byte min(byte v1, byte v2) { method in class:UT_math_agree 162 private byte[] min(byte[] v1, byte[] v2) { method in class:UT_math_agree 166 rv[i] = min(v1[i], v2[i]); 169 private short min(short v1, short v2) { method in class:UT_math_agree 172 private short[] min(short[] v1, short[] v2) { method in class:UT_math_agree 176 rv[i] = min(v1[i], v2[i]) 179 private int min(int v1, int v2) { method in class:UT_math_agree 182 private int[] min(int[] v1, int[] v2) { method in class:UT_math_agree 189 private long min(long v1, long v2) { method in class:UT_math_agree 192 private long[] min(long[] v1, long[] v2) { method in class:UT_math_agree 428 s.set_min_rand_f1_f1(min(rand_f1_0, rand_f1_1)); method 432 s.set_min_rand_uc1_uc1(min(rand_uc1_0, rand_uc1_1)); method 436 s.set_min_rand_ss1_ss1(min(rand_ss1_0, rand_ss1_1)); method 440 s.set_min_rand_us1_us1(min(rand_us1_0, rand_us1_1)); method 444 s.set_min_rand_si1_si1(min(rand_si1_0, rand_si1_1)); method 448 s.set_min_rand_ui1_ui1(min(rand_ui1_0, rand_ui1_1)); method 452 s.set_min_rand_sl1_sl1(min(rand_sl1_0, rand_sl1_1)); method 456 s.set_min_rand_sc1_sc1(min(rand_sc1_0, rand_sc1_1)); method [all...] |
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
UT_math_agree.java | 148 // min reference functions 149 private float min(float v1, float v2) { method in class:UT_math_agree 152 private float[] min(float[] v1, float[] v2) { method in class:UT_math_agree 156 rv[i] = min(v1[i], v2[i]); 159 private byte min(byte v1, byte v2) { method in class:UT_math_agree 162 private byte[] min(byte[] v1, byte[] v2) { method in class:UT_math_agree 166 rv[i] = min(v1[i], v2[i]); 169 private short min(short v1, short v2) { method in class:UT_math_agree 172 private short[] min(short[] v1, short[] v2) { method in class:UT_math_agree 176 rv[i] = min(v1[i], v2[i]) 179 private int min(int v1, int v2) { method in class:UT_math_agree 182 private int[] min(int[] v1, int[] v2) { method in class:UT_math_agree 189 private long min(long v1, long v2) { method in class:UT_math_agree 192 private long[] min(long[] v1, long[] v2) { method in class:UT_math_agree 428 s.set_min_rand_f1_f1(min(rand_f1_0, rand_f1_1)); method 432 s.set_min_rand_uc1_uc1(min(rand_uc1_0, rand_uc1_1)); method 436 s.set_min_rand_ss1_ss1(min(rand_ss1_0, rand_ss1_1)); method 440 s.set_min_rand_us1_us1(min(rand_us1_0, rand_us1_1)); method 444 s.set_min_rand_si1_si1(min(rand_si1_0, rand_si1_1)); method 448 s.set_min_rand_ui1_ui1(min(rand_ui1_0, rand_ui1_1)); method 452 s.set_min_rand_sl1_sl1(min(rand_sl1_0, rand_sl1_1)); method 456 s.set_min_rand_sc1_sc1(min(rand_sc1_0, rand_sc1_1)); method [all...] |
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
UT_math_agree.java | 148 // min reference functions 149 private float min(float v1, float v2) { method in class:UT_math_agree 152 private float[] min(float[] v1, float[] v2) { method in class:UT_math_agree 156 rv[i] = min(v1[i], v2[i]); 159 private byte min(byte v1, byte v2) { method in class:UT_math_agree 162 private byte[] min(byte[] v1, byte[] v2) { method in class:UT_math_agree 166 rv[i] = min(v1[i], v2[i]); 169 private short min(short v1, short v2) { method in class:UT_math_agree 172 private short[] min(short[] v1, short[] v2) { method in class:UT_math_agree 176 rv[i] = min(v1[i], v2[i]) 179 private int min(int v1, int v2) { method in class:UT_math_agree 182 private int[] min(int[] v1, int[] v2) { method in class:UT_math_agree 189 private long min(long v1, long v2) { method in class:UT_math_agree 192 private long[] min(long[] v1, long[] v2) { method in class:UT_math_agree 428 s.set_min_rand_f1_f1(min(rand_f1_0, rand_f1_1)); method 432 s.set_min_rand_uc1_uc1(min(rand_uc1_0, rand_uc1_1)); method 436 s.set_min_rand_ss1_ss1(min(rand_ss1_0, rand_ss1_1)); method 440 s.set_min_rand_us1_us1(min(rand_us1_0, rand_us1_1)); method 444 s.set_min_rand_si1_si1(min(rand_si1_0, rand_si1_1)); method 448 s.set_min_rand_ui1_ui1(min(rand_ui1_0, rand_ui1_1)); method 452 s.set_min_rand_sl1_sl1(min(rand_sl1_0, rand_sl1_1)); method 456 s.set_min_rand_sc1_sc1(min(rand_sc1_0, rand_sc1_1)); method [all...] |
/hardware/intel/bootstub/ |
imr_toc.h | 18 #define MAKE_TOC_VERSION(maj, min) ((min) << 16 | (maj))
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.sub/ |
values.pass.cpp | 23 // static constexpr result_type min() { return 0; } 41 /*static_*/assert((E::min() == 0)/*, ""*/); 57 /*static_*/assert((E::min() == 0)/*, ""*/);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/ |
bounds.hpp | 26 static N lowest () { return limits::min BOOST_PREVENT_MACRO_SUBSTITUTION (); } 40 static N smallest() { return limits::min BOOST_PREVENT_MACRO_SUBSTITUTION (); }
|