Searched refs:prefix (Results 1 - 25 of 890) sorted by relevance

1234567891011>>

/freebsd-current/contrib/bmake/
H A Dmakefile.in6 prefix= @prefix@
12 ${srcdir}/boot-strap --prefix=${prefix} -o . op=$@
/freebsd-current/usr.bin/systat/
H A Dmode.c73 if (prefix(cmd, "mode")) {
78 } else if (prefix(args, "rate")) {
80 } else if (prefix(args, "delta")) {
82 } else if (prefix(args, "since")) {
84 } else if (prefix(args, "absolute")) {
91 if(prefix(cmd, "reset")) {
H A Difcmds.c50 if (prefix(cmd, "scale")) {
59 } else if (prefix(cmd, "match")) {
73 } else if (prefix(cmd, "pps"))
/freebsd-current/contrib/libxo/
H A Dlibxo-config.in12 prefix=@prefix@
24 --prefix=DIR change libxo prefix [default $prefix]
25 --exec-prefix=DIR change libxo exec prefix [default $exec_prefix]
51 --prefix=*)
52 prefix=$optarg
53 includedir=$prefix/includ
[all...]
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_cmn_err.c37 const char *prefix; local
39 prefix = NULL; /* silence unwitty compilers */
42 prefix = "Solaris(cont): ";
45 prefix = "Solaris: NOTICE: ";
48 prefix = "Solaris: WARNING: ";
51 prefix = "Solaris(panic): ";
60 panic("%s%s", prefix, buf);
63 printf("%s", prefix);
/freebsd-current/usr.sbin/rtadvd/
H A Dconfig.h40 extern void delete_prefix(struct prefix *);
41 extern void invalidate_prefix(struct prefix *);
42 extern void update_prefix(struct prefix *);
48 * it is highly unlikely to have 100 prefix information options,
/freebsd-current/crypto/heimdal/tools/
H A Dkrb5-config.in57 --prefix=*)
58 prefix=`echo $i | sed 's/^--prefix=//'`
60 --prefix)
63 --exec-prefix=*)
64 exec_prefix=`echo $i | sed 's/^--exec-prefix=//'`
66 --exec-prefix)
99 echo "options: [--prefix[=dir]] [--exec-prefix[=dir]] [--libs] [--cflags]"
104 if test "$prefix"
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-sysv.exp6 prefix = "prefix"
10 prefix =NS "prefixNS"
14 prefix =% "prefix%"
18 prefix =%NS "prefix%NS"
22 prefix =NPre% "prefixNPre%"
26 prefix =NPre%NS "prefixNPre%NS"
30 prefix ffi
[all...]
/freebsd-current/usr.bin/procstat/
H A Dprocstat_auxv.c52 static char prefix[256]; local
61 snprintf(prefix, sizeof(prefix), "%5d %-19s", kipp->ki_pid,
75 prefix, "AT_EXECFD", (long)auxv[i].a_un.a_val);
79 prefix, "AT_PHDR", auxv[i].a_un.a_ptr);
83 prefix, "AT_PHENT", (long)auxv[i].a_un.a_val);
87 prefix, "AT_PHNUM", (long)auxv[i].a_un.a_val);
91 prefix, "AT_PAGESZ", (long)auxv[i].a_un.a_val);
95 prefix, "AT_BASE", auxv[i].a_un.a_ptr);
99 prefix, "AT_FLAG
[all...]
/freebsd-current/crypto/openssl/ms/
H A Duplink-x86_64.pl20 $prefix="_lazy";
29 .type $prefix${i},\@abi-omnipotent
31 $prefix${i}:
47 $prefix${i}_end:
48 .size $prefix${i},.-$prefix${i}
56 for ($i=1;$i<=$N;$i++) { print " .quad $prefix$i\n"; }
63 .rva $prefix${i},$prefix${i}_end,${prefix}_unwind_inf
[all...]
/freebsd-current/crypto/openssl/test/recipes/
H A D15-test_ec.t33 tconversion( -type => 'ec', -prefix => 'ec-priv',
37 tconversion( -type => 'ec', -prefix => 'ec-pkcs8',
42 tconversion( -type => 'ec', -prefix => 'ec-pub',
48 tconversion( -type => 'pkey', -prefix => 'ec-pkey-priv',
52 tconversion( -type => 'pkey', -prefix => 'ec-pkey-pkcs8',
57 tconversion( -type => 'pkey', -prefix => 'ec-pkey-pub',
63 tconversion( -type => "pkey", -prefix => "ed25519-pkey-priv",
67 tconversion( -type => "pkey", -prefix => "ed25519-pkey-pkcs8",
72 tconversion( -type => "pkey", -prefix => "ed25519-pkey-pub",
77 tconversion( -type => "pkey", -prefix
[all...]
H A D15-test_dsa.t29 tconversion( -type => 'dsa', -prefix => 'dsa-priv',
33 tconversion( -type => 'msb', -prefix => 'dsa-msb-pub',
39 tconversion( -type => 'dsa', -prefix => 'dsa-pkcs8',
44 tconversion( -type => 'dsa', -prefix => 'dsa-pkey-pub',
H A D15-test_rsa.t40 tconversion( -type => $cmd, -prefix => "$cmd-priv",
44 tconversion( -type => $cmd, -prefix => "$cmd-pkcs8",
55 tconversion( -type => 'msb', -prefix => "$cmd-msb-pub",
66 tconversion( -type => 'pvk', -prefix => "$cmd-pvk",
/freebsd-current/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_cmn_err.c33 const char *prefix; local
35 prefix = NULL; /* silence unwitty compilers */
38 prefix = "Solaris(cont): ";
41 prefix = "Solaris: NOTICE: ";
44 prefix = "Solaris: WARNING: ";
47 prefix = "Solaris(panic): ";
56 panic("%s%s", prefix, buf);
59 printf("%s", prefix);
/freebsd-current/contrib/com_err/
H A Dparse.y104 free(prefix);
105 asprintf (&prefix, "%s_", $2);
106 if (prefix == NULL)
112 prefix = realloc(prefix, 1);
113 if (prefix == NULL)
115 *prefix = '\0';
126 if(prefix && *prefix != '\0') {
127 asprintf (&ec->name, "%s%s", prefix,
[all...]
/freebsd-current/crypto/heimdal/lib/com_err/
H A Dparse.y104 free(prefix);
105 asprintf (&prefix, "%s_", $2);
106 if (prefix == NULL)
112 prefix = realloc(prefix, 1);
113 if (prefix == NULL)
115 *prefix = '\0';
126 if(prefix && *prefix != '\0') {
127 asprintf (&ec->name, "%s%s", prefix,
[all...]
/freebsd-current/sys/contrib/libsodium/dist-build/
H A Dmsys2-win32.sh13 ./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
H A Dmsys2-win64.sh13 ./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
/freebsd-current/contrib/arm-optimized-routines/string/test/
H A Dstringtest.h27 quoteat (const char *prefix, const void *p, int len, int at) argument
45 printf ("%4s: %s", prefix, pre);
52 quote (const char *prefix, const void *p, int len) argument
54 quoteat (prefix, p, len, -1);
/freebsd-current/contrib/ofed/opensm/include/opensm/
H A Dosm_prefix_route.h54 ib_net64_t prefix; /* zero means "any" */ member in struct:__anon5818
59 #error ROUTER_EXP is deprecated, specify prefix routes at runtime instead (see opensm man page for details)
/freebsd-current/crypto/openssh/
H A Dopensshd.init.in11 prefix=@prefix@
15 SSHD=$prefix/sbin/sshd
19 SSH_KEYGEN=$prefix/bin/ssh-keygen
/freebsd-current/sys/conf/
H A Dkmod_syms_prefix.awk15 printf("--redefine-sym=%s=%s%s\n", member, prefix, member);
/freebsd-current/sbin/ipf/libipf/
H A Dprintfraginfo.c14 printfraginfo(char *prefix, struct ipfr *ifr) argument
18 PRINTF("%s", prefix);
/freebsd-current/usr.bin/posixmqcontrol/
H A Dposixmqcontroltest8qs.sh5 prefix='/posixmqcontroltest'
10 topic="${prefix}${i}"
37 topic="${prefix}${i}"
/freebsd-current/sys/teken/
H A Dgensequences65 prefix = "";
68 n = prefix csequence(sequence[i]);
69 l_prefix_parent[n] = prefix;
73 prefix = n;
77 cmd = prefix suffix;
82 l_cmd_prefix[cmd] = prefix;
91 l_prefix_numbercmds[prefix]++;

Completed in 279 milliseconds

1234567891011>>