Home
last modified time | relevance | path

Searched refs:sprefix (Results 1 – 9 of 9) sorted by relevance

/openbsd/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/
H A DMM_Any.pm2022 my $sprefix = $Config{siteprefixexp} || '';
2025 $sprefix = $iprefix unless $sprefix;
2036 $self->{SITEPREFIX} ||= $sprefix;
2071 sitebin => { s => $sprefix,
2080 sitescript => { s => $sprefix,
2091 siteman1dir => { s => $sprefix,
2104 siteman3dir => { s => $sprefix,
2124 sitelib => { s => $sprefix,
2137 sitearch => { s => $sprefix,
H A DMM_VMS.pm1828 my($self, $var, $sprefix, $rprefix, $default) = @_;
1833 $sprefix = vmspath($sprefix) if $sprefix;
1850 elsif( $sprefix eq $rprefix ) {
1856 warn " from $sprefix to $rprefix\n" if $Verbose >= 2;
H A DMM_Unix.pm3334 my($self,$var,$sprefix,$rprefix,$default) = @_;
3339 $rprefix .= '/' if $sprefix =~ m|/$|;
3342 warn " from $sprefix to $rprefix\n" if $Verbose >= 2;
3345 $path !~ s{^\Q$sprefix\E\b}{$rprefix}s )
/openbsd/usr.bin/cvs/
H A Drcs.c2377 char *logp, *l_line, *prefix, *q, *sprefix; in rcs_kwexp_line() local
2405 sprefix = xstrdup(prefix); in rcs_kwexp_line()
2406 for (i = strlen(sprefix); i > 0 && in rcs_kwexp_line()
2407 sprefix[i - 1] == ' '; i--) in rcs_kwexp_line()
2408 sprefix[i - 1] = '\0'; in rcs_kwexp_line()
2449 "%s\n", sprefix); in rcs_kwexp_line()
2471 sprefix, end); in rcs_kwexp_line()
2480 free(sprefix); in rcs_kwexp_line()
/openbsd/gnu/usr.bin/binutils-2.17/bfd/
H A Dpef.c731 const char *const sprefix = "__stub_"; in bfd_pef_parse_function_stubs() local
839 name = bfd_alloc (abfd, strlen (sprefix) + namelen + 1); in bfd_pef_parse_function_stubs()
843 snprintf (name, strlen (sprefix) + namelen + 1, "%s%s", in bfd_pef_parse_function_stubs()
844 sprefix, symname); in bfd_pef_parse_function_stubs()
/openbsd/gnu/usr.bin/binutils/bfd/
H A Dpef.c796 const char *const sprefix = "__stub_"; local
903 name = bfd_alloc (abfd, strlen (sprefix) + namelen + 1);
907 snprintf (name, strlen (sprefix) + namelen + 1, "%s%s",
908 sprefix, symname);
/openbsd/usr.bin/less/
H A Dfuncs.h16 int sprefix(char *, char *, int);
H A Dmain.c339 sprefix(char *ps, char *s, int uppercase) in sprefix() function
H A Dopttbl.c514 len = sprefix(optname, oname->oname, uppercase); in findopt_name()