Home
last modified time | relevance | path

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

/external/freetype/src/type1/
Dt1afm.c82 #undef KERN_INDEX
83 #define KERN_INDEX( g1, g2 ) ( ( (FT_ULong)(g1) << 16 ) | (g2) ) macro
94 FT_ULong index1 = KERN_INDEX( pair1->index1, pair1->index2 ); in compare_kern_pairs()
95 FT_ULong index2 = KERN_INDEX( pair2->index1, pair2->index2 ); in compare_kern_pairs()
336 FT_ULong idx = KERN_INDEX( glyph1, glyph2 ); in T1_Get_Kerning()
349 midi = KERN_INDEX( mid->index1, mid->index2 ); in T1_Get_Kerning()
/external/freetype/src/psaux/
Dafmparse.c666 #undef KERN_INDEX
667 #define KERN_INDEX( g1, g2 ) ( ( (FT_ULong)g1 << 16 ) | g2 ) macro
678 FT_ULong index1 = KERN_INDEX( kp1->index1, kp1->index2 ); in afm_compare_kern_pairs()
679 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.