Home
last modified time | relevance | path

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

/external/freetype/src/type1/
Dt1afm.c81 #undef KERN_INDEX
82 #define KERN_INDEX( g1, g2 ) ( ( (FT_ULong)(g1) << 16 ) | (g2) ) macro
93 FT_ULong index1 = KERN_INDEX( pair1->index1, pair1->index2 ); in compare_kern_pairs()
94 FT_ULong index2 = KERN_INDEX( pair2->index1, pair2->index2 ); in compare_kern_pairs()
335 FT_ULong idx = KERN_INDEX( glyph1, glyph2 ); in T1_Get_Kerning()
348 midi = KERN_INDEX( mid->index1, mid->index2 ); in T1_Get_Kerning()
/external/freetype/src/psaux/
Dafmparse.c665 #undef KERN_INDEX
666 #define KERN_INDEX( g1, g2 ) ( ( (FT_ULong)g1 << 16 ) | g2 ) macro
677 FT_ULong index1 = KERN_INDEX( kp1->index1, kp1->index2 ); in afm_compare_kern_pairs()
678 FT_ULong index2 = KERN_INDEX( kp2->index1, kp2->index2 ); in afm_compare_kern_pairs()
/external/freetype/
DChangeLog.237783 * src/type1/t1afm.c (KERN_INDEX): Make it more robust.