Searched refs:ascii_length (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/
H A Dpreparser.cc1767 uint32_t ascii_length = (bytes.length() << 1) | (is_ascii ? 1 : 0); local
1769 // Emit ascii_length as base-128 encoded number, with the 7th bit set
1771 if (ascii_length >= (1 << 7)) {
1772 if (ascii_length >= (1 << 14)) {
1773 if (ascii_length >= (1 << 21)) {
1774 if (ascii_length >= (1 << 28)) {
1775 backing_store_.Add(static_cast<byte>((ascii_length >> 28) | 0x80));
1777 backing_store_.Add(static_cast<byte>((ascii_length >> 21) | 0x80u));
1779 backing_store_.Add(static_cast<byte>((ascii_length >> 14) | 0x80u));
1781 backing_store_.Add(static_cast<byte>((ascii_length >>
[all...]

Completed in 301 milliseconds