Searched refs:ISSPACE (Results 1 – 14 of 14) sorted by relevance
49 #define ISSPACE(c) ((c) == ' ' || (c) == '\t') macro50 #define SKIP_WORD(cp) while (*cp != '\0' && !ISSPACE(*cp)) ++cp;51 #define SKIP_SPC(cp) while (ISSPACE(*cp)) ++cp;
51 #define ISNTWORDCH(c) ((c) == '\0' || ISSPACE(c))
213 while ((*str != '\0') && ISSPACE(*str)) \245 !ISSPACE(*ptr)) in find_boot_line_prop()252 while ((*ptr != '\0') && !ISSPACE(*ptr)) in find_boot_line_prop()283 (*ptr != ',') && (!ISSPACE(*ptr))) in find_boot_line_prop()295 else if (ISSPACE(*ptr)) in find_boot_line_prop()320 if ((end_char == ',') && ISSPACE(*ptr)) in find_boot_line_prop()323 if (*ptr && (*ptr != ',') && !ISSPACE(*ptr)) in find_boot_line_prop()566 (cons_str[len] == '"') || ISSPACE(cons_str[len])) && in bcons_init()
232 (cp[2] == '\0' || ISSPACE(cp[2]))) { in bootflags()241 while (*cp && !ISSPACE(*cp)) in bootflags()243 while (ISSPACE(*cp)) in bootflags()
47 #define ISSPACE(c) (c == ' ' || c == '\t') macro48 #define SKIP_WHITESPC(cp) while (*cp && ISSPACE(*cp)) cp++;318 for (i = 0; i < fname_buf_sz && *tp && !ISSPACE(*tp); ++i) in init_bootargs()
63 #define ISSPACE(_c) \ macro121 return (ISSPACE(c)); in isspace()
85 #define ISSPACE(x) isspace((u_char)(x)) macro153 if (c != '\0' && (!ISASCII(c) || !ISSPACE(c)))
136 if (ISSPACE(c)) {
662 while (ISSPACE(line[c])) in boot_prop_finish()674 while (ISSPACE(line[c])) in boot_prop_finish()684 while (line[c] && !ISSPACE(line[c])) in boot_prop_finish()692 while (ISSPACE(line[c])) in boot_prop_finish()696 while (line[c] && !ISSPACE(line[c])) in boot_prop_finish()1302 while (ISSPACE(*value)) in build_boot_properties()1308 while (*value && !ISSPACE(*value) && *value != '=') { in build_boot_properties()1321 while (value[value_len] && !ISSPACE(value[value_len])) { in build_boot_properties()1360 while (ISSPACE(*value)) in build_boot_properties()1366 while (value[value_len] && !ISSPACE(value[value_len])) in build_boot_properties()[all …]
121 for (c = *s; !ISSPACE(c) && (i > 0); i--)145 for (; !ISSPACE(c) && (i > 0); i--)189 if (ISSPACE(c))
1691 #define ISSPACE(x) isspace((u_char)(x)) macro
239 if (params.gos_strp[0] == '-' && ISSPACE(params.gos_strp[1])) { in bootflags()
1244 #define ISSPACE(c) (c == ' ' || c == '\t' || c == '\n' || c == '\0') in get_netconfig_strategy() macro1273 !ISSPACE(*op); sp++, op++) in get_netconfig_strategy()1287 *op != '\0' && *op != '/' && !ISSPACE(*op) && in get_netconfig_strategy()1295 #undef ISSPACE in get_netconfig_strategy()
87 #define ISSPACE(c) ((c) == ' ' || (c) == '\t') macro2706 while (ISSPACE(*cp)) in ntok()2714 } while (!ISSPACE(*cp) && !ISEOL(*cp)); in ntok()