Home | History | Annotate | Download | only in v8

Lines Matching refs:currentByte

1005         uint8_t currentByte;
1010 currentByte = m_buffer[m_position++];
1011 *value |= ((currentByte & varIntMask) << shift);
1013 } while (currentByte & (1 << varIntShift));