Searched defs:snapshot_byte (Results 1 - 1 of 1) sorted by relevance

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

Completed in 52 milliseconds