/sof-3.4.0/src/platform/intel/cavs/include/cavs/lib/ |
D | asm_ldo_management.h | 57 .macro m_cavs_set_ldo_on_state ax, ay, az 59 l32i \az, \ay, 0 62 and \az, \ax, \az 64 or \ax, \az, \ax 69 .macro m_cavs_set_ldo_off_state ax, ay, az 77 l32i \az, \ay, 0 80 and \az, \az, \ax 83 or \ax, \ax, \az 89 .macro m_cavs_set_ldo_bypass_state ax, ay, az 97 l32i \az, \ay, 0 [all …]
|
D | asm_memory_management.h | 33 .macro m_cavs_hpsram_power_down_entire ax, ay, az 35 movi \az, SHIM_HSPGCTL(0) 41 l32i \ax, \az, 0 45 movi \az, SHIM_HSPGCTL(1) 51 l32i \ax, \az, 0 55 .macro m_cavs_hpsram_power_change segment_index, mask, ax, ay, az 66 .macro m_cavs_lpsram_power_down_entire ax, ay, az, loop_cnt_addr 67 movi \az, LSPGISTS
|
/sof-3.4.0/tools/tune/tdfb/ |
D | example_line_array.m | 16 az = -90:15:90; variable 17 close all; line_one_beam(48e3, 50e-3, az, 2, 64); 18 close all; line_one_beam(48e3, 68e-3, az, 2, 64); 19 close all; line_one_beam(16e3, 50e-3, az, 2, 40); 20 close all; line_one_beam(16e3, 68e-3, az, 2, 40); 23 close all; line_one_beam(48e3, 28e-3, az, 4, 80); 24 close all; line_one_beam(48e3, 68e-3, az, 4, 112); 25 close all; line_one_beam(48e3, 78e-3, az, 4, 120); 27 close all; line_one_beam(16e3, 28e-3, az, 4, 40); 28 close all; line_one_beam(16e3, 68e-3, az, 4, 52); [all …]
|
D | example_two_beams.m | 21 az = [0 30 90]; variable 22 azstr = az_to_string(az); 31 a1 = az; % Azimuth +az deg 32 a2 = -az; % Azimuth -az deg 39 a1 = az; % Azimuth +az deg 40 a2 = -az; % Azimuth -az deg 47 a1 = az; % Azimuth +az deg 48 a2 = -az; % Azimuth -az deg 55 a1 = az; % Azimuth +az deg 56 a2 = -az; % Azimuth -az deg [all …]
|
D | example_circular_array.m | 16 az = -180:30:150; variable 17 circular_one_beam(16e3, 100e-3, 8, 28, az); 18 circular_one_beam(48e3, 100e-3, 8, 64, az); 27 function circular_one_beam(fs, r, n, fir_length, az); 45 bf.steer_az = az; 46 bf.steer_el = 0 * az;
|
D | bf_filenames_helper.m | 46 % Contain multiple (az, el) angles 53 az = bf.steer_az(n); variable 58 id, az, el); 60 id, numpm(az), numpm(el), round(bf.fs/1e3)); 64 az, el); 67 numpm(az), numpm(el), round(bf.fs/1e3)); 70 % Single (az, el) value per file
|
D | example_line_0mm36mm146mm182mm.m | 17 function line_xyz(fs, fir_length, az) 41 bf.steer_az = az; 42 bf.steer_el = 0 * az;
|
D | bf_design.m | 56 % The design function handles only single (az, el) value, so need to 407 az = az_deg * pi/180; variable 408 [nx, ny, nz] = source_xyz(bf.steer_r, az, el); 509 function [x, y, z] = source_xyz(r, az, el) 511 x = r * cos(az) .* cos(el); 512 y = r * sin(az) .* cos(el);
|
/sof-3.4.0/src/audio/tdfb/ |
D | tdfb_direction.c | 250 cd->direction.az = 0; in tdfb_direction_init() 386 static void theoretical_time_differences(struct tdfb_comp_data *cd, int16_t az) in theoretical_time_differences() argument 397 sin_az = sin_fixed_16b(Q_SHIFT_LEFT((int32_t)az, 12, 28)); /* Q1.15 */ in theoretical_time_differences() 398 cos_az = cos_fixed_16b(Q_SHIFT_LEFT((int32_t)az, 12, 28)); /* Q1.15 */ in theoretical_time_differences() 448 int az = cd->direction.az_slow; in iterate_source_angle() local 454 theoretical_time_differences(cd, az); in iterate_source_angle() 458 az += az_step; in iterate_source_angle() 459 theoretical_time_differences(cd, az); in iterate_source_angle() 470 az = unwrap_radians(az); in iterate_source_angle() 473 if (az > PIDIV2_Q12) in iterate_source_angle() [all …]
|
/sof-3.4.0/tools/test/audio/ |
D | tdfb_direction_test.m | 66 legend('fast level', 'slow level', 'trigger', 'slow az' ); 97 function [ldb, az] = sinerot_dbfs(x, bf) 99 az = bf.sinerot_az_start:bf.sinerot_az_step:bf.sinerot_az_stop; variable 100 nt = length(az); 144 [rotx_dbfs, az] = sinerot_dbfs(x, bf); 145 [roty_dbfs, az] = sinerot_dbfs(y, bf); 151 plot(az, roty_dbfs - offset, '-', az, rotx_dbfs - offset, '--'); 162 az_rad = az * pi/180;
|
D | tdfb_test.m | 89 function [ldb, az] = sinerot_dbfs(x, bf) 91 az = bf.sinerot_az_start:bf.sinerot_az_step:bf.sinerot_az_stop; variable 92 nt = length(az); 136 [rotx_dbfs, az] = sinerot_dbfs(x, bf); 137 [roty_dbfs, az] = sinerot_dbfs(y, bf); 143 plot(az, roty_dbfs - offset, '-', az, rotx_dbfs - offset, '--'); 154 az_rad = az * pi/180;
|
/sof-3.4.0/src/arch/xtensa/xtos/ |
D | xtos-internal.h | 278 .macro xtos_update_intenable ax, ay, az 281 l32i \az, \ax, XTOS_ENABLED_OFS // az = _xtos_enabled 283 and \az, \az, \ay // az = _xtos_enabled & _xtos_vpri_enabled 288 and \az, \az, \ay // az &= ~_xtos_pending 290 wsr.intenable \az
|
/sof-3.4.0/src/include/sof/audio/tdfb/ |
D | tdfb_comp.h | 77 int16_t az; member
|
/sof-3.4.0/tools/tune/eq/ |
D | eq_iir_blob_quant.m | 63 az = angle(eq_z); variable 65 [~, iz] = sort(abs(az));
|