Searched refs:val64 (Results 1 – 1 of 1) sorted by relevance
206 int64_t val64; in Decode() local224 val64 = prefix_to_signed_data[byte0]; in Decode()226 val64 = prefix_to_data[byte0]; in Decode()230 val64 = (val64 << 8) | *next_++; in Decode()248 val64 = prefix_to_signed_data[byte0]; in Decode()250 val64 = prefix_to_data[byte0]; in Decode()256 val64 = (val64 << 8) | ((data >> 48) & 0xffull); in Decode()259 val64 = (val64 << 16) | ((data >> 40) & 0xffffull); in Decode()262 val64 = (val64 << 24) | ((data >> 32) & 0xffffffull); in Decode()265 val64 = (val64 << 32) | ((data >> 24) & 0xffffffffull); in Decode()[all …]