Lines Matching refs:uint64_t
248 uint64_t get_u64_le(const uint8_t* bytes) { in get_u64_le()
249 uint64_t lo = static_cast<uint64_t>(get_u32_le(bytes)); in get_u64_le()
250 uint64_t hi = static_cast<uint64_t>(get_u32_le(bytes + 4)); in get_u64_le()
263 uint64_t get_u64_be(const uint8_t* bytes) { in get_u64_be()
264 uint64_t hi = static_cast<uint64_t>(get_u32_be(bytes)); in get_u64_be()
265 uint64_t lo = static_cast<uint64_t>(get_u32_be(bytes + 4)); in get_u64_be()
278 virtual uint64_t GetU64At(off_t pos) = 0;
316 virtual uint64_t GetU64At(off_t pos) { in GetU64At()
336 virtual uint64_t GetU64At(off_t pos) { in GetU64At()
417 typedef uint64_t Off;
418 typedef uint64_t Addr;
421 typedef uint64_t Xword;