Searched defs:conv_mtx (Results 1 - 3 of 3) sorted by relevance

/external/adhd/cras/src/tests/
H A Daudio_format_unittest.cc29 if (conv_mtx)
30 cras_channel_conv_matrix_destroy(conv_mtx, 6);
35 float **conv_mtx; member in class:__anon750::ChannelConvMtxTestSuite
53 conv_mtx = cras_channel_conv_matrix_create(in_fmt, out_fmt);
54 ASSERT_NE(conv_mtx, (void *)NULL);
72 conv_mtx = cras_channel_conv_matrix_create(in_fmt, out_fmt);
73 ASSERT_EQ(conv_mtx, (void *)NULL);
93 conv_mtx = cras_channel_conv_matrix_create(in_fmt, out_fmt);
94 ASSERT_NE(conv_mtx, (void *)NULL);
H A Dfmt_conv_unittest.cc1267 float** conv_mtx; local
1268 conv_mtx = (float **)calloc(CRAS_CH_MAX, sizeof(*conv_mtx));
1270 conv_mtx[i] = (float *)calloc(CRAS_CH_MAX, sizeof(*conv_mtx[i]));
1271 return conv_mtx;
/external/adhd/cras/src/server/
H A Dcras_alsa_helpers.c157 float **conv_mtx; local
182 conv_mtx = cras_channel_conv_matrix_create(fmt, conv_fmt);
183 if (conv_mtx) {
184 cras_channel_conv_matrix_destroy(conv_mtx,

Completed in 232 milliseconds