Home | History | Annotate | Download | only in fonts

Lines Matching refs:m_offset

49         , m_offset(0) { }
53 if (m_offset + numBytes > m_length)
55 m_offset += numBytes;
61 if (m_offset + sizeof(uint8_t) > m_length)
63 *value = m_buffer[m_offset];
64 m_offset += sizeof(uint8_t);
70 if (m_offset + sizeof(uint16_t) > m_length)
72 memcpy(value, m_buffer + m_offset, sizeof(uint16_t));
74 m_offset += sizeof(uint16_t);
85 return m_offset;
90 m_offset = newoffset;
96 size_t m_offset;