Home | History | Annotate | Download | only in cff

Lines Matching refs:nleft

906           FT_UInt  nleft;
921 if ( FT_READ_USHORT( nleft ) )
926 if ( FT_READ_BYTE( nleft ) )
930 /* try to rescue some of the SIDs if `nleft' is too large */
931 if ( glyph_sid > 0xFFFFL - nleft )
934 " nleft=%d -> %d\n", nleft, 0xFFFFL - glyph_sid ));
935 nleft = ( FT_UInt )( 0xFFFFL - glyph_sid );
938 /* Fill in the range of sids -- `nleft + 1' glyphs. */
939 for ( i = 0; j < num_glyphs && i <= nleft; i++, j++, glyph_sid++ )
1143 FT_UInt nleft;
1151 for ( j = 0; j < count; j++, i += nleft )
1158 if ( FT_READ_BYTE( nleft ) )
1161 /* Increment nleft, so we read `nleft + 1' codes/sids. */
1162 nleft++;
1165 if ( (FT_UInt)nleft > encoding->count )
1166 encoding->count = nleft;
1169 for ( k = i; k < nleft + i; k++, glyph_code++ )