Home
last modified time | relevance | path

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

/linux/drivers/firmware/cirrus/test/
H A Dcs_dsp_test_wmfw_error.c634 alg_data->ncoeff = cpu_to_le32(le32_to_cpu(alg_data->ncoeff) + 1); in wmfw_v1_coeff_count_exceeds_block()
640 alg_data->ncoeff = cpu_to_le32(0xffffffff); in wmfw_v1_coeff_count_exceeds_block()
645 alg_data->ncoeff = cpu_to_le32(0x7fffffff); in wmfw_v1_coeff_count_exceeds_block()
650 alg_data->ncoeff = cpu_to_le32(0x80000000); in wmfw_v1_coeff_count_exceeds_block()
664 __le32 *alg_data, *ncoeff; in wmfw_v2_coeff_count_exceeds_block() local
688 ncoeff = (__force __le32 *)&alg_data[3]; in wmfw_v2_coeff_count_exceeds_block()
689 KUNIT_ASSERT_EQ(test, le32_to_cpu(*ncoeff), 1); in wmfw_v2_coeff_count_exceeds_block()
692 *ncoeff = cpu_to_le32(2); in wmfw_v2_coeff_count_exceeds_block()
698 *ncoeff = cpu_to_le32(0xffffffff); in wmfw_v2_coeff_count_exceeds_block()
703 *ncoeff = cpu_to_le32(0x7fffffff); in wmfw_v2_coeff_count_exceeds_block()
[all …]
H A Dcs_dsp_mock_wmfw.c377 v1->ncoeff = cpu_to_le32(builder->num_coeffs); in cs_dsp_mock_wmfw_end_alg_info_block()
/linux/drivers/media/dvb-frontends/
H A Ddib8000.c2213 const s16 *ncoeff; in dib8000_small_fine_tune() local
2228 ncoeff = coeff_2k_sb_1seg_dqpsk; in dib8000_small_fine_tune()
2230 ncoeff = coeff_2k_sb_1seg; in dib8000_small_fine_tune()
2234 ncoeff = coeff_2k_sb_3seg_0dqpsk_1dqpsk; in dib8000_small_fine_tune()
2236 ncoeff = coeff_2k_sb_3seg_0dqpsk; in dib8000_small_fine_tune()
2239 ncoeff = coeff_2k_sb_3seg_1dqpsk; in dib8000_small_fine_tune()
2241 ncoeff = coeff_2k_sb_3seg; in dib8000_small_fine_tune()
2248 ncoeff = coeff_4k_sb_1seg_dqpsk; in dib8000_small_fine_tune()
2250 ncoeff = coeff_4k_sb_1seg; in dib8000_small_fine_tune()
2254 ncoeff = coeff_4k_sb_3seg_0dqpsk_1dqpsk; in dib8000_small_fine_tune()
[all …]
/linux/sound/hda/common/
H A Dproc.c576 unsigned int i, ncoeff, oldindex; in print_proc_caps() local
578 ncoeff = (proc_caps & AC_PCAP_NUM_COEF) >> AC_PCAP_NUM_COEF_SHIFT; in print_proc_caps()
580 proc_caps & AC_PCAP_BENIGN, ncoeff); in print_proc_caps()
588 for (i = 0; i < ncoeff; i++) { in print_proc_caps()
/linux/drivers/firmware/cirrus/
H A Dcs_dsp.c1115 int ncoeff; member
1204 blk->ncoeff = le32_to_cpu(raw->ncoeff); in cs_dsp_coeff_parse_alg()
1228 if (sizeof(raw->ncoeff) > (data_len - pos)) in cs_dsp_coeff_parse_alg()
1231 blk->ncoeff = cs_dsp_coeff_parse_int(sizeof(raw->ncoeff), &tmp); in cs_dsp_coeff_parse_alg()
1232 pos += sizeof(raw->ncoeff); in cs_dsp_coeff_parse_alg()
1236 if ((int)blk->ncoeff < 0) in cs_dsp_coeff_parse_alg()
1241 cs_dsp_dbg(dsp, "# of coefficient descriptors: %#x\n", blk->ncoeff); in cs_dsp_coeff_parse_alg()
1352 for (i = 0; i < alg_blk.ncoeff; in cs_dsp_parse_coeff()
[all...]