Home | History | Annotate | Download | only in psaux

Lines Matching refs:limit

74                   FT_Byte*   limit,
82 if ( p >= limit || base < 2 || base > 36 )
90 if ( p == limit )
94 for ( ; p < limit; p++ )
121 FT_Byte* limit )
128 num = PS_Conv_Strtol( cursor, limit, 10 );
131 if ( p < limit && *p == '#' )
135 return PS_Conv_Strtol( cursor, limit, num );
144 FT_Byte* limit,
153 if ( p >= limit )
161 if ( p == limit )
166 integral = PS_Conv_ToInt( &p, limit ) << 16;
171 if ( p < limit && *p == '.' )
175 for ( ; p < limit; p++ )
205 if ( p + 1 < limit && ( *p == 'e' || *p == 'E' ) )
208 power_ten += PS_Conv_ToInt( &p, limit );
240 FT_Byte* limit,
248 for ( p = *cursor; r < n && p < limit; p++ )
335 FT_Byte* limit,
351 if ( p >= limit )
354 if ( n > (FT_UInt)( limit - p ) )
355 n = (FT_UInt)( limit - p );
428 FT_Byte* limit,
442 if ( p >= limit )
445 if ( n > (FT_UInt)(limit - p) )
446 n = (FT_UInt)(limit - p);
463 for ( r = 0, p = *cursor; r < n && p < limit; r++, p++ )