Home | History | Annotate | Download | only in chromium

Lines Matching refs:m_offset

48         , m_offset(0) { }
52 if (m_offset + numBytes > m_length)
54 m_offset += numBytes;
60 if (m_offset + sizeof(uint8_t) > m_length)
62 *value = m_buffer[m_offset];
63 m_offset += sizeof(uint8_t);
69 if (m_offset + sizeof(uint16_t) > m_length)
71 memcpy(value, m_buffer + m_offset, sizeof(uint16_t));
73 m_offset += sizeof(uint16_t);
84 return m_offset;
89 m_offset = newoffset;
95 size_t m_offset;