Lines Matching refs:constant_str
85 long int parse_single_constant(char *constant_str, char **endptr) in parse_single_constant() argument
90 if (!strcmp(entry->name, constant_str)) { in parse_single_constant()
92 *endptr = constant_str + strlen(constant_str); in parse_single_constant()
99 res = strtol(constant_str, endptr, 0); in parse_single_constant()
104 res = strtoul(constant_str, endptr, 0); in parse_single_constant()
111 warn("unsigned overflow: '%s'", constant_str); in parse_single_constant()
112 *endptr = constant_str; in parse_single_constant()
120 warn("signed underflow: '%s'", constant_str); in parse_single_constant()
121 *endptr = constant_str; in parse_single_constant()
128 long int parse_constant(char *constant_str, char **endptr) in parse_constant() argument
131 char *group, *lastpos = constant_str; in parse_constant()
132 char *original_constant_str = constant_str; in parse_constant()
143 while ((group = tokenize(&constant_str, "|")) != NULL) { in parse_constant()