Lines Matching refs:end
79 token = expect(token, '}', "at end of statement expression");
180 "at end of __builtin_types_compatible_p");
216 return expect(token, ')', "at end of __builtin_offset");
240 "at end of array dereference");
254 static unsigned long long parse_num(const char *nptr, char **end)
257 return strtoull(&nptr[2], end, 2);
258 return strtoull(nptr, end, 0);
265 char *end;
272 value = parse_num(str, &end);
273 if (end == str)
278 char c = *end++;
289 if (*end == c) {
291 end++;
361 expr->fvalue = string_to_ld(str, &end);
362 if (str == end)
365 if (*end && end[1])
368 if (*end == 'f' || *end == 'F')
370 else if (*end == 'l' || *end == 'L')
372 else if (!*end)
396 goto end;
417 end:
570 token = expect(token, ']', "at end of array dereference");
644 [EXPR_SIZEOF] = "at end of sizeof",
645 [EXPR_ALIGNOF] = "at end of __alignof__",
646 [EXPR_PTRSIZEOF] = "at end of __sizeof_ptr__"
769 token = expect(token, ')', "at end of cast operator");