HomeSort by relevance Sort by last modified time
    Searched full:one_byte_length (Results 1 - 1 of 1) sorted by null

  /external/v8/src/parsing/
duplicate-finder.cc 63 uint32_t one_byte_length = (bytes.length() << 1) | (is_one_byte ? 1 : 0); local
65 // Emit one_byte_length as base-128 encoded number, with the 7th bit set
67 if (one_byte_length >= (1 << 7)) {
68 if (one_byte_length >= (1 << 14)) {
69 if (one_byte_length >= (1 << 21)) {
70 if (one_byte_length >= (1 << 28)) {
72 static_cast<uint8_t>((one_byte_length >> 28) | 0x80));
75 static_cast<uint8_t>((one_byte_length >> 21) | 0x80u));
77 backing_store_.Add(static_cast<uint8_t>((one_byte_length >> 14) | 0x80u));
79 backing_store_.Add(static_cast<uint8_t>((one_byte_length >> 7) | 0x80u))
    [all...]

Completed in 75 milliseconds