Using the following stored procedure:
create or replace procedure sp_param_test(p_1 number, p_2 in out number) as begin p_2 := p_2 * 2; end;