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

12345

/haiku-fatelf/src/bin/coreutils/man/
H A Dbasename.x2 basename \- strip directory and suffix from filenames
H A Ddirname.x2 dirname \- strip non-directory suffix from file name
/haiku-fatelf/src/bin/
H A Did.c33 static void print_user_info(int userID, char *suffix);
34 static void print_group_info(int groupID, char *suffix);
52 char *suffix; variable
56 print_user_info(int userID, char *suffix) { argument
61 fprintf(stdout, "%s%s", userIDName->pw_name, suffix);
63 fprintf(stdout, "%u%s", eUID, suffix);
65 fprintf(stdout, "%-8d%s", statBuffer.st_uid, suffix);
70 print_group_info(int groupID, char *suffix) { argument
75 fprintf(stdout, "%s%s", groupIDName->gr_name, suffix);
77 fprintf(stdout, "%u%s", groupID, suffix);
[all...]
/haiku-fatelf/src/libs/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 Dedit_man.sh94 suffix=`basename $target | sed -e 's%^[^.]*%%'`
110 if test -f $cf_alias${suffix} ; then
111 if ( cmp -s $target $cf_alias${suffix} )
116 echo .. $verb alias $cf_alias${suffix}
117 rm -f $cf_alias${suffix}
118 ln -s $target $cf_alias${suffix}
119 elif test "$target" != "$cf_alias${suffix}" ; then
121 echo .. $verb alias $cf_alias${suffix}
122 rm -f $cf_alias${suffix}
123 $INSTALL_DATA $TMP $cf_alias${suffix}
[all...]
H A Dmk-1st.awk39 # suffix (e.g., "_g.a", for debug libraries)
121 printf "# suffix: %s\n", suffix
177 lib_name = sprintf("%s%s%s", prefix, name, suffix)
181 abi_name = sprintf("%s%s$(ABI_VERSION)%s", "cyg", name, suffix);
182 rel_name = sprintf("%s%s$(REL_VERSION)%s", "cyg", name, suffix);
183 imp_name = sprintf("%s%s%s.a", prefix, name, suffix);
185 abi_name = sprintf("%s%s.$(ABI_VERSION)%s", prefix, name, suffix);
186 rel_name = sprintf("%s%s.$(REL_VERSION)%s", prefix, name, suffix);
253 ovr_name = sprintf("libcurses%s.a", suffix)
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dstr-two-way.h93 length of the smallest word that shares a suffix with the left half
113 size_t j; /* Index into NEEDLE for current candidate suffix. */
196 /* Choose the longer suffix. Return the first byte of the right
221 size_t suffix; /* The index of the right half of needle. */ local
225 periodic (with a period as large as NEEDLE_LEN - suffix). */
226 suffix = critical_factorization (needle, needle_len, &period);
230 if (CMP_FUNC (needle, needle + period, suffix) == 0)
240 i = MAX (suffix, memory);
247 i = suffix - 1;
260 j += i - suffix
315 size_t suffix; /* The index of the right half of needle. */ local
[all...]
/haiku-fatelf/src/bin/network/wget/lib/
H A Dstr-two-way.h90 length of the smallest word that shares a suffix with the left half
110 size_t j; /* Index into NEEDLE for current candidate suffix. */
193 /* Choose the longer suffix. Return the first byte of the right
218 size_t suffix; /* The index of the right half of needle. */ local
222 periodic (with a period as large as NEEDLE_LEN - suffix). */
223 suffix = critical_factorization (needle, needle_len, &period);
227 if (CMP_FUNC (needle, needle + period, suffix) == 0)
237 i = MAX (suffix, memory);
244 i = suffix - 1;
257 j += i - suffix
312 size_t suffix; /* The index of the right half of needle. */ local
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Dada-exp.y733 const char *suffix;
761 suffix = strstr (expr, "___XE");
762 if (suffix == NULL)
765 name = (char *) obstack_alloc (&temp_parse_space, suffix - expr + 1);
766 strncpy (name, expr, suffix-expr);
767 name[suffix-expr] = '\000';
776 suffix += 5;
778 while (*suffix == 'X')
780 suffix += 1;
782 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::__anon3703
75 #define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
101 extern void push_prompt (char *prefix, char *prompt, char *suffix);
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dmake-temp-file.c138 @deftypefn Replacement char* make_temp_file (const char *@var{suffix})
141 create one. @var{suffix} is a suffix to append to the file name. The
149 make_temp_file (suffix)
150 const char *suffix;
157 if (suffix == 0)
158 suffix = "";
161 suffix_len = strlen (suffix);
168 strcpy (temp_filename + base_len + TEMP_FILE_LEN, suffix);
/haiku-fatelf/src/libs/util/
H A Dhumanize_number.c53 const char *suffix, int scale, int flags)
61 assert(suffix != NULL);
90 if (buf == NULL || suffix == NULL)
110 baselen += strlen(suffix);
112 /* Check if enough room for `x y' + suffix + `\0' */
140 sep, SCALE2PREFIX(i), suffix);
145 sep, SCALE2PREFIX(i), suffix);
52 humanize_number(char *buf, size_t len, int64_t bytes, const char *suffix, int scale, int flags) argument
/haiku-fatelf/src/libs/print/libgutenprint/include/gutenprint/
H A Dpath.h44 const char *suffix);
/haiku-fatelf/src/kits/network/libbind/dst/
H A Dsupport.c226 * form: K<keyname>+<alg>+<id>.<suffix>
231 dst_s_filename_length(const char *name, const char *suffix) argument
241 if (suffix == NULL)
243 if (strrchr(suffix, '\\'))
245 if (strrchr(suffix, '/'))
247 if (strrchr(suffix, ':'))
249 return (1 + strlen(name) + 6 + strlen(suffix));
255 * suffix. '\', '/' and ':' are not allowed. fA filename is of the
256 * form: K<keyname><id>.<suffix>
257 * form: K<keyname>+<alg>+<id>.<suffix
266 dst_s_build_filename(char *filename, const char *name, u_int16_t id, int alg, const char *suffix, size_t filename_length) argument
[all...]
/haiku-fatelf/src/bin/coreutils/src/
H A Dmktemp.c54 {"suffix", required_argument, NULL, SUFFIX_OPTION},
82 --suffix=SUFF append SUFF to TEMPLATE. SUFF must not contain slash.\n\
156 char *suffix = NULL; local
202 suffix = optarg;
240 if (suffix)
246 _("with --suffix, template %s must end in X"),
249 suffix_len = strlen (suffix);
252 memcpy (dest_name + len, suffix, suffix_len + 1);
254 suffix = dest_name + len;
259 suffix
[all...]
H A Dbasename.c1 /* basename -- strip directory and suffix from file names
17 /* Usage: basename name [suffix]
18 NAME is a file name; SUFFIX is a suffix to strip from it.
78 remove_suffix (char *name, const char *suffix) argument
84 sp = suffix + strlen (suffix);
86 while (np > name && sp > suffix)
129 skipping suffix stripping if base_name returned an absolute path
/haiku-fatelf/src/bin/network/wget/util/
H A Dtrunc.c38 int suffix; local
56 suffix = tolower ((unsigned char) end[0]);
57 if (suffix == 'k')
61 else if (suffix == 'm')
/haiku-fatelf/src/system/libroot/posix/glibc/math/
H A Dmath.h48 #define __MATHCALL(function,suffix, args) \
49 __MATHDECL (_Mdouble_,function,suffix, args)
50 #define __MATHDECL(type, function,suffix, args) \
51 __MATHDECL_1(type, function,suffix, args); \
52 __MATHDECL_1(type, __CONCAT(__,function),suffix, args)
53 #define __MATHCALLX(function,suffix, args, attrib) \
54 __MATHDECLX (_Mdouble_,function,suffix, args, attrib)
55 #define __MATHDECLX(type, function,suffix, args, attrib) \
56 __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib); \
57 __MATHDECL_1(type, __CONCAT(__,function),suffix, arg
[all...]
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfStandardAttributes.cpp47 #define IMF_STD_ATTRIBUTE_IMP(name,suffix,type) \
50 add##suffix (Header &header, const type &value) \
56 has##suffix (const Header &header) \
H A DImfStandardAttributes.h68 #define IMF_STD_ATTRIBUTE_DEF(name,suffix,type) \
70 void add##suffix (Header &header, const type &v); \
71 bool has##suffix (const Header &header); \
/haiku-fatelf/src/bin/network/atftpd/
H A Dtftp_def.c118 char suffix[] = {'f', 'p', 'n', 'u', 'm', 0, 'k', 'M', 'G', 'T', 'P'}; local
132 snprintf(string, size, format, tmp, suffix[i]);
134 printf(format, tmp, suffix[i]);
/haiku-fatelf/headers/os/drivers/
H A Dmodule.h50 extern void *open_module_list_etc(const char *prefix, const char *suffix);
/haiku-fatelf/src/bin/bc/dc/
H A Dmisc.c84 * suffix is a modifier (such as "stack") to be printed
87 dc_show_id DC_DECLARG((fp, id, suffix))
90 const char *suffix DC_DECLEND
93 fprintf(fp, "'%c' (%#o)%s", id, id, suffix);
95 fprintf(fp, "%#o%s", id, suffix);
/haiku-fatelf/src/tests/kits/storage/virtualdrive/
H A Dmkvirtualdrive.cpp51 off_t suffix = 1; local
55 suffix = 1LL << 10;
58 suffix = 1LL << 20;
61 suffix = 1LL << 30;
64 suffix = 1LL << 40;
67 suffix = 1LL << 50;
70 suffix = 1LL << 60;
86 *_size = size * suffix;
88 if (*_size / suffix != size)
/haiku-fatelf/headers/private/libroot/locale/
H A DICUMonetaryData.h47 const UnicodeString& suffix,
52 const UnicodeString& suffix,

Completed in 136 milliseconds

12345