HomeSort by relevance Sort by last modified time
    Searched refs:STRTOULL (Results 1 - 3 of 3) sorted by null

  /toolchain/binutils/binutils-2.27/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);
  /external/e2fsprogs/lib/blkid/
read.c 13 #define _XOPEN_SOURCE 600 /* for inclusion of strtoull */
32 #define STRTOULL strtoull /* defined in stdlib.h if you try hard enough */
34 /* FIXME: need to support real strtoull here */
35 #define STRTOULL strtoul
320 dev->bid_devno = STRTOULL(value, 0, 0);
324 dev->bid_time = STRTOULL(value, 0, 0);
  /external/e2fsprogs/debugfs/
set_fields.c 12 #define _XOPEN_SOURCE 600 /* for inclusion of strptime() and strtoull */
15 #define STRTOULL strtoull
17 #define STRTOULL strtoul
463 num = STRTOULL(arg, &tmp, 0);
635 blk = strtoull(arg, &tmp, 0);

Completed in 115 milliseconds