Lines Matching refs:sl
248 int i, j, sl ; in test_nms_adpcm_32() local
259 { sl = pcm_data_src [i * NMS_SAMPLES_PER_BLOCK + j] ; in test_nms_adpcm_32()
260 code = nms_adpcm_encode_sample (&nms, sl) ; in test_nms_adpcm_32()
278 { sl = nms_adpcm_decode_sample (&nms, buffer [j]) ; in test_nms_adpcm_32()
279 if (sl != pcm_data_out32 [i * NMS_SAMPLES_PER_BLOCK + j]) in test_nms_adpcm_32()
281 i * NMS_SAMPLES_PER_BLOCK + j, i, j, pcm_data_out32 [i * NMS_SAMPLES_PER_BLOCK + j], sl) ; in test_nms_adpcm_32()
299 int i, j, sl ; in test_nms_adpcm_24() local
311 { sl = pcm_data_src [i * NMS_SAMPLES_PER_BLOCK + j] ; in test_nms_adpcm_24()
312 code = nms_adpcm_encode_sample (&nms, sl) ; in test_nms_adpcm_24()
331 { sl = nms_adpcm_decode_sample (&nms, buffer [j]) ; in test_nms_adpcm_24()
332 if (sl != pcm_data_out24 [i * NMS_SAMPLES_PER_BLOCK + j]) in test_nms_adpcm_24()
334 i * NMS_SAMPLES_PER_BLOCK + j, i, j, pcm_data_out24 [i * NMS_SAMPLES_PER_BLOCK + j], sl) ; in test_nms_adpcm_24()
350 int i, j, sl ; in test_nms_adpcm_16() local
361 { sl = pcm_data_src [i * NMS_SAMPLES_PER_BLOCK + j] ; in test_nms_adpcm_16()
362 code = nms_adpcm_encode_sample (&nms, sl) ; in test_nms_adpcm_16()
380 { sl = nms_adpcm_decode_sample (&nms, buffer [j]) ; in test_nms_adpcm_16()
381 if (sl != pcm_data_out16 [i * NMS_SAMPLES_PER_BLOCK + j]) in test_nms_adpcm_16()
383 i * NMS_SAMPLES_PER_BLOCK + j, i, j, pcm_data_out16 [i * NMS_SAMPLES_PER_BLOCK + j], sl) ; in test_nms_adpcm_16()