Lines Matching refs:val
597 my $val = $params{$name};
600 if (substr($val, 0, 1) eq '*') {
601 $def .= 'OSSL_' . substr($val, 1);
603 $def .= '"' . $val . '"';
620 my $val = $params{$name};
622 if (substr($val, 0, 1) ne '*' and not defined $reverse{$val}) {
623 $reverse{$val} = $count++;
629 my $val = $params{$name};
632 if (substr($val, 0, 1) eq '*') {
633 $def .= 'PIDX_' . substr($val, 1);
635 $def .= $reverse{$val};
648 my $val = $params{$name};
649 if (substr($val, 0, 1) ne '*') {
652 $chars += length($val);
653 for my $i (0 .. length($val) - 1) {
654 my $c = substr($val, $i, 1);