Lines Matching refs:XcursorUInt
95 XcursorUInt type; /* chunk type */
96 XcursorUInt subtype; /* subtype (size for images) */
97 XcursorUInt position; /* absolute position in file */
101 XcursorUInt magic; /* magic number */
102 XcursorUInt header; /* byte length of header */
103 XcursorUInt version; /* file version number */
104 XcursorUInt ntoc; /* number of toc entries */
127 XcursorUInt header; /* bytes in chunk header */
128 XcursorUInt type; /* chunk type */
129 XcursorUInt subtype; /* chunk subtype (size for images) */
130 XcursorUInt version; /* version of this type */
156 XcursorUInt version;
157 XcursorUInt comment_type;
279 _XcursorReadUInt (XcursorFile *file, XcursorUInt *u) in _XcursorReadUInt()
289 *u = ((XcursorUInt)(bytes[0]) << 0) | in _XcursorReadUInt()
290 ((XcursorUInt)(bytes[1]) << 8) | in _XcursorReadUInt()
291 ((XcursorUInt)(bytes[2]) << 16) | in _XcursorReadUInt()
292 ((XcursorUInt)(bytes[3]) << 24); in _XcursorReadUInt()
325 XcursorUInt skip; in _XcursorReadFileHeader()