Home
last modified time | relevance | path

Searched refs:snapshot_byte (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/
Dserialize.h258 int snapshot_byte = Get(); in GetInt() local
259 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()