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

/external/chromium_org/v8/src/
H A Dscanner.cc1347 uint32_t one_byte_length = (bytes.length() << 1) | (is_one_byte ? 1 : 0); local
1349 // Emit one_byte_length as base-128 encoded number, with the 7th bit set
1351 if (one_byte_length >= (1 << 7)) {
1352 if (one_byte_length >= (1 << 14)) {
1353 if (one_byte_length >= (1 << 21)) {
1354 if (one_byte_length >= (1 << 28)) {
1356 static_cast<uint8_t>((one_byte_length >> 28) | 0x80));
1359 static_cast<uint8_t>((one_byte_length >> 21) | 0x80u));
1362 static_cast<uint8_t>((one_byte_length >> 14) | 0x80u));
1364 backing_store_.Add(static_cast<uint8_t>((one_byte_length >>
[all...]

Completed in 146 milliseconds