Home | History | Annotate | Download | only in hb-old

Lines Matching refs:glyph_index

654   HB_UShort              glyph_index, array_index, count;
672 glyph_index = glyphID;
674 glyph_index = glyphID - gcrr[index - 1].End - 1;
679 glyph_index = glyphID - gcrr[index].End - 1;
682 byte = ngc[array_index][glyph_index / 4];
683 bits = byte >> ( 16 - ( glyph_index % 4 + 1 ) * 4 );
989 HB_UShort array_index, glyph_index, count;
1038 glyph_index = glyphID;
1040 glyph_index = glyphID - gcrr[index - 1].End - 1;
1045 glyph_index = glyphID - gcrr[index].End - 1;
1048 byte = ngc[array_index][glyph_index / 4];
1049 bits = byte >> ( 16 - ( glyph_index % 4 + 1 ) * 4 );
1056 bits = new_class << ( 16 - ( glyph_index % 4 + 1 ) * 4 );
1057 mask = ~( 0x000F << ( 16 - ( glyph_index % 4 + 1 ) * 4 ) );
1059 ngc[array_index][glyph_index / 4] &= mask;
1060 ngc[array_index][glyph_index / 4] |= bits;