Searched refs:suffix (Results 1 - 25 of 265) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/xz/src/xz/
H A Dsuffix.h3 /// \file suffix.h
4 /// \brief Checks filename suffix and creates the destination filename
22 /// \brief Set a custom filename suffix
24 /// This function calls xstrdup() for the given suffix, thus the caller
26 /// suffix, thus if this is called multiple times, the old suffixes are freed
28 extern void suffix_set(const char *suffix);
H A Dsuffix.c3 /// \file suffix.c
4 /// \brief Checks filename suffix and creates the destination filename
19 // For case-insensitive filename suffix on case-insensitive systems
53 /// \brief Test for special suffix used for 8.3 short filenames (SFN)
79 /// \param suffix Filename suffix to look for
83 /// \return If src_name has the suffix, src_len - strlen(suffix) is
87 test_suffix(const char *suffix, const char *src_name, size_t src_len) argument
89 const size_t suffix_len = strlen(suffix);
183 msg_suffix(const char *src_name, const char *suffix) argument
264 const char *suffix = custom_suffix != NULL local
388 suffix_set(const char *suffix) argument
[all...]
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dprintaddr.c17 char *suffix; local
22 suffix = "bcast";
28 suffix = NULL;
32 suffix = "net";
36 suffix = "netmasked";
40 suffix = "peer";
44 suffix = NULL;
51 suffix = NULL;
57 suffix = NULL;
63 suffix
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Docteon-model.c154 const char * suffix; local
184 /* Make a guess at the suffix */
192 suffix = "CP";
194 suffix = "SCP";
197 suffix = "EXP";
199 suffix = "NSP";
282 if ((num_cores == 4) && fus3.cn58xx.crip_1024k && !strncmp(suffix, "CP", 2))
305 suffix = "SP";
307 suffix = "SSP";
312 suffix
428 int suffix = (fuse_data >> 14) & 0x1f; local
[all...]
/freebsd-11-stable/usr.bin/basename/
H A Dbasename.c62 char *p, *suffix; local
72 suffix = NULL;
81 suffix = optarg;
99 if ((suffix == NULL && !aflag) && argc == 2) {
100 suffix = argv[1];
103 if (suffix != NULL)
104 suffixlen = strlen(suffix);
108 stripsuffix(p, suffix, suffixlen);
116 stripsuffix(char *p, const char *suffix, size_t suffixlen) argument
123 strcmp(suffix,
[all...]
/freebsd-11-stable/contrib/groff/tmac/
H A Dhyphenex.pl57 foreach $suffix (@suffix_list) {
58 print " $field[2]$suffix\n";
64 foreach $suffix (@suffix_list) {
65 print " $field[2]$suffix\n";
/freebsd-11-stable/contrib/ncurses/
H A Dmk-2nd.awk34 # suffix rules (to force compilation with the appropriate flags). We could use
96 suffix=".cc"
100 suffix=".c"
103 printf "../%s/%s$o :\t%s/%s%s", model, $1, $3, $1, suffix
130 printf "../%s/%s%s%s", name, dir, $1, suffix
132 printf "%s/%s%s", $3, $1, suffix
H A Dmk-1st.awk40 # suffix (e.g., "_g.a", for debug libraries)
47 # TermlibSuffix (".so" or other suffix for libterm.so)
70 return sprintf("%s%s%s", prefix, a_name, suffix)
75 result = sprintf("%s%s%s.a", prefix, a_name, suffix);
84 result = sprintf("%s%s$(ABI_VERSION)%s", "cyg", a_name, suffix);
86 result = sprintf("%s%s$(ABI_VERSION)%s", "msys-", a_name, suffix);
88 result = sprintf("%s%s$(ABI_VERSION)%s", prefix, a_name, suffix);
90 result = sprintf("%s%s.$(ABI_VERSION)%s", prefix, a_name, suffix);
99 result = sprintf("%s%s$(REL_VERSION)%s", "cyg", a_name, suffix);
101 result = sprintf("%s%s$(ABI_VERSION)%s", "msys-", a_name, suffix);
[all...]
/freebsd-11-stable/contrib/sendmail/contrib/
H A Dcidrexpand151 my ($network, $len, $prefix, $suffix) = @_;
157 print "$prefix$nl$suffix\n";
163 my ($network, $len, $prefix, $suffix) = @_;
169 print_expanded_v6network("::", 1, $prefix, $suffix);
170 print_expanded_v6network("8000::", 1, $prefix, $suffix);
178 print "$prefix$nl$suffix\n";
/freebsd-11-stable/contrib/gdb/gdb/
H A Dada-exp.y809 const char* suffix;
834 suffix = strstr (expr, "___XE");
835 if (suffix == NULL)
838 name = (char*) malloc (suffix - expr + 1);
842 strncpy (name, expr, suffix-expr);
843 name[suffix-expr] = '\000';
851 suffix += 5;
853 while (*suffix == 'X')
855 suffix += 1;
857 switch (*suffix) {
[all...]
H A Devent-top.h30 and a suffix. The prompt to be displayed at any given time is the
46 actually composed of a prefix, the prompt itself and a suffix. */
51 stack: the usual one, w/o prefix and suffix (at top - 1), and the
52 'composite' one with prefix and suffix added (at top). At this
67 char *suffix; member in struct:prompts::__anon1514
75 #define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
101 extern void push_prompt (char *prefix, char *prompt, char *suffix);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjCPlusPlus/
H A DObjCPlusPlusLanguage.cpp20 for (auto suffix : suffixes) {
21 if (file_path.endswith_lower(suffix))
/freebsd-11-stable/contrib/bmake/unit-tests/
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 transformation
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dmake-temp-file.c137 @deftypefn Replacement char* make_temp_file (const char *@var{suffix})
140 create one. @var{suffix} is a suffix to append to the file name. The
148 make_temp_file (const char *suffix) argument
155 if (suffix == 0)
156 suffix = "";
159 suffix_len = strlen (suffix);
166 strcpy (temp_filename + base_len + TEMP_FILE_LEN, suffix);
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dmake-temp-file.c137 @deftypefn Replacement char* make_temp_file (const char *@var{suffix})
140 create one. @var{suffix} is a suffix to append to the file name. The
148 make_temp_file (const char *suffix) argument
155 if (suffix == 0)
156 suffix = "";
159 suffix_len = strlen (suffix);
166 strcpy (temp_filename + base_len + TEMP_FILE_LEN, suffix);
/freebsd-11-stable/contrib/libxo/libxo/
H A Dxo_humanize.h64 const char *suffix, int scale, int flags)
80 assert(suffix != NULL);
109 if (buf == NULL || suffix == NULL)
129 baselen += strlen(suffix);
131 /* Check if enough room for `x y' + suffix + `\0' */
160 sep, SCALE2PREFIX(i), suffix);
166 sep, SCALE2PREFIX(i), suffix);
63 xo_humanize_number(char *buf, size_t len, int64_t bytes, const char *suffix, int scale, int flags) argument
/freebsd-11-stable/contrib/binutils/ld/
H A Dldfile.h61 const char *lib, const char *suffix);
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_filter_by_ext.c69 int cmpsuff(const char *str, const char *suffix) argument
73 if ((str == NULL) || (suffix == NULL))
77 length_suffix = strlen(suffix);
80 return strcmp(str + (length_str - length_suffix), suffix);
/freebsd-11-stable/contrib/libarchive/tar/
H A Dcreation_set.c49 const char *suffix; member in struct:suffix_code_t
54 get_suffix_code(const struct suffix_code_t *tbl, const char *suffix) argument
58 if (suffix == NULL)
60 for (i = 0; tbl[i].suffix != NULL; i++) {
61 if (strcmp(tbl[i].suffix, suffix) == 0)
68 get_filter_code(const char *suffix) argument
70 /* A pair of suffix and compression/filter. */
87 return get_suffix_code(filters, suffix);
91 get_format_code(const char *suffix) argument
112 decompose_alias(const char *suffix) argument
[all...]
/freebsd-11-stable/lib/libutil/
H A Dhumanize_number.c50 const char *suffix, int scale, int flags)
63 if (buf == NULL || suffix == NULL)
128 baselen += strlen(suffix);
130 /* Check if enough room for `x y' + suffix + `\0' */
173 sep, SCALE2PREFIX(i), suffix);
177 sep, SCALE2PREFIX(i), suffix);
49 humanize_number(char *buf, size_t len, int64_t quotient, const char *suffix, int scale, int flags) argument
/freebsd-11-stable/sys/teken/
H A Dgensequences68 suffix = sequence[nsequences];
69 cmd = prefix suffix;
75 l_cmd_suffix[cmd] = suffix;
/freebsd-11-stable/contrib/file/
H A Dinstall-sh61 suffix=""
66 -b) suffix=".old"
257 *%*) suffix=`echo x |
266 *) suffix="$suffixfmt";;
268 dstbackup="$dstfinal$suffix"
289 if [ x"$suffix" != x ] && [ -f "$dstfinal" ]
/freebsd-11-stable/usr.bin/procstat/
H A Dprocstat_rlimit.c51 const char *suffix; member in struct:__anon8653
84 rlimit_param[indx].suffix, HN_AUTOSCALE | HN_GETSCALE, HN_DECIMAL);
86 rlimit_param[indx].suffix, HN_AUTOSCALE, HN_DECIMAL);
87 /* Pad with one space if there is no suffix prefix. */
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCocoaConventions.cpp129 StringRef suffix = functionName.substr(it - start);
130 if (suffix.startswith("reate")) {
133 else if (suffix.startswith("opy")) {
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DHighlighter.h26 /// stores color codes in these strings (the suffix string is often used for
34 ColorStyle(llvm::StringRef prefix, llvm::StringRef suffix) { argument
35 Set(prefix, suffix);
45 /// Sets the prefix and suffix strings.
46 void Set(llvm::StringRef prefix, llvm::StringRef suffix);
51 /// stop-show-column-ansi-prefix/stop-show-column-ansi-suffix.

Completed in 136 milliseconds

1234567891011