Lines Matching refs:suffix
255 * @scale: Whether or not to allow a suffix to scale the value
258 * them. Any number without a suffix is assumed to be in bytes.
267 * Only the first character of the suffix is read.
277 char *suffix = NULL;
286 result = strtoll(value, &suffix, 0);
292 if (!suffix) {
293 ntfs_log_error("Internal error, strtoll didn't return a suffix.\n");
298 switch (suffix[0]) {
306 ntfs_log_error("Invalid size suffix '%s'. Use T, G, M, or K.\n", suffix);
310 if ((suffix[0] != '-') && (suffix[0] != 0)) {
311 ntfs_log_error("Invalid number '%.*s'.\n", (int)(suffix - value + 1), value);