Home | History | Annotate | Download | only in cff

Lines Matching refs:nleft

905           FT_UInt  nleft;
920 if ( FT_READ_USHORT( nleft ) )
925 if ( FT_READ_BYTE( nleft ) )
929 /* try to rescue some of the SIDs if `nleft' is too large */
930 if ( glyph_sid > 0xFFFFL - nleft )
933 " nleft=%d -> %d\n", nleft, 0xFFFFL - glyph_sid ));
934 nleft = ( FT_UInt )( 0xFFFFL - glyph_sid );
937 /* Fill in the range of sids -- `nleft + 1' glyphs. */
938 for ( i = 0; j < num_glyphs && i <= nleft; i++, j++, glyph_sid++ )
1142 FT_UInt nleft;
1150 for ( j = 0; j < count; j++, i += nleft )
1157 if ( FT_READ_BYTE( nleft ) )
1160 /* Increment nleft, so we read `nleft + 1' codes/sids. */
1161 nleft++;
1164 if ( (FT_UInt)nleft
1165 encoding->count = nleft;
1168 for ( k = i; k < nleft + i; k++, glyph_code++ )