Lines Matching defs:bytes
64 * \param n number of bytes.
66 * \todo try this trick to flip bytes someday:
78 b = (GLuint) p[i]; /* words are often faster than bytes */
152 GLint bytes, row, width_in_bytes;
159 bytes = ((width + 7) / 8 * height);
160 buffer = (GLubyte *) malloc( bytes );
2754 GLubyte *bytes = (GLubyte *) &(VALUE); \
2755 GLubyte tmp = bytes[0]; \
2756 bytes[0] = bytes[1]; \
2757 bytes[1] = tmp; \
2762 GLubyte *bytes = (GLubyte *) &(VALUE); \
2763 GLubyte tmp = bytes[0]; \
2764 bytes[0] = bytes[3]; \
2765 bytes[3] = tmp; \
2766 tmp = bytes[1]; \
2767 bytes[1] = bytes[2]; \
2768 bytes[2] = tmp; \