Home | History | Annotate | Download | only in psaux

Lines Matching refs:buf

80   cf2_buf_readByte( CF2_Buffer  buf )
82 if ( buf->ptr < buf->end )
87 CF2_SET_ERROR( buf->error, Invalid_Stream_Operation );
91 return *(buf->ptr)++ + randomValue();
93 return *(buf->ptr)++;
98 CF2_SET_ERROR( buf->error, Invalid_Stream_Operation );
106 cf2_buf_isEnd( CF2_Buffer buf )
108 return (FT_Bool)( buf->ptr >= buf->end );