• Home
  • Raw
  • Download

Lines Matching refs:cb_idx

1821                             unsigned cb_idx;  in decode_spectrum_and_dequant()  local
1825 cb_idx = code; in decode_spectrum_and_dequant()
1827 cf = DEC_SQUAD(cf, cb_idx); in decode_spectrum_and_dequant()
1829 cf = VMUL4(cf, vq, cb_idx, sf + idx); in decode_spectrum_and_dequant()
1843 unsigned cb_idx; in decode_spectrum_and_dequant() local
1848 cb_idx = code; in decode_spectrum_and_dequant()
1849 nnz = cb_idx >> 8 & 15; in decode_spectrum_and_dequant()
1853 cf = DEC_UQUAD(cf, cb_idx, bits); in decode_spectrum_and_dequant()
1855 cf = VMUL4S(cf, vq, cb_idx, bits, sf + idx); in decode_spectrum_and_dequant()
1868 unsigned cb_idx; in decode_spectrum_and_dequant() local
1872 cb_idx = code; in decode_spectrum_and_dequant()
1874 cf = DEC_SPAIR(cf, cb_idx); in decode_spectrum_and_dequant()
1876 cf = VMUL2(cf, vq, cb_idx, sf + idx); in decode_spectrum_and_dequant()
1891 unsigned cb_idx; in decode_spectrum_and_dequant() local
1896 cb_idx = code; in decode_spectrum_and_dequant()
1897 nnz = cb_idx >> 8 & 15; in decode_spectrum_and_dequant()
1898 sign = nnz ? SHOW_UBITS(re, gb, nnz) << (cb_idx >> 12) : 0; in decode_spectrum_and_dequant()
1901 cf = DEC_UPAIR(cf, cb_idx, sign); in decode_spectrum_and_dequant()
1903 cf = VMUL2S(cf, vq, cb_idx, sign, sf + idx); in decode_spectrum_and_dequant()
1923 unsigned cb_idx; in decode_spectrum_and_dequant() local
1929 cb_idx = code; in decode_spectrum_and_dequant()
1931 if (cb_idx == 0x0000) { in decode_spectrum_and_dequant()
1937 nnz = cb_idx >> 12; in decode_spectrum_and_dequant()
1938 nzt = cb_idx >> 8; in decode_spectrum_and_dequant()
1972 v = cb_idx & 15; in decode_spectrum_and_dequant()
1977 unsigned v = ((const uint32_t*)vq)[cb_idx & 15]; in decode_spectrum_and_dequant()
1982 cb_idx >>= 4; in decode_spectrum_and_dequant()