Home
last modified time | relevance | path

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

/external/v8/src/parsing/
Dscanner.cc1647 uint32_t one_byte_length = (bytes.length() << 1) | (is_one_byte ? 1 : 0); in BackupKey() local
1651 if (one_byte_length >= (1 << 7)) { in BackupKey()
1652 if (one_byte_length >= (1 << 14)) { in BackupKey()
1653 if (one_byte_length >= (1 << 21)) { in BackupKey()
1654 if (one_byte_length >= (1 << 28)) { in BackupKey()
1656 static_cast<uint8_t>((one_byte_length >> 28) | 0x80)); in BackupKey()
1659 static_cast<uint8_t>((one_byte_length >> 21) | 0x80u)); in BackupKey()
1662 static_cast<uint8_t>((one_byte_length >> 14) | 0x80u)); in BackupKey()
1664 backing_store_.Add(static_cast<uint8_t>((one_byte_length >> 7) | 0x80u)); in BackupKey()
1666 backing_store_.Add(static_cast<uint8_t>(one_byte_length & 0x7f)); in BackupKey()