Searched refs:max (Results 1 - 25 of 39) sorted by relevance

12

/hardware/libhardware/modules/consumerir/
H A Dconsumerir.c27 {.min = 30000, .max = 30000},
28 {.min = 33000, .max = 33000},
29 {.min = 36000, .max = 36000},
30 {.min = 38000, .max = 38000},
31 {.min = 40000, .max = 40000},
32 {.min = 56000, .max = 56000},
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
H A DPERF.awk40 max = (size != "") ? (size) : (max != "") ? (max) : 5e9; # max size of buffers to watch
58 else if (gsub("^size=", "",arg)) { min = max = (arg) }
60 else if (gsub("^max=", "",arg)) { max = (arg) }
98 print "max = ", max
103 max
[all...]
/hardware/libhardware/include/hardware/
H A Dconsumerir.h31 int max; member in struct:consumerir_freq_range
/hardware/qcom/audio/legacy/libalsa-intf/
H A Dalsa_mixer.c50 #define check_range(val, min, max) \
51 (((val < min) ? (min) : (val > max) ? (max) : (val)))
56 #define percent_to_index(val, min, max) \
57 ((val) * ((max) - (min)) * 0.01 + (min) + .5)
137 unsigned max = mixer->ctl[n].info->value.enumerated.items; local
138 for (m = 0; m < max; m++)
261 ei->value.integer.max,
268 ei->value.integer64.max,
313 long *min, long *max, unsigne
311 mixer_ctl_read_tlv(struct mixer_ctl *ctl, unsigned int *tlv, long *min, long *max, unsigned int *tlv_type) argument
401 long min, max; local
526 long min, max; local
697 long min, max; local
722 unsigned n, max; local
[all...]
H A Dalsa_pcm.c233 i->max = val;
242 i->max = val;
261 i->max = ~0;
301 param_name[n], i->min, i->max, i->openmin,
361 i->min, i->max, i->openmin,
371 i->min, i->max, i->openmin,
/hardware/qcom/audio/legacy/alsa_sound/
H A DALSAMixer.cpp85 max(SND_MIXER_VOL_RANGE_MAX),
92 long max; member in struct:android::mixer_info_t
197 getVolumeRange[i] (elem, &info->min, &info->max);
198 info->volume = info->max;
234 getVolumeRange[i] (elem, &info->min, &info->max);
235 info->volume = info->max;
273 long maxVol = info->max;
292 long maxVol = info->max;
314 long maxVol = info->max;
337 long maxVol = info->max;
[all...]
/hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
H A DAKFS_AOC.c122 AKFVEC* mean, /*!< (o) : (max+min)/2 */
127 AKFVEC max; local
132 max.v[j] = v[0].v[j];
137 if(v[i].v[j] > max.v[j]){
138 max.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/qcom/camera/
H A DQCameraParameters.h33 FPSRange(int min,int max){ argument
35 maxFPS=max;
/hardware/libhardware/tests/hwc/
H A Dutil.c115 EGLint i, n, max; local
131 if (eglGetConfigs(dpy, NULL, 0, &max) == EGL_FALSE) {
136 cfg = (EGLConfig*) malloc(sizeof(EGLConfig) * max);
140 if (eglChooseConfig(dpy, attr, cfg, max, &n) == EGL_FALSE) {
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmutils.h106 uint16 max; /* maximum number of queued packets */ member in struct:pktq_prec
146 uint16 max; /* total max packets */ \
287 #define pktq_psetmax(pq, prec, _max) ((pq)->q[prec].max = (_max))
288 #define pktq_pmax(pq, prec) ((pq)->q[prec].max)
290 #define pktq_pavail(pq, prec) ((pq)->q[prec].max - (pq)->q[prec].len)
291 #define pktq_pfull(pq, prec) ((pq)->q[prec].len >= (pq)->q[prec].max)
318 #define pktq_max(pq) ((int)(pq)->max)
319 #define pktq_avail(pq) ((int)((pq)->max - (pq)->len))
320 #define pktq_full(pq) ((pq)->len >= (pq)->max)
[all...]
/hardware/libhardware/tests/camera2/
H A DCameraMultiStreamTests.cpp138 Size* max, int32_t* idx) {
149 max->width = data[maxIdx];
150 max->height = data[maxIdx + 1];
507 ALOGV("Found processed max size: %dx%d, min size = %dx%d",
528 ALOGV("Found Jpeg size max idx = %d", maxIdx);
543 // Capture stream should be the max size of jpeg sizes.
627 ALOGV("Sensitivity Range: min=%d, max=%d", minSensitivity,
137 GetMaxSize(const int32_t* data, size_t count, Size* max, int32_t* idx) argument
/hardware/qcom/display/msm8960/libcopybit/
H A Dcopybit.cpp99 /** max of int a, b */
100 static inline int max(int a, int b) { function
116 out->l = max(lhs->l, rhs->l);
117 out->t = max(lhs->t, rhs->t);
/hardware/qcom/display/msm8974/libcopybit/
H A Dcopybit.cpp101 /** max of int a, b */
102 static inline int max(int a, int b) { function
118 out->l = max(lhs->l, rhs->l);
119 out->t = max(lhs->t, rhs->t);
/hardware/qcom/display/msm8x26/libcopybit/
H A Dcopybit.cpp99 /** max of int a, b */
100 static inline int max(int a, int b) { function
116 out->l = max(lhs->l, rhs->l);
117 out->t = max(lhs->t, rhs->t);
/hardware/qcom/audio/hal/msm8974/
H A Dplatform.c56 #define percent_to_index(val, min, max) \
57 ((val) * ((max) - (min)) * 0.01 + (min) + .5)
/hardware/qcom/display/msm8960/libhwcomposer/
H A Dhwc_utils.cpp613 nwr.right = max(nwr.right, displayFrame.right);
614 nwr.bottom = max(nwr.bottom, displayFrame.bottom);
618 nwr.left = max(nwr.left, fbDisplayFrame.left);
619 nwr.top = max(nwr.top, fbDisplayFrame.top);
H A Dhwc_utils.h264 template<typename T> inline T max(T a, T b) { return (a > b) ? a : b; } function in namespace:qhwc
/hardware/qcom/display/msm8974/libhwcomposer/
H A Dhwc_utils.cpp574 nwr.right = max(nwr.right, displayFrame.right);
575 nwr.bottom = max(nwr.bottom, displayFrame.bottom);
579 nwr.left = max(nwr.left, fbDisplayFrame.left);
580 nwr.top = max(nwr.top, fbDisplayFrame.top);
H A Dhwc_utils.h317 template<typename T> inline T max(T a, T b) { return (a > b) ? a : b; } function in namespace:qhwc
/hardware/qcom/display/msm8x26/libhwcomposer/
H A Dhwc_utils.cpp573 nwr.right = max(nwr.right, displayFrame.right);
574 nwr.bottom = max(nwr.bottom, displayFrame.bottom);
578 nwr.left = max(nwr.left, fbDisplayFrame.left);
579 nwr.top = max(nwr.top, fbDisplayFrame.top);
H A Dhwc_utils.h264 template<typename T> inline T max(T a, T b) { return (a > b) ? a : b; } function in namespace:qhwc
/hardware/qcom/msm8x74/kernel-headers/linux/
H A Dmsm_vidc_enc.h284 unsigned long max; member in struct:venc_range
/hardware/qcom/msm8x74/original-kernel-headers/linux/
H A Dmsm_vidc_enc.h514 unsigned long max; member in struct:venc_range
/hardware/qcom/display/msm8960/libgralloc/
H A Dframebuffer.cpp50 /** max of int a, b */
51 static inline int max(int a, int b) { function
/hardware/qcom/display/msm8974/libgralloc/
H A Dframebuffer.cpp50 /** max of int a, b */
51 static inline int max(int a, int b) { function

Completed in 1210 milliseconds

12