Lines Matching defs:suffix
416 * Convert a user-supplied string into a size. Without any suffix the number
417 * will be assumed to be in bytes. If the number has a suffix of k, M or G it
423 char *suffix;
426 size = strtoll(s, &suffix, 10);
430 if (!*suffix) {
435 if (strlen(suffix) == 2 && suffix[1] == 'i')
437 else if (strlen(suffix) > 1)
453 switch (*suffix) {
2814 * suffix and is a multiple of the sector size.