/sof-2.7.6/test/cmocka/src/audio/mux/ |
D | mux_get_processing_function.c | 79 mux_func func = NULL; in test_mux_get_processing_function_invalid_float() local 84 func = mux_get_processing_function(td->dev); in test_mux_get_processing_function_invalid_float() 86 assert_ptr_equal(func, NULL); in test_mux_get_processing_function_invalid_float() 94 mux_func func = NULL; in test_mux_get_processing_function_valid_s16le() local 98 func = mux_get_processing_function(td->dev); in test_mux_get_processing_function_valid_s16le() 100 assert_ptr_not_equal(func, NULL); in test_mux_get_processing_function_valid_s16le() 108 mux_func func = NULL; in test_mux_get_processing_function_valid_s24_4le() local 112 func = mux_get_processing_function(td->dev); in test_mux_get_processing_function_valid_s24_4le() 114 assert_ptr_not_equal(func, NULL); in test_mux_get_processing_function_valid_s24_4le() 122 mux_func func = NULL; in test_mux_get_processing_function_valid_s32le() local [all …]
|
/sof-2.7.6/src/arch/xtensa/xtos/ |
D | exc-sethandler.c | 51 _xtos_handler func = f; in _xtos_set_exception_handler() local 53 if( func == 0 ) { in _xtos_set_exception_handler() 54 func = &xtos_p_none; in _xtos_set_exception_handler() 57 xtos_exc_handler_table[n] = ( (func == &xtos_p_none) in _xtos_set_exception_handler() 60 xtos_c_handler_table[n] = func; in _xtos_set_exception_handler()
|
/sof-2.7.6/src/include/sof/audio/ |
D | pcm_converter.h | 62 pcm_converter_func func; /**< PCM conversion function */ member 88 return pcm_func_map[i].func; in pcm_get_conversion_function() 100 pcm_converter_func func; /**< PCM conversion function */ member 134 return pcm_func_vc_map[i].func; in pcm_get_conversion_vc_function()
|
D | volume.h | 122 vol_scale_func func; /**< volume processing function */ member 134 vol_zc_func func; /**< volume zc function */ member 154 return func_map[i].func; in vol_get_processing_function()
|
D | buffer.h | 148 #define buffer_set_cb(buffer, func, data, type) \ argument 150 buffer->cb = func; \
|
/sof-2.7.6/src/include/sof/audio/dcblock/ |
D | dcblock.h | 48 dcblock_func func; /**< processing function */ member 69 return dcblock_fnmap[i].func; in dcblock_find_func()
|
/sof-2.7.6/tools/tune/eq/ |
D | eq_load_dsp_ini.m | 97 func = get(section.edit, "callback"); variable 98 func(section.edit, 0); 106 func = get(enable_switch, "callback"); variable 107 func(enable_switch, 0);
|
/sof-2.7.6/src/include/sof/audio/eq_iir/ |
D | eq_iir.h | 28 eq_iir_func func; /**< processing function */ member
|
/sof-2.7.6/src/include/sof/trace/ |
D | preproc.h | 131 #define META_SEQ_FROM_0_TO(arg_count, func)\ argument 132 META_RECURSE(META_REPEAT(arg_count, func, ~))
|
/sof-2.7.6/src/include/sof/audio/smart_amp/ |
D | smart_amp.h | 145 smart_amp_func func; member
|
/sof-2.7.6/tools/test/audio/ |
D | process_test.m | 34 t.comp = comp; % Pass component name from func arguments 38 t.fs = fs; % Sample rate from func arguments 41 t.bits_in = bits_in_list; % Input word length from func arguments 42 t.bits_out = bits_out_list; % Output word length from func arguments
|
/sof-2.7.6/src/audio/rtnr/ |
D | rtnr.c | 46 rtnr_func func; /**< processing function */ member 178 return rtnr_fnmap[i].func; in rtnr_find_func()
|
/sof-2.7.6/scripts/ |
D | checkpatch.pl | 5612 my $func = $1; 5614 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) && 5624 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) { 5758 my $func = $constant_func; 5759 $func =~ s/^__constant_//; 5761 "$constant_func should be $func\n" . $herecurr) && 5763 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g; 6674 my $func = $entry->[0]; 6686 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]"; 6690 if (!($func =~ /^(?:module_param|proc_create)/ && $val eq "0") &&
|
/sof-2.7.6/src/audio/eq_iir/ |
D | eq_iir.c | 322 return map[i].func; in eq_iir_find_func()
|
/sof-2.7.6/src/audio/volume/ |
D | volume.c | 794 return zc_func_map[i].func; in vol_get_zc_function()
|