Searched refs:stbtt_uint8 (Results 1 – 1 of 1) sorted by relevance
382 #ifndef stbtt_uint8383 typedef unsigned char stbtt_uint8; typedef955 #define ttBYTE(p) (* (stbtt_uint8 *) (p))968 static stbtt_uint16 ttUSHORT(const stbtt_uint8 *p) { return p[0]*256 + p[1]; } in ttUSHORT()969 static stbtt_int16 ttSHORT(const stbtt_uint8 *p) { return p[0]*256 + p[1]; } in ttSHORT()970 …static stbtt_uint32 ttULONG(const stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + … in ttULONG()971 …static stbtt_int32 ttLONG(const stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + … in ttLONG()978 static int stbtt__isfont(const stbtt_uint8 *font) in stbtt__isfont()989 static stbtt_uint32 stbtt__find_table(stbtt_uint8 *data, stbtt_uint32 fontstart, const char *tag) in stbtt__find_table()1023 stbtt_uint8 *data = (stbtt_uint8 *) data2; in stbtt_InitFont()[all …]