Lines Matching full:uint64
65 uint64 ByteReader::ReadInitialLength(const char* start, size_t* len) {
66 const uint64 initial_length = ReadFourBytes(start);
103 uint64 ByteReader::ReadEncodedPointer(const char *buffer,
126 uint64 skew = section_base_ & (AddressSize() - 1);
128 uint64 offset = skew + (buffer - buffer_base_);
130 uint64 aligned = (offset + AddressSize() - 1) & -AddressSize();
140 uint64 offset;
204 uint64 base;
234 uint64 pointer = base + offset;
240 assert(AddressSize() == sizeof(uint64));