Home
last modified time | relevance | path

Searched refs:factor (Results 1 – 14 of 14) sorted by relevance

/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
Darmtime45 factor=0; # we are measuring after-before as (-before) + (after),
74 factor = factor ? 1 : -1
76 uptime_total += factor * $1
77 uptime_idle += factor * $2
80 print "got(/proc/uptime):", $0, "=>", factor, uptime_total, uptime_idle
86 MHZtime[$1] += factor * $2 * 0.01
87 cpu_time += factor * $2 * 0.01
88 cpu_MHz += factor * $1 * $2 / 100000 # (CPU freq is in kHz)
91 print "got(/sys/..time_in_state):", $0, "=>", factor, cpu_time, cpu_MHz, MHZtime[$1]
97 factor=1
Dperf263 factor=2x+
267 [ $rgb_size ] && EVAL="$EVAL $factor$cmd_VPPRrate+size=$rgb_size"
268 [ $yuv_size ] && EVAL="$EVAL $factor$cmd_VPPYrate+size=$yuv_size"
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_prob.h68 static INLINE vp9_prob weighted_prob(int prob1, int prob2, int factor) { in weighted_prob() argument
69 return ROUND_POWER_OF_TWO(prob1 * (256 - factor) + prob2 * factor, 8); in weighted_prob()
78 const unsigned int factor = max_update_factor * count / count_sat; in merge_probs() local
79 return weighted_prob(pre_prob, prob, factor); in merge_probs()
/hardware/qcom/display/msm8998/sdm/include/utils/
Dconstants.h59 inline T1 FloorToMultipleOf(const T1 &value, const T2 &factor) { in FloorToMultipleOf() argument
60 return (T1)(value & (~(factor - 1))); in FloorToMultipleOf()
64 inline T1 CeilToMultipleOf(const T1 &value, const T2 &factor) { in CeilToMultipleOf() argument
65 return (T1)((value + (factor - 1)) & (~(factor - 1))); in CeilToMultipleOf()
/hardware/qcom/display/msm8996/sdm/include/utils/
Dconstants.h59 inline T1 FloorToMultipleOf(const T1 &value, const T2 &factor) { in FloorToMultipleOf() argument
60 return (T1)(value & (~(factor - 1))); in FloorToMultipleOf()
64 inline T1 CeilToMultipleOf(const T1 &value, const T2 &factor) { in CeilToMultipleOf() argument
65 return (T1)((value + (factor - 1)) & (~(factor - 1))); in CeilToMultipleOf()
/hardware/libhardware_legacy/include/hardware_legacy/
Dwifi_config.h33 u16 factor);
/hardware/qcom/wlan/qcwcn/wifi_hal/
Dwificonfig.cpp160 u16 factor) in wifi_set_beacon_wifi_iface_stats_averaging_factor() argument
168 ALOGV("%s factor:%u", __FUNCTION__, factor); in wifi_set_beacon_wifi_iface_stats_averaging_factor()
204 QCA_WLAN_VENDOR_ATTR_WIFI_CONFIG_STATS_AVG_FACTOR, factor)) { in wifi_set_beacon_wifi_iface_stats_averaging_factor()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_aq_cyclicrefresh.c77 const float factor = 0.5; in apply_cyclic_refresh_bitrate() local
83 if (rc->av_per_frame_bandwidth < factor * number_blocks || in apply_cyclic_refresh_bitrate()
Dvp9_ratectrl.c289 static void set_rate_correction_factor(VP9_COMP *cpi, double factor) { in set_rate_correction_factor() argument
291 cpi->rc.key_frame_rate_correction_factor = factor; in set_rate_correction_factor()
295 cpi->rc.gf_rate_correction_factor = factor; in set_rate_correction_factor()
297 cpi->rc.rate_correction_factor = factor; in set_rate_correction_factor()
Dvp9_onyx_if.c1936 const int factor = (i == 0 || i == 3 ? 1 : 2); in scale_and_extend_frame() local
1937 const int x_q4 = x * (16 / factor) * in_w / out_w; in scale_and_extend_frame()
1938 const int y_q4 = y * (16 / factor) * in_h / out_h; in scale_and_extend_frame()
1941 uint8_t *src = srcs[i] + y / factor * in_h / out_h * src_stride + in scale_and_extend_frame()
1942 x / factor * in_w / out_w; in scale_and_extend_frame()
1943 uint8_t *dst = dsts[i] + y / factor * dst_stride + x / factor; in scale_and_extend_frame()
1948 16 / factor, 16 / factor); in scale_and_extend_frame()
/hardware/intel/img/hwcomposer/merrifield/common/devices/
DVirtualDevice.cpp1175 float factor = static_cast<float>(info.width) / videoWidth; in queueCompose() local
1176 scaledCrop.left *= factor; in queueCompose()
1177 scaledCrop.right *= factor; in queueCompose()
1180 float factor = static_cast<float>(info.height) / videoHeight; in queueCompose() local
1181 scaledCrop.top *= factor; in queueCompose()
1182 scaledCrop.bottom *= factor; in queueCompose()
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Dbcmutils.c1921 uint factor = 1; in bcm_qdbm_to_mw() local
1934 factor *= 10; in bcm_qdbm_to_mw()
1940 return ((nqdBm_to_mW_map[idx] + factor/2) / factor); in bcm_qdbm_to_mw()
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/
DVPPTest.c100 static OMX_ERRORTYPE VPP_SetZoom(OMX_HANDLETYPE pHandle, int speed, int factor, int limit, int xoff…
2087 static OMX_ERRORTYPE VPP_SetZoom(OMX_HANDLETYPE pHandle, int speed, int factor, int limit, int xoff…
2090 int nZoomFactor = factor<<10;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
Dfilter_v6.asm394 mov r4, #0x40 ; rounding factor (for smlad{x})