Home
last modified time | relevance | path

Searched refs:suffix (Results 1 – 25 of 432) sorted by relevance

12345678910>>...18

/freebsd/contrib/bmake/unit-tests/
H A Dvarmod-sysv.exp5 suffix = "suffix"
9 suffix =NS "suffixNS"
13 suffix =% "suffix%"
17 suffix =%NS "suffix%NS"
21 suffix =NPre% "suffixNPre%"
25 suffix =NPre%NS "suffixNPre%NS"
29 suffix ffix= "su"
33 suffix ffix=NS "suNS"
37 suffix ffix=% "su%"
41 suffix ffix=%NS "su%NS"
[all …]
H A Dsuff-lookup.exp1 Adding suffix ".c"
2 Adding suffix ".cc"
3 Adding suffix ".ccc"
4 Adding suffix ".short"
5 Adding suffix ".sho"
6 Adding suffix ".dead-end"
28 Adding suffix ".c"
29 Adding suffix ".cc"
30 Adding suffix ".ccc"
35 Adding suffix ".short"
[all …]
H A Dposix1.exp28 Target with suffix transformations
32 Implied source with suffix transformations
36 Suffixless target with suffix transformations
40 Out-of-date dependencies with suffix transformations
44 Member with suffix transformations
68 Target with suffix transformations
72 Implied source with suffix transformations
76 Suffixless target with suffix transformations
80 Out-of-date dependencies with suffix transformations
84 Member with suffix transformations
[all …]
H A Dsuff-rebuild.exp6 Adding suffix ".a"
7 Adding suffix ".b"
8 Adding suffix ".c"
39 No known suffix on all. Using .NULL suffix
40 adding suffix rules
46 No known suffix on suff-rebuild-example. Using .NULL suffix
47 adding suffix rules
56 suffix is ".c"...
57 suffix is ".b"...
58 suffix is ".a"...
[all …]
H A Dsuff-main-several.exp10 Adding suffix ".1"
11 Adding suffix ".2"
17 Adding suffix ".3"
23 Adding suffix ".4"
34 Adding suffix ".4"
35 Adding suffix ".3"
36 Adding suffix ".2"
37 Adding suffix ".1"
43 Adding suffix ".1"
44 Adding suffix ".2"
[all …]
H A Dsuff-transform-select.exp1 Adding suffix ".c"
2 Adding suffix ".d"
6 Adding suffix ".e"
10 Adding suffix ".f"
11 Adding suffix ".g"
26 No known suffix on all. Using .NULL suffix
27 adding suffix rules
37 suffix is ".d"...
40 suffix is ".d"...
H A Dsuff-incomplete.exp6 Adding suffix ".a"
7 Adding suffix ".b"
8 Adding suffix ".c"
30 No known suffix on all. Using .NULL suffix
31 adding suffix rules
39 No known suffix on .END. Using .NULL suffix
40 adding suffix rules
H A Dsuff-transform-endless.exp1 Adding suffix ".c"
2 Adding suffix ".d"
6 Adding suffix ".e"
10 Adding suffix ".f"
25 No known suffix on all. Using .NULL suffix
26 adding suffix rules
40 suffix is ".e"...
H A Dsuff-phony.exp1 Adding suffix ".c"
7 No valid suffix on all
9 No known suffix on .END. Using .NULL suffix
10 adding suffix rules
/freebsd/sbin/ipf/libipf/
H A Dprintaddr.c15 char *suffix; in printaddr() local
20 suffix = "bcast"; in printaddr()
26 suffix = NULL; in printaddr()
30 suffix = "net"; in printaddr()
34 suffix = "netmasked"; in printaddr()
38 suffix = "peer"; in printaddr()
42 suffix = NULL; in printaddr()
49 suffix = NULL; in printaddr()
55 suffix = NULL; in printaddr()
61 suffix = NULL; in printaddr()
[all …]
/freebsd/crypto/openssl/crypto/
H A Dtrace.c178 char *suffix; member
243 const char **prefix, const char **suffix, in set_trace_data() argument
257 curr_suffix = trace_channels[category].suffix; in set_trace_data()
264 if (suffix != NULL && curr_suffix != NULL) { in set_trace_data()
278 if (suffix != NULL && curr_suffix != NULL) { in set_trace_data()
280 trace_channels[category].suffix = NULL; in set_trace_data()
296 if (suffix != NULL && *suffix != NULL) { in set_trace_data()
297 if ((curr_suffix = OPENSSL_strdup(*suffix)) == NULL) in set_trace_data()
299 trace_channels[category].suffix = curr_suffix; in set_trace_data()
320 if (suffix != NULL && *suffix != NULL) { in set_trace_data()
[all …]
/freebsd/usr.bin/basename/
H A Dbasename.c49 char *p, *suffix; in main() local
59 suffix = NULL; in main()
68 suffix = optarg; in main()
86 if ((suffix == NULL && !aflag) && argc == 2) { in main()
87 suffix = argv[1]; in main()
90 if (suffix != NULL) in main()
91 suffixlen = strlen(suffix); in main()
95 stripsuffix(p, suffix, suffixlen); in main()
103 stripsuffix(char *p, const char *suffix, size_t suffixlen) in stripsuffix() argument
110 strcmp(suffix, q) == 0) { in stripsuffix()
/freebsd/contrib/ncurses/
H A Dmk-1st.awk75 return sprintf("%s%s%s", prefix, a_name, suffix)
80 result = sprintf("%s%s%s.a", prefix, a_name, suffix);
82 result = sprintf("%s%s%s.lib", prefix, a_name, suffix);
91 result = sprintf("%s%s$(ABI_VERSION)%s", "cyg", a_name, suffix);
93 result = sprintf("%s%s$(ABI_VERSION)%s", "msys-", a_name, suffix);
95 result = sprintf("%s%s$(ABI_VERSION)%s", prefix, a_name, suffix);
97 result = sprintf("%s%s.$(ABI_VERSION)%s", prefix, a_name, suffix);
106 result = sprintf("%s%s$(REL_VERSION)%s", "cyg", a_name, suffix);
108 result = sprintf("%s%s$(ABI_VERSION)%s", "msys-", a_name, suffix);
110 result = sprintf("%s%s$(REL_VERSION)%s", prefix, a_name, suffix);
[all …]
H A Dmk-2nd.awk104 suffix=".cc"
108 suffix=".c"
111 printf "../%s/%s$o :\t%s/%s%s", model, $1, $3, $1, suffix
138 printf "../%s/%s%s%s", name, dir, $1, suffix
140 printf "%s/%s%s", $3, $1, suffix
/freebsd/contrib/libarchive/tar/
H A Dcreation_set.c30 const char *suffix; member
35 get_suffix_code(const struct suffix_code_t *tbl, const char *suffix) in get_suffix_code() argument
39 if (suffix == NULL) in get_suffix_code()
41 for (i = 0; tbl[i].suffix != NULL; i++) { in get_suffix_code()
42 if (strcmp(tbl[i].suffix, suffix) == 0) in get_suffix_code()
49 get_filter_code(const char *suffix) in get_filter_code() argument
68 return get_suffix_code(filters, suffix); in get_filter_code()
72 get_format_code(const char *suffix) in get_format_code() argument
89 return get_suffix_code(formats, suffix); in get_format_code()
93 decompose_alias(const char *suffix) in decompose_alias() argument
[all …]
/freebsd/contrib/ncurses/misc/
H A Dgen-pkgconfig.in52 suffix=@PC_MODULE_SUFFIX@
205 …reqs="$PANEL_LIBRARY${suffix}, $MENU_LIBRARY${suffix}, $FORM_LIBRARY${suffix}, $MAIN_LIBRARY${suff…
208 reqs="$MAIN_LIBRARY${suffix}"
217 reqs="${reqs}${SUB_LIBRARY}${suffix}"
227 echo "** creating ${name}${suffix}.pc"
228 cat >${name}${suffix}.pc <<EOF
240 Name: ${name}${suffix}
/freebsd/usr.sbin/certctl/
H A Dcertctl.sh112 local suffix
131 suffix=$(get_decimal "$CERTDESTDIR" "$hash")
132 verbose "Adding $hash.$suffix to trust store"
134 "$(realpath "$1")" "$CERTDESTDIR/$hash.$suffix"
141 local suffix
147 suffix=$(get_decimal "$UNTRUSTDESTDIR" "$hash")
148 filename="$hash.$suffix"
149 echo "$srcfile" "$hash.$suffix"
153 suffix=$(get_decimal "$UNTRUSTDESTDIR" "$hash")
154 filename="$hash.$suffix"
[all …]
/freebsd/usr.sbin/bluetooth/iwmbtfw/
H A Diwmbt_fw.c114 const char *prefix, const char *suffix) in iwmbt_get_fwname() argument
132 suffix); in iwmbt_get_fwname()
143 suffix); in iwmbt_get_fwname()
153 suffix); in iwmbt_get_fwname()
165 suffix); in iwmbt_get_fwname()
177 const char *suffix) in iwmbt_get_fwname_tlv() argument
190 suffix); in iwmbt_get_fwname_tlv()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrKL.td21 multiclass Aesencdec<string suffix> {
22 def AESENC128KL#suffix : I<0xDC, MRMSrcMem, (outs VR128:$dst),
27 def AESDEC128KL#suffix : I<0xDD, MRMSrcMem, (outs VR128:$dst),
32 def AESENC256KL#suffix : I<0xDE, MRMSrcMem, (outs VR128:$dst),
37 def AESDEC256KL#suffix : I<0xDF, MRMSrcMem, (outs VR128:$dst),
63 multiclass Aesencdecwide<string suffix> {
64 …def AESENCWIDE128KL#suffix : I<0xD8, MRM0m, (outs), (ins opaquemem:$src), "aesencwide128kl\t$src",…
65 …def AESDECWIDE128KL#suffix : I<0xD8, MRM1m, (outs), (ins opaquemem:$src), "aesdecwide128kl\t$src",…
66 …def AESENCWIDE256KL#suffix : I<0xD8, MRM2m, (outs), (ins opaquemem:$src), "aesencwide256kl\t$src",…
67 …def AESDECWIDE256KL#suffix : I<0xD8, MRM3m, (outs), (ins opaquemem:$src), "aesdecwide256kl\t$src",…
/freebsd/contrib/sendmail/contrib/
H A Dcidrexpand167 my ($network, $len, $prefix, $suffix) = @_;
174 my $val = "$prefix$nl$suffix\n";
186 my ($network, $len, $prefix, $suffix) = @_;
192 print_expanded_v6network("::", 1, $prefix, $suffix);
193 print_expanded_v6network("8000::", 1, $prefix, $suffix);
202 my $val = "$prefix$nl$suffix\n";
/freebsd/contrib/libxo/libxo/
H A Dxo_humanize.h64 const char *suffix, int scale, int flags) in xo_humanize_number() argument
80 assert(suffix != NULL); in xo_humanize_number()
109 if (buf == NULL || suffix == NULL) in xo_humanize_number()
129 baselen += strlen(suffix); in xo_humanize_number()
160 sep, SCALE2PREFIX(i), suffix); in xo_humanize_number()
166 sep, SCALE2PREFIX(i), suffix); in xo_humanize_number()
/freebsd/crypto/heimdal/lib/roken/
H A Drtbl.c51 char *suffix; member
113 free (c->suffix); in rtbl_destroy()
146 col->suffix = NULL; in rtbl_add_column_by_id()
237 const char *prefix, const char *suffix) in rtbl_set_column_affix_by_id() argument
253 if (c->suffix) in rtbl_set_column_affix_by_id()
254 free (c->suffix); in rtbl_set_column_affix_by_id()
255 if(suffix == NULL) in rtbl_set_column_affix_by_id()
256 c->suffix = NULL; in rtbl_set_column_affix_by_id()
258 c->suffix = strdup (suffix); in rtbl_set_column_affix_by_id()
259 if (c->suffix == NULL) in rtbl_set_column_affix_by_id()
[all …]
/freebsd/crypto/openssl/test/ssl-tests/
H A D18-dtls-renegotiate.cnf.in27 my $suffix = ($sctp eq "No") ? "" : "-sctp";
30 name => "renegotiate-client-no-resume".$suffix,
47 name => "renegotiate-client-resume".$suffix,
72 name => "renegotiate-server-resume".$suffix,
88 name => "renegotiate-client-auth-require".$suffix,
108 name => "renegotiate-client-auth-once".$suffix,
133 name => "renegotiate-aead-to-non-aead".$suffix,
152 name => "renegotiate-non-aead-to-aead".$suffix,
171 name => "renegotiate-non-aead-to-non-aead".$suffix,
190 name => "renegotiate-aead-to-aead".$suffix,
/freebsd/contrib/byacc/
H A Dmain.c559 #define CREATE_FILE_NAME(dest, suffix) \ argument
560 dest = alloc_file_name(len, suffix)
563 alloc_file_name(size_t len, const char *suffix) in alloc_file_name() argument
565 char *result = TMALLOC(char, len + strlen(suffix) + 1); in alloc_file_name()
569 strcpy(result + len, suffix); in alloc_file_name()
574 find_suffix(char *name, const char *suffix) in find_suffix() argument
577 size_t slen = strlen(suffix); in find_suffix()
581 if (strcmp(name, suffix) == 0) in find_suffix()
593 char *suffix; in create_file_names() local
595 suffix = NULL; in create_file_names()
[all …]
/freebsd/crypto/openssh/
H A Dlog.c337 do_log(LogLevel level, int force, const char *suffix, const char *fmt, in do_log() argument
394 if (suffix != NULL) { in do_log()
395 snprintf(fmtbuf, sizeof(fmtbuf), "%s: %s", msgbuf, suffix); in do_log()
428 LogLevel level, const char *suffix, const char *fmt, ...) in sshlog() argument
433 sshlogv(file, func, line, showfunc, level, suffix, fmt, args); in sshlog()
439 LogLevel level, const char *suffix, const char *fmt, ...) in sshlogdie() argument
445 suffix, fmt, args); in sshlogdie()
452 LogLevel level, const char *suffix, const char *fmt, ...) in sshsigdie() argument
459 suffix, fmt, args); in sshsigdie()
467 LogLevel level, const char *suffix, cons in sshlogv()
465 sshlogv(const char * file,const char * func,int line,int showfunc,LogLevel level,const char * suffix,const char * fmt,va_list args) sshlogv() argument
[all...]

12345678910>>...18