HomeSort by relevance Sort by last modified time
    Searched defs:min (Results 376 - 400 of 2572) sorted by null

<<11121314151617181920>>

  /frameworks/native/vulkan/vkjson/
vkjson.h 32 #undef min macro
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZonePickerUtils.java 133 final int min = (p / (int) DateUtils.MINUTE_IN_MILLIS) % 60; local
134 if (min != 0) { // Show minutes if non-zero
136 if (min < 10) {
139 sb.append(min);
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_AOC.c 122 AKFVEC* mean, /*!< (o) : (max+min)/2 */
128 AKFVEC min; local
131 min.v[j] = v[0].v[j];
134 if(v[i].v[j] < min.v[j]){
135 min.v[j] = v[i].v[j];
141 mean->v[j] = (max.v[j] + min.v[j]) / 2.0; /*mean */
142 var->v[j] = max.v[j] - min.v[j]; /*var */
  /hardware/intel/common/libmix/mix_video/src/
mixvideoformatenc_h264.h 17 #define min(X,Y) (((X) < (Y)) ? (X) : (Y)) macro
mixvideoformatenc_mpeg4.h 17 #define min(X,Y) (((X) < (Y)) ? (X) : (Y)) macro
mixvideoformatenc_preview.h 17 #define min(X,Y) (((X) < (Y)) ? (X) : (Y)) macro
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidParser.cpp 101 // usage page, local min/max, report size and count have to be defined at report
295 double min, max; local
296 report.decode(report.mask(report.minRaw), &min);
303 << ", min: " << report.minRaw << ", max: " << report.maxRaw
304 << ", minDecoded: " << min
  /hardware/qcom/display/msm8084/libcopybit/
copybit.cpp 96 /** min of int a, b */
97 static inline int min(int a, int b) { function
120 out->r = min(lhs->r, rhs->r);
121 out->b = min(lhs->b, rhs->b);
  /hardware/qcom/display/msm8226/libcopybit/
copybit.cpp 96 /** min of int a, b */
97 static inline int min(int a, int b) { function
120 out->r = min(lhs->r, rhs->r);
121 out->b = min(lhs->b, rhs->b);
  /hardware/qcom/display/msm8909/libcopybit/
copybit.cpp 98 /** min of int a, b */
99 static inline int min(int a, int b) { function
122 out->r = min(lhs->r, rhs->r);
123 out->b = min(lhs->b, rhs->b);
  /hardware/qcom/display/msm8909w_3100/libcopybit/
copybit.cpp 98 /** min of int a, b */
99 static inline int min(int a, int b) { function
122 out->r = min(lhs->r, rhs->r);
123 out->b = min(lhs->b, rhs->b);
  /hardware/qcom/display/msm8994/libcopybit/
copybit.cpp 97 /** min of int a, b */
98 static inline int min(int a, int b) { function
121 out->r = min(lhs->r, rhs->r);
122 out->b = min(lhs->b, rhs->b);
  /hardware/qcom/display/msm8996/libcopybit/
copybit.cpp 98 /** min of int a, b */
99 static inline int min(int a, int b) { function
122 out->r = min(lhs->r, rhs->r);
123 out->b = min(lhs->b, rhs->b);
  /hardware/qcom/display/msm8998/libcopybit/
copybit.cpp 96 /** min of int a, b */
97 static inline int min(int a, int b) { function
120 out->r = min(lhs->r, rhs->r);
121 out->b = min(lhs->b, rhs->b);
  /libcore/ojluni/src/main/java/java/io/
BufferedWriter.java 149 * Our own little min method, to avoid loading java.lang.Math if we've run
152 private int min(int a, int b) { method in class:BufferedWriter
194 int d = min(nChars - nextChar, t - b);
225 int d = min(nChars - nextChar, t - b);
  /libcore/ojluni/src/main/java/java/lang/
Integer.java 1624 public static int min(int a, int b) { method in class:Integer
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/
MeteredStream.java 152 // just skip min(n, num_bytes_left)
153 long min = (n > expected - count) ? expected - count: n; local
154 n = in.skip(min);
  /packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java 87 int min, max; local
89 min = height;
92 min = width;
96 if (min * ar.x == max * ar.y) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
valarray_after.h 194 value_type min() const;
306 _Expr<_Clos, _Tp>::min() const function in class:_Expr
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
valarray_after.h 194 value_type min() const;
306 _Expr<_Clos, _Tp>::min() const function in class:_Expr
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
redblack32.go 137 // Min returns the minimum element of t and its associated data.
139 func (t *RBTint32) Min() (k int32, d interface{}) {
140 return t.root.min().keyAndData()
226 func (t *node32) min() *node32 { func
397 return r.min()
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
redblack32.go 137 // Min returns the minimum element of t and its associated data.
139 func (t *RBTint32) Min() (k int32, d interface{}) {
140 return t.root.min().keyAndData()
226 func (t *node32) min() *node32 { func
397 return r.min()
  /system/core/adf/libadfhwc/
adfhwc.cpp 39 template<typename T> inline T min(T a, T b) { return (a < b) ? a : b; } function
108 for (size_t i = 0; i < min(*numConfigs, unique_configs.size()); i++) {
  /system/extras/puncture_fs/
puncture_fs.c 35 #ifndef min
36 #define min(a,b) ((a) < (b) ? (a) : (b)) macro
81 base[random() % min(base_length, size)] = get_random_char();
  /system/extras/tests/audio/alsa/
pcmtest.cpp 130 unsigned int min; local
138 min = pcm_params_get_min(params, PCM_PARAM_RATE);
140 EXPECT_LE(min, max);
141 /* printf(" Rate:\tmin=%uHz\tmax=%uHz\n", min, max); */
142 min = pcm_params_get_min(params, PCM_PARAM_CHANNELS);
144 EXPECT_LE(min, max);
145 /* printf(" Channels:\tmin=%u\t\tmax=%u\n", min, max); */
146 min = pcm_params_get_min(params, PCM_PARAM_SAMPLE_BITS);
148 EXPECT_LE(min, max);
149 /* printf(" Sample bits:\tmin=%u\t\tmax=%u\n", min, max); *
    [all...]

Completed in 590 milliseconds

<<11121314151617181920>>