Lines Matching defs:UINT64_C
1443 =for apidoc_item |U64|UINT64_C|number
1448 If the machine does not have a 64-bit type, C<UINT64_C> is undefined.
1505 /* In OS X the INT64_C/UINT64_C are defined with LL/ULL, which will
1510 # undef UINT64_C
1515 # ifndef UINT64_C
1516 # define UINT64_C(c) PeRl_UINT64_C(c)
1554 # define UINTMAX_C(c) UINT64_C(c)
1588 (((U64)(x) & UINT64_C(0x00000000000000ff)) << 56) | \
1589 (((U64)(x) & UINT64_C(0x000000000000ff00)) << 40) | \
1590 (((U64)(x) & UINT64_C(0x0000000000ff0000)) << 24) | \
1591 (((U64)(x) & UINT64_C(0x00000000ff000000)) << 8) | \
1592 (((U64)(x) & UINT64_C(0x000000ff00000000)) >> 8) | \
1593 (((U64)(x) & UINT64_C(0x0000ff0000000000)) >> 24) | \
1594 (((U64)(x) & UINT64_C(0x00ff000000000000)) >> 40) | \
1595 (((U64)(x) & UINT64_C(0xff00000000000000)) >> 56) ))