Searched refs:unpacked_element (Results 1 – 1 of 1) sorted by relevance
166 uint64_t unpacked_element = in UnpackUint64FromByteStringAt() local168 return unpacked_element; in UnpackUint64FromByteStringAt()175 uint64_t unpacked_element = 0; in UnpackUint64FromByteStringAt() local183 unpacked_element |= (byte_string[current_byte_index] & lower_bits_mask); in UnpackUint64FromByteStringAt()192 unpacked_element <<= 8; in UnpackUint64FromByteStringAt()193 unpacked_element |= byte_string[current_byte_index] & 0xff; in UnpackUint64FromByteStringAt()201 unpacked_element <<= bits_left_to_unpack; in UnpackUint64FromByteStringAt()203 unpacked_element |= (byte_string[current_byte_index] & 0xff) >> in UnpackUint64FromByteStringAt()207 return unpacked_element; in UnpackUint64FromByteStringAt()