Lines Matching refs:suffix
535 * Only the first character of the suffix is read.
545 char *suffix = NULL;
552 result = strtoll(value, &suffix, 10);
558 if (!suffix) {
559 ntfs_log_error("Internal error, strtoll didn't return a suffix.\n");
563 if (strlen(suffix) > 1) {
564 ntfs_log_error("Invalid time suffix '%s'. Use Y, M, W, D or H.\n", suffix);
568 switch (suffix[0]) {
583 ntfs_log_error("Invalid time suffix '%s'. Use Y, M, W, D or H.\n", suffix);
1846 int suffix;
1871 suffix = 0;
1877 while (!s && (suffix < 999)) {
1878 suffix++;
1879 snprintf(&buffer[len], bufsize - len, ".%d", suffix);