Lines Matching defs:str
998 static enum string_value_kind expr_parse_string(const char *str,
1009 val->s = !strcmp(str, "n") ? 0 :
1010 !strcmp(str, "m") ? 1 :
1011 !strcmp(str, "y") ? 2 : -1;
1014 val->s = strtoll(str, &tail, 10);
1018 val->u = strtoull(str, &tail, 16);
1022 val->s = strtoll(str, &tail, 0);
1026 return !errno && !*tail && tail > str && isxdigit(tail[-1])
1230 static void expr_print_file_helper(void *data, struct symbol *sym, const char *str)
1232 xfwrite(str, strlen(str), 1, data);
1240 static void expr_print_gstr_helper(void *data, struct symbol *sym, const char *str)
1249 unsigned extra_length = strlen(str);
1265 str_append(gs, str);