Home
last modified time | relevance | path

Searched refs:x_p (Results 1 – 5 of 5) sorted by relevance

/external/libxaac/decoder/drc_src/
Dimpd_drc_fiilter_bank.c258 FLOAT32 st1 = filter->x_p[chan_idx * 2]; in impd_iir_second_order_filter_all_pass()
267 filter->x_p[chan_idx * 2] = st1; in impd_iir_second_order_filter_all_pass()
285 FLOAT32 st1_l = pstr_lp_filt_coeff->x_p[chan_idx * 2 + 0]; in impd_apply_low_high_filter()
286 FLOAT32 st2_l = pstr_lp_filt_coeff->x_p[chan_idx * 2 + 1]; in impd_apply_low_high_filter()
296 FLOAT32 st1_h = pstr_hp_filt_coeff->x_p[chan_idx * 2 + 0]; in impd_apply_low_high_filter()
297 FLOAT32 st2_h = pstr_hp_filt_coeff->x_p[chan_idx * 2 + 1]; in impd_apply_low_high_filter()
322 pstr_lp_filt_coeff->x_p[chan_idx * 2 + 0] = st1_l; in impd_apply_low_high_filter()
323 pstr_lp_filt_coeff->x_p[chan_idx * 2 + 1] = st2_l; in impd_apply_low_high_filter()
327 pstr_hp_filt_coeff->x_p[chan_idx * 2 + 0] = st1_h; in impd_apply_low_high_filter()
328 pstr_hp_filt_coeff->x_p[chan_idx * 2 + 1] = st2_h; in impd_apply_low_high_filter()
Dimpd_drc_filter_bank.c258 FLOAT32 st1 = filter->x_p[chan_idx * 2]; in impd_iir_second_order_filter_all_pass()
267 filter->x_p[chan_idx * 2] = st1; in impd_iir_second_order_filter_all_pass()
285 FLOAT32 st1_l = pstr_lp_filt_coeff->x_p[chan_idx * 2 + 0]; in impd_apply_low_high_filter()
286 FLOAT32 st2_l = pstr_lp_filt_coeff->x_p[chan_idx * 2 + 1]; in impd_apply_low_high_filter()
296 FLOAT32 st1_h = pstr_hp_filt_coeff->x_p[chan_idx * 2 + 0]; in impd_apply_low_high_filter()
297 FLOAT32 st2_h = pstr_hp_filt_coeff->x_p[chan_idx * 2 + 1]; in impd_apply_low_high_filter()
322 pstr_lp_filt_coeff->x_p[chan_idx * 2 + 0] = st1_l; in impd_apply_low_high_filter()
323 pstr_lp_filt_coeff->x_p[chan_idx * 2 + 1] = st2_l; in impd_apply_low_high_filter()
327 pstr_hp_filt_coeff->x_p[chan_idx * 2 + 0] = st1_h; in impd_apply_low_high_filter()
328 pstr_hp_filt_coeff->x_p[chan_idx * 2 + 1] = st2_h; in impd_apply_low_high_filter()
Dimpd_drc_filter_bank.h63 FLOAT32 x_p[MAX_CHANNEL_COUNT * 2]; member
/external/tensorflow/tensorflow/python/kernel_tests/
Dbetainc_op_test.py103 x_p = array_ops.placeholder(dtype)
104 math_ops.betainc(a_p, b_p, x_p).eval(
107 x_p: [[0.5]]})
/external/python/cpython3/Objects/
Dlongobject.c76 _PyLong_Negate(PyLongObject **x_p) in _PyLong_Negate() argument
80 x = (PyLongObject *)*x_p; in _PyLong_Negate()
86 *x_p = (PyLongObject *)PyLong_FromLong(-MEDIUM_VALUE(x)); in _PyLong_Negate()