/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLMeterElement.idl | 26 attribute double min;
|
/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/eigen/doc/examples/ |
Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp | 20 float min = m.minCoeff(&minRow, &minCol); local 24 cout << "Min: " << min << ", at: " <<
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
stat.h | 9 u64 max, min; member in struct:stats 22 stats->min = (u64) -1;
|
/system/vold/ |
hash.h | 44 #ifndef min 45 #define min(a,b) (((a)>(b))?(b):(a)) macro
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/browserAction/set_icon_path/ |
background.js | 5 var min = 1; variable 7 var current = min; 14 current = min;
|
/external/libcxx/test/utilities/template.bitset/bitset.members/ |
to_ulong.pass.cpp | 25 std::min<std::size_t>(1, max), 26 std::min<std::size_t>(2, max), 27 std::min<std::size_t>(3, max), 28 std::min(max, max-3), 29 std::min(max, max-2), 30 std::min(max, max-1),
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
TableSwitchInsnNode.java | 51 public int min;
field in class:TableSwitchInsnNode 72 * @param min the minimum key value.
76 * the beginning of the handler block for the <tt>min + i</tt> key.
79 final int min,
85 this.min = min;
103 mv.visitTableSwitchInsn(min, max, dflt.getLabel(), labels);
107 return new TableSwitchInsnNode(min,
|
/hardware/ti/omap4-aah/libtiutils/ |
UtilsCommon.h | 43 const T & min(const T & a, const T & b); 49 const T & bound(const T & min, const T & x, const T & max); 72 inline const T & min(const T & a, const T & b) { function in namespace:Ti 82 inline const T & bound(const T & min, const T & x, const T & max) { 83 return x < min ? min : x > max ? max : x;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/ |
to_ulong.pass.cpp | 25 std::min<std::size_t>(1, max), 26 std::min<std::size_t>(2, max), 27 std::min<std::size_t>(3, max), 28 std::min(max, max-3), 29 std::min(max, max-2), 30 std::min(max, max-1),
|
/external/chromium_org/v8/test/mjsunit/ |
math-min-max.js | 30 // Test Math.min(). 32 assertEquals(Infinity, Math.min()); 33 assertEquals(1, Math.min(1)); 34 assertEquals(1, Math.min(1, 2)); 35 assertEquals(1, Math.min(2, 1)); 36 assertEquals(1, Math.min(1, 2, 3)); 37 assertEquals(1, Math.min(3, 2, 1)); 38 assertEquals(1, Math.min(2, 3, 1)); 39 assertEquals(1.1, Math.min(1.1, 2.2, 3.3)); 40 assertEquals(1.1, Math.min(3.3, 2.2, 1.1)) [all...] |
/cts/common/util/src/com/android/compatibility/common/util/ |
Stat.java | 27 * Collection of statistical propertirs like average, max, min, and stddev 35 public StatResult(double average, double min, double max, double stddev, int dataCount) { 37 mMin = min; 45 * Calculate statistics properties likes average, min, max, and stddev for the given array 49 double min = data[0]; local 58 if (data[i] < min) { 59 min = data[i]; 66 return new StatResult(average, min, max, stddev, data.length); 70 * Calculate statistics properties likes average, min, max, and stddev for the given array 88 double min = median local 135 double min = data[0]; local [all...] |
/external/chromium_org/base/metrics/ |
sample_map.cc | 49 Sample min; local 53 iter->Get(&min, &max, &count); 54 if (min + 1 != max) 56 sample_counts_[min] += (op == HistogramSamples::ADD) ? count : -count; 76 void SampleMapIterator::Get(Sample* min, Sample* max, Count* count) const { 78 if (min != NULL) 79 *min = iter_->first;
|
/external/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
Android.mk | 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.min.max/Android.mk 19 test_name := algorithms/alg.sorting/alg.min.max/max_element 23 test_name := algorithms/alg.sorting/alg.min.max/minmax_init_list_comp 27 test_name := algorithms/alg.sorting/alg.min.max/min_element_comp 31 test_name := algorithms/alg.sorting/alg.min.max/min_comp 35 test_name := algorithms/alg.sorting/alg.min.max/minmax_element 39 test_name := algorithms/alg.sorting/alg.min.max/minmax_init_list 43 test_name := algorithms/alg.sorting/alg.min.max/min 44 test_src := min.pass.cp [all...] |
/external/chromium_org/ui/gfx/geometry/ |
cubic_bezier.cc | 38 x1 = std::min(std::max(x1, 0.0), 1.0); 39 x2 = std::min(std::max(x2, 0.0), 1.0); 40 x = std::min(std::max(x, 0.0), 1.0); 81 void CubicBezier::Range(double* min, double* max) const { 82 *min = 0; 124 *min = std::min(std::min(*min, sol_1), sol_2);
|
safe_integer_conversions.h | 20 if (value <= std::numeric_limits<int>::min()) 21 return std::numeric_limits<int>::min(); 47 if (value < std::numeric_limits<int>::min())
|
/external/chromium_org/base/ |
rand_util.cc | 18 int RandInt(int min, int max) { 19 DCHECK_LE(min, max); 21 uint64 range = static_cast<uint64>(max) - min + 1; 22 int result = min + static_cast<int>(base::RandGenerator(range)); 23 DCHECK_GE(result, min);
|
/external/chromium_org/third_party/freetype/src/psnames/ |
pstables.h | 4080 int count, min, max; local [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayRandom.cpp | 23 SK_MEMBER(min, Float), 32 SkDisplayRandom::SkDisplayRandom() : blend(0), min(0), max(SK_Scalar1) { 38 SkDebugf("min=\"%g\" ", SkScalarToFloat(min)); 50 value->fOperand.fScalar = min + SkScalarMul(max - min, relativeT);
|
/external/freetype/src/psnames/ |
pstables.h | 4080 int count, min, max; local [all...] |
/external/libcxx/test/utilities/time/time.duration/time.duration.literals/ |
literals2.pass.cpp | 26 std::chrono::minutes min = 36min; local 27 assert ( min == std::chrono::minutes(36)); 28 auto min2 = 36.0min; 29 assert ( min == min2 );
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psnames/ |
pstables.h | 4094 int count, min, max; local [all...] |
/external/skia/src/animator/ |
SkDisplayRandom.cpp | 23 SK_MEMBER(min, Float), 32 SkDisplayRandom::SkDisplayRandom() : blend(0), min(0), max(SK_Scalar1) { 38 SkDebugf("min=\"%g\" ", SkScalarToFloat(min)); 50 value->fOperand.fScalar = min + SkScalarMul(max - min, relativeT);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.literals/ |
literals2.pass.cpp | 26 std::chrono::minutes min = 36min; local 27 assert ( min == std::chrono::minutes(36)); 28 auto min2 = 36.0min; 29 assert ( min == min2 );
|
/external/chromium_org/third_party/skia/include/effects/ |
SkTableMaskFilter.h | 27 /** Utility that creates a clipping table: clamps values below min to 0 30 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max); 42 static SkTableMaskFilter* CreateClip(uint8_t min, uint8_t max) { 44 MakeClipTable(table, min, max);
|