HomeSort by: relevance | last modified time | path
    Searched defs:STRTOULL (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/libiberty/testsuite/
test-strtol.c 63 STRTOULL,
102 { STRTOULL, "0x123", 0, 0x123ULL, 0 },
103 { STRTOULL, "123", 0, 123ULL, 0 },
104 { STRTOULL, "0123", 0, 0123ULL, 0 },
105 { STRTOULL, "0xFFFFFFFFFFFFFFFF", 0, 0xffffffffffffffffULL, 0 },
109 { STRTOULL, "0x10000000000000000", 0, 0xffffffffffffffffULL, ERANGE },
145 case STRTOULL:
146 res = strtoull (test_data[i].nptr, 0, test_data[i].base);
  /src/external/gpl3/gdb/dist/libiberty/testsuite/
test-strtol.c 63 STRTOULL,
102 { STRTOULL, "0x123", 0, 0x123ULL, 0 },
103 { STRTOULL, "123", 0, 123ULL, 0 },
104 { STRTOULL, "0123", 0, 0123ULL, 0 },
105 { STRTOULL, "0xFFFFFFFFFFFFFFFF", 0, 0xffffffffffffffffULL, 0 },
109 { STRTOULL, "0x10000000000000000", 0, 0xffffffffffffffffULL, ERANGE },
145 case STRTOULL:
146 res = strtoull (test_data[i].nptr, 0, test_data[i].base);
  /src/external/gpl3/gcc/dist/libquadmath/strtod/
strtod_l.c 55 # define STRTOULL(S, E, B) ____wcstoull_l_internal ((S), (E), (B), 0, loc)
70 # define STRTOULL(S, E, B) strtoull (S, E, B)
72 # define STRTOULL(S, E, B) strtoul (S, E, B)
686 mant = STRTOULL (startp + 1, &endp, 0);
  /src/external/gpl3/gcc.old/dist/libquadmath/strtod/
strtod_l.c 55 # define STRTOULL(S, E, B) ____wcstoull_l_internal ((S), (E), (B), 0, loc)
70 # define STRTOULL(S, E, B) strtoull (S, E, B)
72 # define STRTOULL(S, E, B) strtoul (S, E, B)
686 mant = STRTOULL (startp + 1, &endp, 0);

Completed in 22 milliseconds