Searched refs:lo (Results 1 – 3 of 3) sorted by relevance
91 lo = self.ReadInt()93 return (hi << 32) | lo
79 lo = ((1 << 32) - 1) & integer80 hi = (integer - lo) >> 3281 new_content = stream.content + struct.pack(stream.format + 'II', lo,
60 uint8_t lo = HexDigitToByte(hex[i * 2 + 1]); in HexToBytes() local61 if (lo > 0xf || hi > 0xf) { in HexToBytes()64 bytes->at(i) = (hi << 4) | lo; in HexToBytes()