Lines Matching refs:bs
1 function blob8 = eq_iir_blob_pack(bs, endian)
5 % blob8 = eq_iir_blob_pack(bs, endian)
6 % bs - blob struct
21 if bs.channels_in_config ~= length( bs.assign_response)
22 bs
37 nbytes_head = (7+bs.channels_in_config)*4;
38 nbytes_coef = length(bs.all_coefficients)*4;
54 blob8(j:j+3) = w2b(bs.channels_in_config, sh); j=j+4;
55 blob8(j:j+3) = w2b(bs.number_of_responses_defined, sh); j=j+4;
61 for i=1:bs.channels_in_config
62 blob8(j:j+3) = w2b(int32(bs.assign_response(i)), sh);
67 for i=1:length(bs.all_coefficients)
68 blob8(j:j+3) = w2b(int32(bs.all_coefficients(i)), sh);