Home | History | Annotate | Download | only in OpenglSystemCommon

Lines Matching refs:m_buf

28     m_buf(NULL)
36 m_buf(NULL)
46 if (m_buf != NULL) {
47 free(m_buf);
62 if (!m_buf) {
63 m_buf = (unsigned char *)malloc(allocSize);
66 unsigned char *p = (unsigned char *)realloc(m_buf, allocSize);
68 m_buf = p;
72 free(m_buf);
73 m_buf = NULL;
78 return m_buf;
83 return writeFully(m_buf, size);