Home
last modified time | relevance | path

Searched refs:stbtt_uint8 (Results 1 – 1 of 1) sorted by relevance

/external/mesa3d/src/imgui/
Dimstb_truetype.h428 #ifndef stbtt_uint8
429 typedef unsigned char stbtt_uint8; typedef
1116 static stbtt_uint8 stbtt__buf_get8(stbtt__buf *b) in stbtt__buf_get8()
1123 static stbtt_uint8 stbtt__buf_peek8(stbtt__buf *b) in stbtt__buf_peek8()
1155 r.data = (stbtt_uint8*) p; in stbtt__new_buf()
1265 #define ttBYTE(p) (* (stbtt_uint8 *) (p))
1269 static stbtt_uint16 ttUSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; } in ttUSHORT()
1270 static stbtt_int16 ttSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; } in ttSHORT()
1271 static stbtt_uint32 ttULONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; } in ttULONG()
1272 static stbtt_int32 ttLONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; } in ttLONG()
[all …]