Searched refs:suffix (Results 76 - 100 of 119) sorted by relevance

12345

/haiku-fatelf/src/bin/coreutils/src/
H A Dsort.c1211 char *suffix; local
1212 enum strtol_error e = xstrtoumax (s, &suffix, 10, &n, "EgGkKmMPtTYZ");
1215 if (e == LONGINT_OK && ISDIGIT (suffix[-1]))
1223 /* A 'b' suffix means bytes; a '%' suffix means percent of memory. */
1224 if (e == LONGINT_INVALID_SUFFIX_CHAR && ISDIGIT (suffix[-1]) && ! suffix[1])
1225 switch (suffix[0])
3046 suffix after the integer. If the value is too large, silently
3053 char *suffix; local
[all...]
/haiku-fatelf/src/kits/tracker/
H A DWidgetAttributeText.cpp108 const char* suffix; local
111 suffix = B_TRANSLATE("TiB");
114 suffix = B_TRANSLATE("GiB");
117 suffix = B_TRANSLATE("MiB");
121 suffix = B_TRANSLATE("KiB");
129 sprintf(buffer, kSizeFormats[index], floatValue, suffix);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dada-lang.c340 suffix of FIELD_NAME beginning "___". */
358 their name by adding such a suffix to represent fields with certain
378 /* The length of the prefix of NAME prior to any "___" suffix. */
395 /* Return non-zero if SUFFIX is a suffix of STR.
399 is_suffix (const char *str, const char *suffix)
405 len2 = strlen (suffix);
406 return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0);
708 const char *suffix = strstr (str, "___");
709 if (suffix != NULL && suffix[
398 is_suffix(const char *str, const char *suffix) argument
705 const char *suffix = strstr (str, "___"); local
3410 const char *suffix = (name == NULL) ? NULL : strstr (name, "___XR"); local
4125 char *suffix = strstr (name, "___XR"); local
5926 ada_find_parallel_type(struct type *type, const char *suffix) argument
[all...]
H A Dutils.c2097 puts_debug (char *prefix, char *string, char *suffix)
2101 /* Print prefix and suffix after each line. */
2110 /* If the prefix is changing, print the previous suffix, a new line,
2127 prev_suffix = suffix;
2169 /* Print suffix if we printed a newline. */
2172 fputs_unfiltered (suffix, gdb_stdlog);
2087 puts_debug(char *prefix, char *string, char *suffix) argument
H A Ddefs.h473 extern void puts_debug (char *prefix, char *string, char *suffix);
H A Dhpread.c4734 char *suffix;
4735 suffix = VT (objfile) + dn_bufp->dtype.name;
4736 TYPE_NAME (structtype) = suffix;
4776 char *prefix, *suffix;
4777 suffix = VT (objfile) + dn_bufp->dtype.name;
4828 strlen (prefix) + strlen (suffix) + 1);
4830 TYPE_NAME (structtype) = strcat (TYPE_NAME (structtype), suffix);
4831 TYPE_TAG_NAME (structtype) = suffix;
4836 fix_static_member_physnames (structtype, suffix, objfile);
4761 char *prefix, *suffix; local
H A Ddwarf2read.c866 static char *typename_concat (struct obstack *, const char *prefix, const char *suffix,
7311 typename_concat (struct obstack *obs, const char *prefix, const char *suffix, argument
7316 if (suffix == NULL || suffix[0] == '\0' || prefix == NULL || prefix[0] == '\0')
7325 char *retval = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
7333 if (suffix)
7334 strcat (retval, suffix);
7341 return obconcat (obs, prefix, sep, suffix);
/haiku-fatelf/src/tools/docbook/libxml2/
H A Druntest.c101 const char *suffix;/* suffix for output files */ member in struct:testDesc
102 const char *err; /* suffix for error output files */
565 const char *suffix) {
577 if (suffix == NULL)
578 suffix = ".tmp";
581 snprintf(res, 499, "%s%s%s", out, base, suffix);
4281 if (tst->suffix != NULL) {
4283 tst->suffix);
564 resultFilename(const char *filename, const char *out, const char *suffix) argument
/haiku-fatelf/src/apps/mail/
H A DContent.cpp345 char suffix = string[index - 1];
346 if (suffix == '.'
347 || suffix == ','
348 || suffix == '?'
349 || suffix == '!'
350 || suffix == ':'
351 || suffix == ';')
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dsparc-opc.c1297 #define fmovicc(suffix, cond, flags) /* v9 */ \
1298 fmoviccx("fmovd" suffix, FM_DF, "B,H", cond, flags), \
1299 fmoviccx("fmovq" suffix, FM_QF, "R,J", cond, flags), \
1300 fmoviccx("fmovs" suffix, FM_SF, "f,g", cond, flags)
1302 #define fmovfcc(suffix, fcond, flags) /* v9 */ \
1303 fmovfccx("fmovd" suffix, FM_DF, "B,H", fcond, flags), \
1304 fmovfccx("fmovq" suffix, FM_QF, "R,J", fcond, flags), \
1305 fmovfccx("fmovs" suffix, FM_SF, "f,g", fcond, flags)
1307 #define fmovcc(suffix, cond, fcond, flags) /* v9 */ \
1308 fmovccx("fmovd" suffix, FM_D
[all...]
H A Dconfigure513 -program-suffix | --program-suffix | --program-suffi | --program-suff \
516 -program-suffix=* | --program-suffix=* | --program-suffi=* \
836 --program-suffix=SUFFIX append SUFFIX to installed program names
1881 echo "$as_me:$LINENO: checking for suffix of executables" >&5
1882 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
1903 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
1905 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
1917 echo "$as_me:$LINENO: checking for suffix o
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/src/cups/
H A Dcups-genppdupdate.in412 my $suffix = "\\" . $gzext; # Add '\', so m// matches the '.'.
726 my ($lingo, $suffix, $base, $basedir);
769 foreach $suffix (".ppd$gzext",
774 my ($fn) = "$basedir/$lingo$base$suffix";
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dcp-demangle.c3501 d_print_mod_list (dpi, mods, suffix)
3504 int suffix;
3512 || (! suffix
3517 d_print_mod_list (dpi, mods->next, suffix);
3574 d_print_mod_list (dpi, mods->next, suffix);
H A Dconfigure513 -program-suffix | --program-suffix | --program-suffi | --program-suff \
516 -program-suffix=* | --program-suffix=* | --program-suffi=* \
2214 echo "$as_me:$LINENO: checking for suffix of executables" >&5
2215 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
2236 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
2238 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
2251 echo "$as_me:$LINENO: checking for suffix of object files" >&5
2252 echo $ECHO_N "checking for suffix o
[all...]
/haiku-fatelf/src/libs/ncurses/
H A Dconfigure315 -program-suffix | --program-suffix | --program-suffi | --program-suff \
318 -program-suffix=* | --program-suffix=* | --program-suffi=* \
636 --program-suffix=SUFFIX append SUFFIX to installed program names
1728 echo "$as_me:1728: checking for executable suffix" >&5
1729 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
1761 echo "$as_me:1761: checking for object suffix" >&5
1762 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
2575 # autoconf's macro sets -Zexe and suffix bot
[all...]
H A Dconfig.status1093 suffix=$cf_suffix \
/haiku-fatelf/src/add-ons/kernel/file_systems/udf/
H A DUdfStructures.h273 const udf_id_suffix &suffix);
275 const implementation_id_suffix &suffix);
277 const domain_id_suffix &suffix);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/udf/r5/
H A DUdfStructures.h272 const udf_id_suffix &suffix);
274 const implementation_id_suffix &suffix);
276 const domain_id_suffix &suffix);
/haiku-fatelf/src/bin/coreutils/
H A Dconfigure1712 -program-suffix | --program-suffix | --program-suffi | --program-suff \
1715 -program-suffix=* | --program-suffix=* | --program-suffi=* \
2061 --program-suffix=SUFFIX append SUFFIX to installed program names
4394 # safe: cross compilers may not add the suffix if given an `-o'
4431 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
4432 $as_echo_n "checking for suffix of executables... " >&6; }
4460 as_fn_error "cannot compute suffix of executables: cannot compile and link
4529 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix o
[all...]
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Dconfigure170 --program-suffix=SUFFIX append SUFFIX to installed program names
268 -program-suffix | --program-suffix | --program-suffi | --program-suff \
271 -program-suffix=* | --program-suffix=* | --program-suffi=* \
1812 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
1813 echo "configure:1814: checking for executable suffix" >&5
/haiku-fatelf/src/bin/network/wget/src/
H A Dutils.c644 /* Otherwise, find a numeric suffix that results in unused file name
1044 /* Return the location of STR's suffix (file extension). Examples: function
1045 suffix ("foo.bar") -> "bar"
1046 suffix ("foo.bar.baz") -> "baz"
1047 suffix ("/foo/bar") -> NULL
1048 suffix ("/foo.bar/baz") -> NULL */
1050 suffix (const char *str)
1075 /* Return true if FNAME ends with a typical HTML suffix. The
1090 if ((suf = suffix (fname)) == NULL)
/haiku-fatelf/src/bin/less/
H A Dconfigure914 -program-suffix | --program-suffix | --program-suffi | --program-suff \
917 -program-suffix=* | --program-suffix=* | --program-suffi=* \
2122 # safe: cross compilers may not add the suffix if given an `-o'
2196 { echo "$as_me:$LINENO: checking for suffix of executables" >&5
2197 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
2222 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
2224 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
2236 { echo "$as_me:$LINENO: checking for suffix o
[all...]
/haiku-fatelf/src/libs/ncurses/test/
H A Dconfigure167 --program-suffix=SUFFIX append SUFFIX to installed program names
269 -program-suffix | --program-suffix | --program-suffi | --program-suff \
272 -program-suffix=* | --program-suffix=* | --program-suffi=* \
1036 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
1037 echo "configure:1038: checking for executable suffix" >&5
1067 echo $ac_n "checking for object suffix""... $ac_c" 1>&6
1068 echo "configure:1069: checking for object suffix" >&5
4987 # These rules are generated so we do not rely on suffix rule
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/bonnie++-1.03d/
H A Dconfigure925 -program-suffix | --program-suffix | --program-suffi | --program-suff \
928 -program-suffix=* | --program-suffix=* | --program-suffi=* \
1957 # safe: cross compilers may not add the suffix if given an `-o'
2031 { echo "$as_me:$LINENO: checking for suffix of executables" >&5
2032 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
2057 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
2059 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
2071 { echo "$as_me:$LINENO: checking for suffix o
[all...]
/haiku-fatelf/src/bin/gdb/bfd/
H A Delf32-xtensa.c9350 const char *suffix;
9367 suffix = sec->name + linkonce_len;
9370 if (strncmp (suffix, "t.", 2) == 0 && linkonce_kind[1] == '.')
9371 suffix += 2;
9372 strcat (prop_sec_name + linkonce_len, suffix);
9321 const char *suffix; local

Completed in 323 milliseconds

12345