Home
last modified time | relevance | path

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

/external/v8/src/
Dserialize.h307 int snapshot_byte = Get(); in GetInt() local
308 if ((snapshot_byte & 0x80) == 0) { in GetInt()
309 return snapshot_byte; in GetInt()
311 int accumulator = (snapshot_byte & 0x7f) << 7; in GetInt()
313 snapshot_byte = Get(); in GetInt()
314 if ((snapshot_byte & 0x80) == 0) { in GetInt()
315 return accumulator | snapshot_byte; in GetInt()
317 accumulator = (accumulator | (snapshot_byte & 0x7f)) << 7; in GetInt()