Lines Matching defs:suffix
322 * @scale: Whether or not to allow a suffix to scale the value
325 * them. Any number without a suffix is assumed to be in bytes.
334 * Only the first character of the suffix is read.
344 char *suffix = NULL;
353 result = strtoll(value, &suffix, 0);
359 if (!suffix) {
360 ntfs_log_error("Internal error, strtoll didn't return a suffix.\n");
365 switch (suffix[0]) {
377 ntfs_log_error("Invalid size suffix '%s'. Use T, G, M, or K.\n", suffix);
381 if ((suffix[0] != '-') && (suffix[0] != 0)) {
382 ntfs_log_error("Invalid number '%.*s'.\n", (int)(suffix - value + 1), value);