Lines Matching defs:abbr
204 static void newabbr(const char * abbr);
2838 doabbr(char *abbr, size_t abbrlen, struct zone const *zp, const char *letters,
2855 snprintf(abbr, abbrlen, format, letters);
2857 strlcpy(abbr, slashp + 1, abbrlen);
2859 memcpy(abbr, format, slashp - format);
2860 abbr[slashp - format] = '\0';
2862 len = strlen(abbr);
2865 for (cp = abbr; is_alpha(*cp); cp++)
2869 abbr[len + 2] = '\0';
2870 abbr[len + 1] = '>';
2871 memmove(abbr + 1, abbr, len);
2872 abbr[0] = '<';
3510 addtype(zic_t utoff, char const *abbr, bool isdst, bool ttisstd, bool ttisut)
3522 if (strcmp(&chars[j], abbr) == 0)
3525 newabbr(abbr);
3665 itsabbr(register const char *abbr, register const char *word)
3667 if (lowerit(*abbr) != lowerit(*word))
3670 while (*++abbr != '\0')
3674 } while (lowerit(*word++) != lowerit(*abbr));
3681 ciprefix(char const *abbr, char const *word)
3684 if (!*abbr)
3686 while (lowerit(*abbr++) == lowerit(*word++));