Home
last modified time | relevance | path

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

/external/libldac/src/
Dmdct_fixp_ldac.c33 const INT32 *p_w, *p_c, *p_s; in proc_mdct_core_ldac() local
40 p_s = gaa_wsin_ldac[i]; in proc_mdct_core_ldac()
85 g1 = mul_rsftrnd_ldac(a_work[index1+1], p_s[coef], LDAC_Q_MDCT_SIN+1); in proc_mdct_core_ldac()
88 g0 = mul_rsftrnd_ldac(a_work[index1], p_s[coef], LDAC_Q_MDCT_SIN+1); in proc_mdct_core_ldac()
115 g1 = mul_rsftrnd_ldac(a_work[index0+1], p_s[coef], LDAC_Q_MDCT_SIN+shift); in proc_mdct_core_ldac()
118 g0 = mul_rsftrnd_ldac(a_work[index0], p_s[coef], LDAC_Q_MDCT_SIN+shift); in proc_mdct_core_ldac()
Dmdct_ldac.c32 const SCALAR *p_w, *p_c, *p_s; in proc_mdct_core_ldac() local
41 p_s = gaa_wsin_ldac[i]; in proc_mdct_core_ldac()
62 cs = p_s[coef++]; in proc_mdct_core_ldac()
84 cs = p_s[coef++]; in proc_mdct_core_ldac()
Dsetpcm_fixp_ldac.c28 short *p_s; in byte_data_to_int_s16_ldac() local
30 p_s = (short *)p_in; in byte_data_to_int_s16_ldac()
32 *p_out++ = lsft_ldac((INT32)*p_s++, LDAC_Q_SETPCM); in byte_data_to_int_s16_ldac()
Dsetpcm_ldac.c28 short *p_s; in byte_data_to_scalar_s16_ldac() local
30 p_s = (short *)p_in; in byte_data_to_scalar_s16_ldac()
32 *p_out++ = (SCALAR)*p_s++; in byte_data_to_scalar_s16_ldac()
/external/python/cpython2/Modules/
Dposixmodule.c4760 FILE *p_s[3]; in _PyPopen() local
4843 if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL) in _PyPopen()
4862 if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL) in _PyPopen()
4885 if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL) in _PyPopen()
4924 p_s[i]->_pid = pipe_pid; in _PyPopen()
4949 if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL) in _PyPopen()
4951 if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL) in _PyPopen()
4955 if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL) in _PyPopen()
4995 fileObj[0] = PyLong_FromVoidPtr(p_s[0]); in _PyPopen()
5002 fileObj[1] = PyLong_FromVoidPtr(p_s[1]); in _PyPopen()
[all …]