/hardware/libhardware/include/hardware/ |
D | hardware.h | 37 #define HARDWARE_MAKE_API_VERSION(maj,min) \ argument 38 ((((maj) & 0xff) << 8) | ((min) & 0xff)) 40 #define HARDWARE_MAKE_API_VERSION_2(maj,min,hdr) \ argument 41 ((((maj) & 0xff) << 24) | (((min) & 0xff) << 16) | ((hdr) & 0xffff)) 68 #define HARDWARE_MODULE_API_VERSION(maj,min) HARDWARE_MAKE_API_VERSION(maj,min) argument 69 #define HARDWARE_MODULE_API_VERSION_2(maj,min,hdr) HARDWARE_MAKE_API_VERSION_2(maj,min,hdr) argument 74 #define HARDWARE_DEVICE_API_VERSION(maj,min) HARDWARE_MAKE_API_VERSION(maj,min) argument 75 #define HARDWARE_DEVICE_API_VERSION_2(maj,min,hdr) HARDWARE_MAKE_API_VERSION_2(maj,min,hdr) argument
|
D | consumerir.h | 30 int min; member
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
D | PERF.awk | 39 min = (size != "") ? (size) : (min != "") ? (min) : 1; # min size of buffers to watch 58 else if (gsub("^size=", "",arg)) { min = max = (arg) } 59 else if (gsub("^min=", "",arg)) { min = (arg) } 97 print "min = ", min 102 min = min + 0 120 ((0 + $17) >= min) &&
|
/hardware/ti/omap4-aah/libtiutils/ |
D | 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) { in min() 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/ |
D | consumerir.c | 27 {.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/qcom/audio/legacy/libalsa-intf/ |
D | alsa_mixer.c | 50 #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) 260 ei->value.integer.min, in mixer_dump() 267 ei->value.integer64.min, in mixer_dump() 313 long *min, long *max, unsigned int *tlv_type) in mixer_ctl_read_tlv() argument 357 *min = (long)tlv[2]; in mixer_ctl_read_tlv() 378 *min = tlv[2]; in mixer_ctl_read_tlv() 401 long min, max; in mixer_ctl_get() local [all …]
|
D | alsa_pcm.c | 225 i->min = val; in param_set_min() 241 i->min = val; in param_set_int() 260 i->min = 0; in param_init() 301 param_name[n], i->min, i->max, i->openmin, in param_dump() 361 i->min, i->max, i->openmin, in pcm_buffer_size() 363 return i->min; in pcm_buffer_size() 371 i->min, i->max, i->openmin, in pcm_period_size() 373 return i->min; in pcm_period_size()
|
/hardware/intel/img/libdrm/libdrm/nouveau/ |
D | nouveau_pushbuf.c | 121 nouveau_pushbuf_space_call(struct nouveau_channel *chan, unsigned min) in nouveau_pushbuf_space_call() argument 128 if (min < PB_MIN_USER_DWORDS) in nouveau_pushbuf_space_call() 129 min = PB_MIN_USER_DWORDS; in nouveau_pushbuf_space_call() 132 if (nvpb->current_offset + min + 2 <= nvpb->size) in nouveau_pushbuf_space_call() 157 nouveau_pushbuf_space(struct nouveau_channel *chan, unsigned min) in nouveau_pushbuf_space() argument 163 return nouveau_pushbuf_space_call(chan, min); in nouveau_pushbuf_space() 170 nvpb->size = min < PB_MIN_USER_DWORDS ? PB_MIN_USER_DWORDS : min; in nouveau_pushbuf_space() 254 nouveau_pushbuf_flush(struct nouveau_channel *chan, unsigned min) in nouveau_pushbuf_flush() argument 325 ret = nouveau_pushbuf_space(chan, min); in nouveau_pushbuf_flush()
|
/hardware/qcom/audio/legacy/alsa_sound/ |
D | ALSAMixer.cpp | 84 min(SND_MIXER_VOL_RANGE_MIN), in mixer_info_t() 91 long min; member 197 getVolumeRange[i] (elem, &info->min, &info->max); in ALSAMixer() 234 getVolumeRange[i] (elem, &info->min, &info->max); in ALSAMixer() 272 long minVol = info->min; in setMasterVolume() 291 long minVol = info->min; in setMasterGain() 313 long minVol = info->min; in setVolume() 336 long minVol = info->min; in setGain()
|
/hardware/intel/bootstub/ |
D | imr_toc.h | 18 #define MAKE_TOC_VERSION(maj, min) ((min) << 16 | (maj)) argument
|
/hardware/qcom/audio/hal/msm8974/ |
D | platform.h | 143 #define percent_to_index(val, min, max) \ argument 144 ((val) * ((max) - (min)) * 0.01 + (min) + .5)
|
/hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/ |
D | AKFS_AOC.c | 128 AKFVEC min; in MeanVar() local 131 min.v[j] = v[0].v[j]; in MeanVar() 134 if(v[i].v[j] < min.v[j]){ in MeanVar() 135 min.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/samsung_slsi/exynos5/libmemtrack/ |
D | mali.c | 27 #define min(x, y) ((x) < (y) ? (x) : (y)) macro 46 size_t allocated_records = min(*num_records, ARRAY_SIZE(record_templates)); in mali_memtrack_get_memory()
|
/hardware/qcom/display/msm8960/libmemtrack/ |
D | kgsl.c | 28 #define min(x, y) ((x) < (y) ? (x) : (y)) macro 47 size_t allocated_records = min(*num_records, ARRAY_SIZE(record_templates)); in kgsl_memtrack_get_memory()
|
/hardware/qcom/display/msm8974/libmemtrack/ |
D | kgsl.c | 28 #define min(x, y) ((x) < (y) ? (x) : (y)) macro 47 size_t allocated_records = min(*num_records, ARRAY_SIZE(record_templates)); in kgsl_memtrack_get_memory()
|
/hardware/qcom/display/msm8084/libmemtrack/ |
D | kgsl.c | 28 #define min(x, y) ((x) < (y) ? (x) : (y)) macro 47 size_t allocated_records = min(*num_records, ARRAY_SIZE(record_templates)); in kgsl_memtrack_get_memory()
|
/hardware/qcom/display/msm8226/libmemtrack/ |
D | kgsl.c | 28 #define min(x, y) ((x) < (y) ? (x) : (y)) macro 47 size_t allocated_records = min(*num_records, ARRAY_SIZE(record_templates)); in kgsl_memtrack_get_memory()
|
/hardware/qcom/display/msm8084/libqdutils/ |
D | cb_utils.cpp | 33 irect.left = min(rect1.left, rect2.left); in getUnion() 34 irect.top = min(rect1.top, rect2.top); in getUnion()
|
/hardware/qcom/display/msm8226/libqdutils/ |
D | cb_utils.cpp | 33 irect.left = min(rect1.left, rect2.left); in getUnion() 34 irect.top = min(rect1.top, rect2.top); in getUnion()
|
/hardware/intel/img/psb_video/src/ |
D | psb_overlay.h | 78 #define CLAMP_ATTR(a,max,min) (a>max?max:(a<min?min:a)) argument
|
/hardware/libhardware/modules/usbaudio/ |
D | alsa_device_profile.c | 224 static unsigned profile_enum_sample_rates(alsa_device_profile* profile, unsigned min, unsigned max) in profile_enum_sample_rates() argument 232 if (std_sample_rates[index] >= min && std_sample_rates[index] <= max in profile_enum_sample_rates() 276 static unsigned profile_enum_channel_counts(alsa_device_profile* profile, unsigned min, unsigned ma… in profile_enum_channel_counts() argument 297 if (channel_counts[index] >= min && channel_counts[index] <= max /* && in profile_enum_channel_counts()
|
/hardware/ti/omap4-aah/camera/inc/ |
D | CameraHal.h | 128 FpsRange(int min, int max); 136 int min() const; 154 if ( left->min() < right->min() ) { in compare() 158 if ( left->min() > right->min() ) { in compare() 165 inline FpsRange::FpsRange(const int min, const int max) : mMin(min), mMax(max) {} in FpsRange() argument 181 inline int FpsRange::min() const { return mMin; } in min() function
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
D | vpx-astyle.sh | 4 --min-conditional-indent=0 \
|
/hardware/intel/img/psb_headers/DRM/cc54/inc/ |
D | drm_common_api.h | 51 uint8_t min; member
|
/hardware/intel/common/libmix/videodecoder/securevideo/clovertrail/ |
D | VideoDecoderAVCSecure.cpp | 61 #ifndef min 62 #define min(X, Y) ((X) <(Y) ? (X) : (Y)) macro 428 naluHeaderLen = min(naluStream->naluLen, MAX_SLICE_HEADER_SIZE); in copyNaluHeader()
|