Searched defs:suffix (Results 51 - 54 of 54) sorted by relevance

123

/osnet-11/usr/src/lib/libc/port/print/
H A Ddoprnt.c189 #define SUFFIX 0x80 /* a suffix is to appear in the output */
506 wchar_t *suffix; local
520 char *suffix; local
526 /* Length of prefix and of suffix */
529 /* Combined length of leading zeroes, trailing zeroes, and suffix */
939 * right padding zeroes, a suffix, and
953 * The suffix is either null or an
954 * exponent, and is addressed by "suffix".
955 * If there is a suffix, the flagword bit
1383 suffix
[all...]
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfsresize.c385 * Convert a user-supplied string into a size. Without any suffix the number
386 * will be assumed to be in bytes. If the number has a suffix of k, M or G it
392 char *suffix; local
395 size = strtoll(s, &suffix, 10);
399 if (!*suffix)
402 if (strlen(suffix) == 2 && suffix[1] == 'i')
404 else if (strlen(suffix) > 1)
420 switch (*suffix) {
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_sendrecv.c3088 char suffix[ZFS_MAXNAMELEN]; local
3089 VERIFY(sizeof (suffix) > strlcpy(suffix,
3090 strrchr(zc.zc_value, '/'), sizeof (suffix)));
3095 strlcat(zc.zc_value, suffix,
/osnet-11/usr/src/lib/libzonecfg/common/
H A Dlibzonecfg.c6790 char *suffix; local
6801 suffix = "/lu";
6803 suffix = "/root";
6804 if (strlcat(devroot, suffix, rp_sz) >= rp_sz)
8854 * the authorization of its prefix and zone suffix.
8859 char *suffix; local
8864 ((suffix = strchr(*auth, '/')) != NULL)) {
8865 if (strcmp(suffix + 1, zonename) == 0) {
8867 suffix[0] = '\0';
8870 (strcmp(suffix
[all...]

Completed in 510 milliseconds

123