Home
last modified time | relevance | path

Searched refs:max (Results 1 – 25 of 152) sorted by relevance

1234567

/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
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 = max + 0
121 ((0 + $17) <= max) {
/hardware/qcom/audio/legacy/libalsa-intf/
Dalsa_mixer.c50 #define check_range(val, min, max) \ argument
51 (((val < min) ? (min) : (val > max) ? (max) : (val)))
56 #define percent_to_index(val, min, max) \ argument
57 ((val) * ((max) - (min)) * 0.01 + (min) + .5)
137 unsigned max = mixer->ctl[n].info->value.enumerated.items; in mixer_close() local
138 for (m = 0; m < max; m++) in mixer_close()
261 ei->value.integer.max, in mixer_dump()
268 ei->value.integer64.max, in mixer_dump()
313 long *min, long *max, unsigned int *tlv_type) in mixer_ctl_read_tlv() argument
362 *max = (ctl->info->value.integer.max); in mixer_ctl_read_tlv()
[all …]
/hardware/ti/omap4-aah/libtiutils/
DUtilsCommon.h46 const T & max(const T & a, const T & b);
49 const T & bound(const T & min, const T & x, const T & max);
77 inline const T & max(const T & a, const T & b) { in max() function
82 inline const T & bound(const T & min, const T & x, const T & max) { in bound() argument
83 return x < min ? min : x > max ? max : x; in bound()
/hardware/libhardware/modules/consumerir/
Dconsumerir.c28 {.min = 30000, .max = 30000},
29 {.min = 33000, .max = 33000},
30 {.min = 36000, .max = 36000},
31 {.min = 38000, .max = 38000},
32 {.min = 40000, .max = 40000},
33 {.min = 56000, .max = 56000},
/hardware/qcom/audio/legacy/alsa_sound/
DALSAMixer.cpp85 max(SND_MIXER_VOL_RANGE_MAX), in mixer_info_t()
92 long max; member
197 getVolumeRange[i] (elem, &info->min, &info->max); in ALSAMixer()
198 info->volume = info->max; in ALSAMixer()
234 getVolumeRange[i] (elem, &info->min, &info->max); in ALSAMixer()
235 info->volume = info->max; in ALSAMixer()
273 long maxVol = info->max; in setMasterVolume()
292 long maxVol = info->max; in setMasterGain()
314 long maxVol = info->max; in setVolume()
337 long maxVol = info->max; in setGain()
/hardware/qcom/bt/msm8992/libbt-vendor/include/
Dhw_rome.h152 #define CALC_SEG_SIZE(len, max) ((plen) % (max))?((plen/max)+1) : ((plen) / (max)) argument
/hardware/qcom/bt/msm8996/libbt-vendor/include/
Dhw_rome.h153 #define CALC_SEG_SIZE(len, max) ((plen) % (max))?((plen/max)+1) : ((plen) / (max)) argument
/hardware/qcom/bt/msm8909/libbt-vendor/include/
Dhw_rome.h151 #define CALC_SEG_SIZE(len, max) ((plen) % (max))?((plen/max)+1) : ((plen) / (max)) argument
/hardware/qcom/bt/msm8998/libbt-vendor/include/
Dhw_rome.h152 #define CALC_SEG_SIZE(len, max) ((plen) % (max))?((plen/max)+1) : ((plen) / (max)) argument
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
Dbcmutils.h106 uint16 max; /* maximum number of queued packets */ member
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)
603 #define LIMIT_TO_RANGE(x, min, max) \ argument
[all …]
/hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
DAKFS_AOC.c127 AKFVEC max; in MeanVar() local
132 max.v[j] = v[0].v[j]; in MeanVar()
137 if(v[i].v[j] > max.v[j]){ in MeanVar()
138 max.v[j] = v[i].v[j]; in MeanVar()
141 mean->v[j] = (max.v[j] + min.v[j]) / 2.0; /*mean */ in MeanVar()
142 var->v[j] = max.v[j] - min.v[j]; /*var */ in MeanVar()
/hardware/qcom/display/msm8909/libhwcomposer/
Dhwc_qdcm.cpp236 out->writeInt32(value.max.hue); in qdcmGetPaRange()
237 out->writeInt32(value.max.saturation); in qdcmGetPaRange()
238 out->writeInt32(value.max.value); in qdcmGetPaRange()
239 out->writeInt32(value.max.contrast); in qdcmGetPaRange()
240 out->writeInt32(value.max.sat_thresh); in qdcmGetPaRange()
/hardware/libhardware/tests/hwc/
Dutil.c115 EGLint i, n, max; in select_config_for_window() local
131 if (eglGetConfigs(dpy, NULL, 0, &max) == EGL_FALSE) { in select_config_for_window()
136 cfg = (EGLConfig*) malloc(sizeof(EGLConfig) * max); in select_config_for_window()
140 if (eglChooseConfig(dpy, attr, cfg, max, &n) == EGL_FALSE) { in select_config_for_window()
/hardware/intel/img/psb_video/src/
Dpsb_drv_video.h82 #ifndef max
83 #define max(a, b) ((a) > (b)) ? (a) : (b) macro
689 #define psb__bounds_check(x, max) \ argument
690 do { ASSERT(x < max); if (x >= max) x = max - 1; } while(0);
Dpsb_overlay.h78 #define CLAMP_ATTR(a,max,min) (a>max?max:(a<min?min:a)) argument
/hardware/qcom/camera/
DQCameraParameters.h32 FPSRange(int min,int max){ in FPSRange()
34 maxFPS=max; in FPSRange()
/hardware/qcom/camera/msm8998/
DQCameraParameters.h32 FPSRange(int min,int max){ in FPSRange()
34 maxFPS=max; in FPSRange()
/hardware/qcom/display/msm8226/libqdutils/
Dcb_utils.cpp35 irect.right = max(rect1.right, rect2.right); in getUnion()
36 irect.bottom = max(rect1.bottom, rect2.bottom); in getUnion()
/hardware/qcom/display/msm8084/libqdutils/
Dcb_utils.cpp35 irect.right = max(rect1.right, rect2.right); in getUnion()
36 irect.bottom = max(rect1.bottom, rect2.bottom); in getUnion()
/hardware/qcom/display/msm8996/sdm/libs/utils/
Drect.cpp69 res.left = std::max(rect1.left, rect2.left); in Intersection()
70 res.top = std::max(rect1.top, rect2.top); in Intersection()
136 res.right = std::max(rect1.right, rect2.right); in Union()
137 res.bottom = std::max(rect1.bottom, rect2.bottom); in Union()
/hardware/qcom/display/msm8998/sdm/libs/utils/
Drect.cpp69 res.left = std::max(rect1.left, rect2.left); in Intersection()
70 res.top = std::max(rect1.top, rect2.top); in Intersection()
136 res.right = std::max(rect1.right, rect2.right); in Union()
137 res.bottom = std::max(rect1.bottom, rect2.bottom); in Union()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/arm/neon/
Dvp9_loopfilter_16_neon.asm115 vmax.u8 q11, q11, q12 ; m7 = max(m1, m2)
116 vmax.u8 q12, q13, q14 ; m8 = max(m3, m4)
120 vmax.u8 q3, q3, q4 ; m9 = max(m5, m6)
124 vmax.u8 q15, q11, q12 ; m10 = max(m7, m8)
128 vmax.u8 q15, q15, q3 ; m11 = max(m10, m9)
Dvp9_loopfilter_neon.asm197 vmax.u8 d19, d19, d20 ; m1 = max(m1, m2)
198 vmax.u8 d20, d21, d22 ; m2 = max(m3, m4)
202 vmax.u8 d3, d3, d4 ; m3 = max(m5, m6)
206 vmax.u8 d23, d19, d20 ; m1 = max(m1, m2)
211 vmax.u8 d23, d23, d3 ; m1 = max(m1, m3)
461 vmax.u8 d19, d19, d20 ; m1 = max(m1, m2)
462 vmax.u8 d20, d21, d22 ; m2 = max(m3, m4)
466 vmax.u8 d23, d23, d24 ; m3 = max(m5, m6)
485 vmax.u8 d25, d25, d26 ; m4 = max(m7, m8)
486 vmax.u8 d26, d27, d28 ; m5 = max(m10, m11)
[all …]
/hardware/qcom/wlan/qcwcn/wifi_hal/
Dgscancommand.h53 u32 max; /* max num of cached results specified by caller */ member
136 virtual int allocCachedResultsTemp(int max,
/hardware/qcom/display/msm8994/libqdutils/
Dcb_utils.cpp35 irect.right = max(rect1.right, rect2.right); in getUnion()
36 irect.bottom = max(rect1.bottom, rect2.bottom); in getUnion()

1234567