Searched defs:low (Results 1 - 10 of 10) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_common.h55 static INLINE int clamp(int value, int low, int high) { argument
56 return value < low ? low : (value > high ? high : value);
59 static INLINE double fclamp(double value, double low, double high) { argument
60 return value < low ? low : (value > high ? high : value);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Drate_hist.c23 int low; member in struct:hist_bucket
57 hist->bucket[i].low = INT_MAX;
112 if (hist->bucket[idx].low > avg_bitrate)
113 hist->bucket[idx].low = (int)avg_bitrate;
165 assert(bucket[merge_bucket].low != bucket[merge_bucket].high);
236 if (bucket[i].low == bucket[i].high)
237 fprintf(stderr, pat1, bucket[i].low, "");
239 fprintf(stderr, pat2, bucket[i].low, bucket[i].high);
256 bucket[buckets].low = bucket[buckets].high = i;
274 if (hist->bucket[i].low
[all...]
/hardware/qcom/audio/post_proc/
H A Dequalizer.c124 uint32_t *low, uint32_t *high)
127 *low = equalizer_band_freq_range[band][0];
123 equalizer_get_band_freq_range(equalizer_context_t *context __unused, int32_t band, uint32_t *low, uint32_t *high) argument
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
H A Dwpa.h58 uint8 low; member in struct:__anon43::__anon44
70 uint8 low; member in struct:__anon45::__anon46
90 uint8 low; member in struct:__anon48::__anon49
99 uint8 low; member in struct:__anon50::__anon51
/hardware/libhardware_legacy/include/hardware_legacy/
H A Dgscan.h99 // low, the firmware should choose to generate results as
143 wifi_rssi low; // low threshold member in struct:__anon1347
/hardware/qcom/gps/core/
H A DLocApiBase.cpp78 unsigned char ch = data[i], low = ch & 0x0F, hi = ch >> 4; local
79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
/hardware/qcom/gps/msm8960/core/
H A DLocApiBase.cpp77 unsigned char ch = data[i], low = ch & 0x0F, hi = ch >> 4; local
78 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_ratectrl.c401 static int get_active_quality(int q, int gfu_boost, int low, int high, argument
405 } else if (gfu_boost < low) {
408 const int gap = high - low;
/hardware/intel/img/libdrm/libdrm/
H A Dxf86drm.c1014 int drmMarkBufs(int fd, double low, double high) argument
1038 info.list[i].low_mark = low * info.list[i].count;
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dwlioctl.h386 * low half is count of channels in channel_list, 0
782 uint32 tsf_l; /* TSF low 32-bits */
801 uint32 tsf_l; /* TSF low 32-bits */
1792 * keep low enough to fit in an int8, units are .25 dBm
1991 uint16 nphy_b_energy_lo_aci; /* low ACI power energy threshold for bphy */
3564 uint32 low; member in struct:wl_msglevel2
4702 uint32 tsf_l; /* TSF timer low */
5260 #define CHANNEL_5G_LOW_START 36 /* 5G low (36..48) CDD enable/disable bit mask */

Completed in 357 milliseconds