Searched defs:STREQ (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dstreq.h24 /* STREQ allows to optimize string comparison with a small literal string.
25 STREQ (s, "EUC-KR", 'E', 'U', 'C', '-', 'K', 'R', 0, 0, 0)
166 #define STREQ(s1,s2,s20,s21,s22,s23,s24,s25,s26,s27,s28) \ macro
171 #define STREQ(s1,s2,s20,s21,s22,s23,s24,s25,s26,s27,s28) \ macro
H A Dfnmatch.c92 # define STREQ(s1, s2) (strcmp (s1, s2) == 0) macro
126 (STREQ (string, "alpha") || STREQ (string, "upper") \
127 || STREQ (string, "lower") || STREQ (string, "digit") \
128 || STREQ (string, "alnum") || STREQ (string, "xdigit") \
129 || STREQ (string, "space") || STREQ (string, "print") \
130 || STREQ (strin
[all...]
/osnet-11/usr/src/lib/libproc/common/
H A DPgcore.c1470 #define STREQ(a, b, n) (strlen(b) == (n) && strncmp(a, b, n) == 0) macro
1483 if (STREQ(str, "default", cur - str)) {
1485 } else if (STREQ(str, "all", cur - str)) {
1487 } else if (STREQ(str, "none", cur - str)) {
1492 while (!STREQ(str, content_str[i], cur - str)) {

Completed in 31 milliseconds