Searched refs:snapshot_byte (Results 1 – 1 of 1) sorted by relevance
258 int snapshot_byte = Get(); in GetInt() local259 if ((snapshot_byte & 0x80) == 0) { in GetInt()260 return snapshot_byte; in GetInt()262 int accumulator = (snapshot_byte & 0x7f) << 7; in GetInt()264 snapshot_byte = Get(); in GetInt()265 if ((snapshot_byte & 0x80) == 0) { in GetInt()266 return accumulator | snapshot_byte; in GetInt()268 accumulator = (accumulator | (snapshot_byte & 0x7f)) << 7; in GetInt()