Lines Matching refs:m_pValue

78     char *m_pValue;  variable
114 m_pValue = m_pIFDBase + IFD_FIELDCOUNT_SIZE + IFD_FIELD_SIZE * tagcount + in CIFDWriter()
133 m_pIFDBase = WriteOffset(m_pIFDBase, m_pValue); in WriteByte()
135 *m_pValue++ = static_cast<char>(value[i]); in WriteByte()
151 m_pIFDBase = WriteOffset(m_pIFDBase, m_pValue); in WriteShort()
153 *m_pValue++ = *p++; in WriteShort()
154 *m_pValue++ = *p++; in WriteShort()
172 m_pIFDBase = WriteOffset(m_pIFDBase, m_pValue); in WriteLong()
173 *m_pValue++ = *p++; in WriteLong()
188 m_pIFDBase = WriteOffset(m_pIFDBase, m_pValue); in WriteASCII()
189 memcpy(m_pValue, value, count); in WriteASCII()
190 m_pValue[count - 1] = '\0'; in WriteASCII()
191 m_pValue += count; in WriteASCII()
205 m_pIFDBase = WriteOffset(m_pIFDBase, m_pValue); in WriteCString()
206 strncpy(m_pValue, string, count); in WriteCString()
207 m_pValue[count - 1] = '\0'; in WriteCString()
208 m_pValue += count; in WriteCString()
224 m_pIFDBase = WriteOffset(m_pIFDBase, m_pValue); in WriteRational()
229 *m_pValue++ = *pt++; in WriteRational()
230 *m_pValue++ = *pt++; in WriteRational()
231 *m_pValue++ = *pt++; in WriteRational()
232 *m_pValue++ = *pt++; in WriteRational()
234 *m_pValue++ = *pt++; in WriteRational()
235 *m_pValue++ = *pt++; in WriteRational()
236 *m_pValue++ = *pt++; in WriteRational()
237 *m_pValue++ = *pt++; in WriteRational()
245 m_pIFDBase = WriteOffset(m_pIFDBase, m_pValue); in WriteSRational()
248 for (uint32_t i = 0; i < sizeof(srational_t) * count; i++) *m_pValue++ = *pt++; in WriteSRational()
256 m_pIFDBase = WriteOffset(m_pIFDBase, m_pValue); in WriteUndef()
257 memcpy(m_pValue, value, count); in WriteUndef()
258 m_pValue += count; in WriteUndef()
270 uint32_t offset = Offset(m_pValue); in BeginSubIFD()
277 return m_pValue; in BeginSubIFD()
280 void EndSubIFD(char *end_of_subIFD) { m_pValue = end_of_subIFD; } in EndSubIFD()
286 uint32_t offset = last ? 0 : Offset(m_pValue); in Finish()
294 char *GetNextIFDBase() { return m_pValue; } in GetNextIFDBase()