Searched refs:cur_value (Results 1 – 1 of 1) sorted by relevance
48 uint64_t cur_value = 0; in ReadULEB128() local55 cur_value += static_cast<uint64_t>(byte & 0x7f) << shift; in ReadULEB128()58 *value = cur_value; in ReadULEB128()63 uint64_t cur_value = 0; in ReadSLEB128() local70 cur_value += static_cast<uint64_t>(byte & 0x7f) << shift; in ReadSLEB128()75 cur_value |= static_cast<uint64_t>(-1) << shift; in ReadSLEB128()77 *value = static_cast<int64_t>(cur_value); in ReadSLEB128()