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

12345678910

/freebsd-10-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-10-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-10-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-10-stable/usr.bin/basename/
H A Dbasename.c61 char *p, *suffix; local
68 suffix = NULL;
77 suffix = optarg;
95 if ((suffix == NULL && !aflag) && argc == 2) {
96 suffix = argv[1];
99 if (suffix != NULL)
100 suffixlen = strlen(suffix);
104 stripsuffix(p, suffix, suffixlen);
112 stripsuffix(char *p, const char *suffix, size_t suffixlen) argument
119 strcmp(suffix,
[all...]
/freebsd-10-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-10-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.awk39 # suffix (e.g., "_g.a", for debug libraries)
44 # TermlibSuffix (".so" or other suffix for libterm.so)
66 return sprintf("%s%s%s", prefix, a_name, suffix)
71 result = sprintf("%s%s%s.a", prefix, a_name, suffix);
80 result = sprintf("%s%s$(ABI_VERSION)%s", "cyg", a_name, suffix);
82 result = sprintf("%s%s.$(ABI_VERSION)%s", prefix, a_name, suffix);
91 result = sprintf("%s%s$(REL_VERSION)%s", "cyg", a_name, suffix);
93 result = sprintf("%s%s.$(REL_VERSION)%s", prefix, a_name, suffix);
168 # any suffix. Temporarily override "suffix" t
[all...]
/freebsd-10-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::__anon1334
75 #define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
101 extern void push_prompt (char *prefix, char *prompt, char *suffix);
H A Dada-exp.c2483 const char* suffix;
2508 suffix = strstr (expr, "___XE");
2509 if (suffix == NULL)
2512 name = (char*) xmalloc (suffix - expr + 1);
2516 strncpy (name, expr, suffix-expr);
2517 name[suffix-expr] = '\000';
2525 suffix += 5;
2527 while (*suffix == 'X')
2529 suffix += 1;
2531 switch (*suffix) {
2479 const char* suffix; local
[all...]
/freebsd-10-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-10-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-10-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-10-stable/contrib/binutils/ld/
H A Dldfile.h61 const char *lib, const char *suffix);
/freebsd-10-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-10-stable/usr.bin/procstat/
H A Dprocstat_rlimit.c48 const char *suffix; member in struct:__anon11986
79 rlimit_param[indx].suffix, HN_AUTOSCALE | HN_GETSCALE, HN_DECIMAL);
81 rlimit_param[indx].suffix, HN_AUTOSCALE, HN_DECIMAL);
82 /* Pad with one space if there is no suffix prefix. */
/freebsd-10-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-10-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-10-stable/sys/teken/
H A Dgensequences68 suffix = sequence[nsequences];
69 cmd = prefix suffix;
75 l_cmd_suffix[cmd] = suffix;
/freebsd-10-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-10-stable/contrib/llvm/tools/clang/lib/Analysis/
H A DCocoaConventions.cpp123 StringRef suffix = functionName.substr(it - start);
124 if (suffix.startswith("reate")) {
127 else if (suffix.startswith("opy")) {
/freebsd-10-stable/crypto/heimdal/lib/roken/
H A Drtbl.c51 char *suffix; member in struct:column_data
113 free (c->suffix);
146 col->suffix = NULL;
237 const char *prefix, const char *suffix)
253 if (c->suffix)
254 free (c->suffix);
255 if(suffix == NULL)
256 c->suffix = NULL;
258 c->suffix = strdup (suffix);
236 rtbl_set_column_affix_by_id(rtbl_t table, unsigned int id, const char *prefix, const char *suffix) argument
[all...]
/freebsd-10-stable/contrib/ncurses/misc/
H A Drun_tic.in44 : ${suffix=@PROG_EXT@}
74 # reset $suffix, since it applies to the target, not the build platform.
75 suffix=
113 if ( $SHLIB tic$suffix -x -s -o $TERMINFO $source )
132 if ( $SHLIB tic$suffix -s -o $TERMINFO $source )
/freebsd-10-stable/contrib/ncurses/ncurses/tinfo/
H A Dmake_keys.c125 static const char *suffix[] = local
146 write_list(stdout, suffix);

Completed in 310 milliseconds

12345678910