zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ftstream.h File Reference
#include <ft2build.h>
#include <FT_SYSTEM_H>
#include <FT_INTERNAL_OBJECTS_H>

Go to the source code of this file.

Classes

struct  FT_Frame_Field_
 

Macros

#define FT_BYTE_(p, i)   ( ((const FT_Byte*)(p))[(i)] )
 
#define FT_BYTE_I16(p, i, s)   ( FT_INT16( FT_BYTE_( p, i ) ) << (s) )
 
#define FT_BYTE_I32(p, i, s)   ( FT_INT32( FT_BYTE_( p, i ) ) << (s) )
 
#define FT_BYTE_U16(p, i, s)   ( FT_UINT16( FT_BYTE_( p, i ) ) << (s) )
 
#define FT_BYTE_U32(p, i, s)   ( FT_UINT32( FT_BYTE_( p, i ) ) << (s) )
 
#define FT_FIELD_OFFSET(f)   (FT_UShort)( offsetof( FT_STRUCTURE, f ) )
 
#define FT_FIELD_SIZE(f)   (FT_Byte)sizeof ( ((FT_STRUCTURE*)0)->f )
 
#define FT_FIELD_SIZE_DELTA(f)   (FT_Byte)sizeof ( ((FT_STRUCTURE*)0)->f[0] )
 
#define FT_FRAME_BYTE(f)   FT_FRAME_FIELD( ft_frame_byte, f )
 
#define FT_FRAME_BYTES(field, count)
 
#define FT_FRAME_CHAR(f)   FT_FRAME_FIELD( ft_frame_schar, f )
 
#define FT_FRAME_END   { ft_frame_end, 0, 0 }
 
#define FT_FRAME_ENTER(size)
 
#define FT_FRAME_EXIT()   FT_DEBUG_INNER( FT_Stream_ExitFrame( stream ) )
 
#define FT_FRAME_EXTRACT(size, bytes)
 
#define FT_FRAME_FIELD(frame_op, field)
 
#define FT_FRAME_LONG(f)   FT_FRAME_FIELD( ft_frame_long_be, f )
 
#define FT_FRAME_LONG_LE(f)   FT_FRAME_FIELD( ft_frame_long_le, f )
 
#define FT_FRAME_OFF3(f)   FT_FRAME_FIELD( ft_frame_off3_be, f )
 
#define FT_FRAME_OFF3_LE(f)   FT_FRAME_FIELD( ft_frame_off3_le, f )
 
#define FT_FRAME_OP_BYTE   2 /* read 1-byte value */
 
#define FT_FRAME_OP_BYTES   6 /* read a bytes sequence */
 
#define FT_FRAME_OP_COMMAND(x)   ( x >> FT_FRAME_OP_SHIFT )
 
#define FT_FRAME_OP_END   0
 
#define FT_FRAME_OP_LITTLE   2
 
#define FT_FRAME_OP_LONG   4 /* read 4-byte value */
 
#define FT_FRAME_OP_OFF3   5 /* read 3-byte value */
 
#define FT_FRAME_OP_SHIFT   2
 
#define FT_FRAME_OP_SHORT   3 /* read 2-byte value */
 
#define FT_FRAME_OP_SIGNED   1
 
#define FT_FRAME_OP_START   1 /* start a new frame */
 
#define FT_FRAME_RELEASE(bytes)
 
#define FT_FRAME_SHORT(f)   FT_FRAME_FIELD( ft_frame_short_be, f )
 
#define FT_FRAME_SHORT_LE(f)   FT_FRAME_FIELD( ft_frame_short_le, f )
 
#define FT_FRAME_SKIP_BYTE   { ft_frame_byte, 0, 0 }
 
#define FT_FRAME_SKIP_BYTES(count)   { ft_frame_skip, count, 0 }
 
#define FT_FRAME_SKIP_LONG   { ft_frame_long_be, 0, 0 }
 
#define FT_FRAME_SKIP_SHORT   { ft_frame_short_be, 0, 0 }
 
#define FT_FRAME_START(size)   { ft_frame_start, 0, size }
 
#define FT_FRAME_ULONG(f)   FT_FRAME_FIELD( ft_frame_ulong_be, f )
 
#define FT_FRAME_ULONG_LE(f)   FT_FRAME_FIELD( ft_frame_ulong_le, f )
 
#define FT_FRAME_UOFF3(f)   FT_FRAME_FIELD( ft_frame_uoff3_be, f )
 
#define FT_FRAME_UOFF3_LE(f)   FT_FRAME_FIELD( ft_frame_uoff3_le, f )
 
#define FT_FRAME_USHORT(f)   FT_FRAME_FIELD( ft_frame_ushort_be, f )
 
#define FT_FRAME_USHORT_LE(f)   FT_FRAME_FIELD( ft_frame_ushort_le, f )
 
#define FT_GET_BYTE()   FT_GET_MACRO( FT_Stream_GetChar, FT_Byte )
 
#define FT_GET_CHAR()   FT_GET_MACRO( FT_Stream_GetChar, FT_Char )
 
#define FT_GET_LONG()   FT_GET_MACRO( FT_Stream_GetULong, FT_Long )
 
#define FT_GET_LONG_LE()   FT_GET_MACRO( FT_Stream_GetULongLE, FT_Long )
 
#define FT_GET_MACRO(func, type)   ( (type)func( stream ) )
 
#define FT_GET_OFF3()   FT_GET_MACRO( FT_Stream_GetUOffset, FT_Long )
 
#define FT_GET_SHORT()   FT_GET_MACRO( FT_Stream_GetUShort, FT_Short )
 
#define FT_GET_SHORT_LE()   FT_GET_MACRO( FT_Stream_GetUShortLE, FT_Short )
 
#define FT_GET_TAG4()   FT_GET_MACRO( FT_Stream_GetULong, FT_ULong )
 
#define FT_GET_ULONG()   FT_GET_MACRO( FT_Stream_GetULong, FT_ULong )
 
#define FT_GET_ULONG_LE()   FT_GET_MACRO( FT_Stream_GetULongLE, FT_ULong )
 
#define FT_GET_UOFF3()   FT_GET_MACRO( FT_Stream_GetUOffset, FT_ULong )
 
#define FT_GET_USHORT()   FT_GET_MACRO( FT_Stream_GetUShort, FT_UShort )
 
#define FT_GET_USHORT_LE()   FT_GET_MACRO( FT_Stream_GetUShortLE, FT_UShort )
 
#define FT_INT16(x)   ( (FT_Int16)(x) )
 
#define FT_INT32(x)   ( (FT_Int32)(x) )
 
#define FT_INT8_(p, i)   ( ((const FT_Char*)(p))[(i)] )
 
#define FT_INT8_I16(p, i, s)   ( FT_INT16( FT_INT8_( p, i ) ) << (s) )
 
#define FT_INT8_I32(p, i, s)   ( FT_INT32( FT_INT8_( p, i ) ) << (s) )
 
#define FT_INT8_U16(p, i, s)   ( FT_UINT16( FT_INT8_( p, i ) ) << (s) )
 
#define FT_INT8_U32(p, i, s)   ( FT_UINT32( FT_INT8_( p, i ) ) << (s) )
 
#define FT_MAKE_EMPTY_FIELD(frame_op)   { frame_op, 0, 0 }
 
#define FT_MAKE_FRAME_OP(command, little, sign)   ( ( command << FT_FRAME_OP_SHIFT ) | ( little << 1 ) | sign )
 
#define FT_NEXT_BYTE(buffer)   ( (unsigned char)*buffer++ )
 
#define FT_NEXT_CHAR(buffer)   ( (signed char)*buffer++ )
 
#define FT_NEXT_LONG(buffer)   ( (long)( buffer += 4, FT_PEEK_LONG( buffer - 4 ) ) )
 
#define FT_NEXT_LONG_LE(buffer)   ( (long)( buffer += 4, FT_PEEK_LONG_LE( buffer - 4 ) ) )
 
#define FT_NEXT_OFF3(buffer)   ( (long)( buffer += 3, FT_PEEK_OFF3( buffer - 3 ) ) )
 
#define FT_NEXT_OFF3_LE(buffer)   ( (long)( buffer += 3, FT_PEEK_OFF3_LE( buffer - 3 ) ) )
 
#define FT_NEXT_SHORT(buffer)   ( (short)( buffer += 2, FT_PEEK_SHORT( buffer - 2 ) ) )
 
#define FT_NEXT_SHORT_LE(buffer)   ( (short)( buffer += 2, FT_PEEK_SHORT_LE( buffer - 2 ) ) )
 
#define FT_NEXT_ULONG(buffer)   ( (unsigned long)( buffer += 4, FT_PEEK_ULONG( buffer - 4 ) ) )
 
#define FT_NEXT_ULONG_LE(buffer)   ( (unsigned long)( buffer += 4, FT_PEEK_ULONG_LE( buffer - 4 ) ) )
 
#define FT_NEXT_UOFF3(buffer)   ( (unsigned long)( buffer += 3, FT_PEEK_UOFF3( buffer - 3 ) ) )
 
#define FT_NEXT_UOFF3_LE(buffer)   ( (unsigned long)( buffer += 3, FT_PEEK_UOFF3_LE( buffer - 3 ) ) )
 
#define FT_NEXT_USHORT(buffer)   ( (unsigned short)( buffer += 2, FT_PEEK_USHORT( buffer - 2 ) ) )
 
#define FT_NEXT_USHORT_LE(buffer)   ( (unsigned short)( buffer += 2, FT_PEEK_USHORT_LE( buffer - 2 ) ) )
 
#define FT_PEEK_LONG(p)
 
#define FT_PEEK_LONG_LE(p)
 
#define FT_PEEK_OFF3(p)
 
#define FT_PEEK_OFF3_LE(p)
 
#define FT_PEEK_SHORT(p)
 
#define FT_PEEK_SHORT_LE(p)
 
#define FT_PEEK_ULONG(p)
 
#define FT_PEEK_ULONG_LE(p)
 
#define FT_PEEK_UOFF3(p)
 
#define FT_PEEK_UOFF3_LE(p)
 
#define FT_PEEK_USHORT(p)
 
#define FT_PEEK_USHORT_LE(p)
 
#define FT_READ_BYTE(var)   FT_READ_MACRO( FT_Stream_ReadChar, FT_Byte, var )
 
#define FT_READ_CHAR(var)   FT_READ_MACRO( FT_Stream_ReadChar, FT_Char, var )
 
#define FT_READ_LONG(var)   FT_READ_MACRO( FT_Stream_ReadULong, FT_Long, var )
 
#define FT_READ_LONG_LE(var)   FT_READ_MACRO( FT_Stream_ReadULongLE, FT_Long, var )
 
#define FT_READ_MACRO(func, type, var)
 
#define FT_READ_OFF3(var)   FT_READ_MACRO( FT_Stream_ReadUOffset, FT_Long, var )
 
#define FT_READ_SHORT(var)   FT_READ_MACRO( FT_Stream_ReadUShort, FT_Short, var )
 
#define FT_READ_SHORT_LE(var)   FT_READ_MACRO( FT_Stream_ReadUShortLE, FT_Short, var )
 
#define FT_READ_ULONG(var)   FT_READ_MACRO( FT_Stream_ReadULong, FT_ULong, var )
 
#define FT_READ_ULONG_LE(var)   FT_READ_MACRO( FT_Stream_ReadULongLE, FT_ULong, var )
 
#define FT_READ_UOFF3(var)   FT_READ_MACRO( FT_Stream_ReadUOffset, FT_ULong, var )
 
#define FT_READ_USHORT(var)   FT_READ_MACRO( FT_Stream_ReadUShort, FT_UShort, var )
 
#define FT_READ_USHORT_LE(var)   FT_READ_MACRO( FT_Stream_ReadUShortLE, FT_UShort, var )
 
#define FT_STREAM_POS()   FT_Stream_Pos( stream )
 
#define FT_STREAM_READ(buffer, count)
 
#define FT_STREAM_READ_AT(position, buffer, count)
 
#define FT_STREAM_READ_FIELDS(fields, object)   FT_SET_ERROR( FT_Stream_ReadFields( stream, fields, object ) )
 
#define FT_STREAM_SEEK(position)   FT_SET_ERROR( FT_Stream_Seek( stream, position ) )
 
#define FT_STREAM_SKIP(distance)   FT_SET_ERROR( FT_Stream_Skip( stream, distance ) )
 
#define FT_UINT16(x)   ( (FT_UInt16)(x) )
 
#define FT_UINT32(x)   ( (FT_UInt32)(x) )
 

Typedefs

typedef struct FT_Frame_Field_ FT_Frame_Field
 
typedef enum FT_Frame_Op_ FT_Frame_Op
 

Enumerations

enum  FT_Frame_Op_ {
  ft_frame_end = 0, ft_frame_start = FT_MAKE_FRAME_OP( FT_FRAME_OP_START, 0, 0 ), ft_frame_byte = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 0 ), ft_frame_schar = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 1 ),
  ft_frame_ushort_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 0 ), ft_frame_short_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 1 ), ft_frame_ushort_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 0 ), ft_frame_short_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 1 ),
  ft_frame_ulong_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 0 ), ft_frame_long_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 1 ), ft_frame_ulong_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 0 ), ft_frame_long_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 1 ),
  ft_frame_uoff3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 0 ), ft_frame_off3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 1 ), ft_frame_uoff3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 0 ), ft_frame_off3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 1 ),
  ft_frame_bytes = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 0 ), ft_frame_skip = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 1 )
}
 

Functions

 FT_Stream_Close (FT_Stream stream)
 
 FT_Stream_EnterFrame (FT_Stream stream, FT_ULong count)
 
 FT_Stream_ExitFrame (FT_Stream stream)
 
 FT_Stream_ExtractFrame (FT_Stream stream, FT_ULong count, FT_Byte **pbytes)
 
 FT_Stream_Free (FT_Stream stream, FT_Int external)
 
 FT_Stream_GetChar (FT_Stream stream)
 
 FT_Stream_GetULong (FT_Stream stream)
 
 FT_Stream_GetULongLE (FT_Stream stream)
 
 FT_Stream_GetUOffset (FT_Stream stream)
 
 FT_Stream_GetUShort (FT_Stream stream)
 
 FT_Stream_GetUShortLE (FT_Stream stream)
 
 FT_Stream_New (FT_Library library, const FT_Open_Args *args, FT_Stream *astream)
 
 FT_Stream_Open (FT_Stream stream, const char *filepathname)
 
 FT_Stream_OpenMemory (FT_Stream stream, const FT_Byte *base, FT_ULong size)
 
 FT_Stream_Pos (FT_Stream stream)
 
 FT_Stream_Read (FT_Stream stream, FT_Byte *buffer, FT_ULong count)
 
 FT_Stream_ReadAt (FT_Stream stream, FT_ULong pos, FT_Byte *buffer, FT_ULong count)
 
 FT_Stream_ReadChar (FT_Stream stream, FT_Error *error)
 
 FT_Stream_ReadFields (FT_Stream stream, const FT_Frame_Field *fields, void *structure)
 
 FT_Stream_ReadULong (FT_Stream stream, FT_Error *error)
 
 FT_Stream_ReadULongLE (FT_Stream stream, FT_Error *error)
 
 FT_Stream_ReadUOffset (FT_Stream stream, FT_Error *error)
 
 FT_Stream_ReadUShort (FT_Stream stream, FT_Error *error)
 
 FT_Stream_ReadUShortLE (FT_Stream stream, FT_Error *error)
 
 FT_Stream_ReleaseFrame (FT_Stream stream, FT_Byte **pbytes)
 
 FT_Stream_Seek (FT_Stream stream, FT_ULong pos)
 
 FT_Stream_Skip (FT_Stream stream, FT_Long distance)
 
 FT_Stream_TryRead (FT_Stream stream, FT_Byte *buffer, FT_ULong count)
 

Macro Definition Documentation

#define FT_BYTE_ (   p,
  i 
)    ( ((const FT_Byte*)(p))[(i)] )

Definition at line 156 of file ftstream.h.

#define FT_BYTE_I16 (   p,
  i,
  s 
)    ( FT_INT16( FT_BYTE_( p, i ) ) << (s) )

Definition at line 164 of file ftstream.h.

#define FT_BYTE_I32 (   p,
  i,
  s 
)    ( FT_INT32( FT_BYTE_( p, i ) ) << (s) )

Definition at line 166 of file ftstream.h.

#define FT_BYTE_U16 (   p,
  i,
  s 
)    ( FT_UINT16( FT_BYTE_( p, i ) ) << (s) )

Definition at line 165 of file ftstream.h.

#define FT_BYTE_U32 (   p,
  i,
  s 
)    ( FT_UINT32( FT_BYTE_( p, i ) ) << (s) )

Definition at line 167 of file ftstream.h.

#define FT_FIELD_OFFSET (   f)    (FT_UShort)( offsetof( FT_STRUCTURE, f ) )

Definition at line 105 of file ftstream.h.

#define FT_FIELD_SIZE (   f)    (FT_Byte)sizeof ( ((FT_STRUCTURE*)0)->f )

Definition at line 99 of file ftstream.h.

#define FT_FIELD_SIZE_DELTA (   f)    (FT_Byte)sizeof ( ((FT_STRUCTURE*)0)->f[0] )

Definition at line 102 of file ftstream.h.

#define FT_FRAME_BYTE (   f)    FT_FRAME_FIELD( ft_frame_byte, f )

Definition at line 126 of file ftstream.h.

Referenced by cff_font_load(), tt_face_load_os2(), and tt_face_load_pclt().

#define FT_FRAME_BYTES (   field,
  count 
)
Value:
{ \
FT_FIELD_OFFSET( field ) \
}
#define FT_FIELD_OFFSET(f)
Definition: ftstream.h:105
GLint GLsizei count
Definition: gl2ext.h:1011

Definition at line 140 of file ftstream.h.

Referenced by tt_face_load_pclt().

#define FT_FRAME_CHAR (   f)    FT_FRAME_FIELD( ft_frame_schar, f )

Definition at line 127 of file ftstream.h.

Referenced by tt_face_load_pclt().

#define FT_FRAME_EXTRACT (   size,
  bytes 
)
Value:
(FT_Byte**)&(bytes) ) ) )
GLuint GLuint stream
Definition: glew.h:6573
unsigned char FT_Byte
Definition: fttypes.h:150
#define FT_DEBUG_INNER(exp)
Definition: ftmemory.h:101
FT_Stream_ExtractFrame(FT_Stream stream, FT_ULong count, FT_Byte **pbytes)
Definition: ftstream.c:193
#define FT_SET_ERROR(expression)
Definition: ftmemory.h:42
GLsizei size
Definition: gl2ext.h:1467

Definition at line 524 of file ftstream.h.

Referenced by cff_index_access_element(), cff_index_init(), CFF_Load_FD_Select(), cid_parser_new(), fnt_font_load(), tt_face_load_cmap(), tt_face_load_eblc(), tt_face_load_fpgm(), tt_face_load_hdmx(), tt_face_load_kern(), tt_face_load_loca(), tt_face_load_prep(), and tt_sbit_decoder_load_bitmap().

#define FT_FRAME_FIELD (   frame_op,
  field 
)
Value:
{ \
frame_op, \
FT_FIELD_SIZE( field ), \
FT_FIELD_OFFSET( field ) \
}
#define FT_FIELD_OFFSET(f)
Definition: ftstream.h:105
#define FT_FIELD_SIZE(f)
Definition: ftstream.h:99

Definition at line 108 of file ftstream.h.

#define FT_FRAME_LONG (   f)    FT_FRAME_FIELD( ft_frame_long_be, f )

Definition at line 120 of file ftstream.h.

Referenced by sfnt_open_font(), tt_face_load_generic_header(), and tt_face_load_maxp().

#define FT_FRAME_LONG_LE (   f)    FT_FRAME_FIELD( ft_frame_long_le, f )

Definition at line 129 of file ftstream.h.

#define FT_FRAME_OFF3 (   f)    FT_FRAME_FIELD( ft_frame_off3_be, f )

Definition at line 124 of file ftstream.h.

#define FT_FRAME_OFF3_LE (   f)    FT_FRAME_FIELD( ft_frame_off3_le, f )

Definition at line 133 of file ftstream.h.

#define FT_FRAME_OP_BYTE   2 /* read 1-byte value */

Definition at line 50 of file ftstream.h.

#define FT_FRAME_OP_BYTES   6 /* read a bytes sequence */

Definition at line 54 of file ftstream.h.

#define FT_FRAME_OP_COMMAND (   x)    ( x >> FT_FRAME_OP_SHIFT )

Definition at line 43 of file ftstream.h.

#define FT_FRAME_OP_END   0

Definition at line 48 of file ftstream.h.

#define FT_FRAME_OP_LITTLE   2

Definition at line 42 of file ftstream.h.

#define FT_FRAME_OP_LONG   4 /* read 4-byte value */

Definition at line 52 of file ftstream.h.

#define FT_FRAME_OP_OFF3   5 /* read 3-byte value */

Definition at line 53 of file ftstream.h.

#define FT_FRAME_OP_SHIFT   2

Definition at line 40 of file ftstream.h.

#define FT_FRAME_OP_SHORT   3 /* read 2-byte value */

Definition at line 51 of file ftstream.h.

#define FT_FRAME_OP_SIGNED   1

Definition at line 41 of file ftstream.h.

Referenced by FT_Stream_ReadFields().

#define FT_FRAME_OP_START   1 /* start a new frame */

Definition at line 49 of file ftstream.h.

#define FT_FRAME_RELEASE (   bytes)
#define FT_FRAME_SHORT (   f)    FT_FRAME_FIELD( ft_frame_short_be, f )
#define FT_FRAME_SHORT_LE (   f)    FT_FRAME_FIELD( ft_frame_short_le, f )

Definition at line 131 of file ftstream.h.

#define FT_FRAME_SKIP_BYTE   { ft_frame_byte, 0, 0 }

Definition at line 138 of file ftstream.h.

#define FT_FRAME_SKIP_BYTES (   count)    { ft_frame_skip, count, 0 }

Definition at line 147 of file ftstream.h.

#define FT_FRAME_SKIP_LONG   { ft_frame_long_be, 0, 0 }

Definition at line 136 of file ftstream.h.

#define FT_FRAME_SKIP_SHORT   { ft_frame_short_be, 0, 0 }

Definition at line 137 of file ftstream.h.

#define FT_FRAME_ULONG_LE (   f)    FT_FRAME_FIELD( ft_frame_ulong_le, f )

Definition at line 130 of file ftstream.h.

#define FT_FRAME_UOFF3 (   f)    FT_FRAME_FIELD( ft_frame_uoff3_be, f )

Definition at line 125 of file ftstream.h.

#define FT_FRAME_UOFF3_LE (   f)    FT_FRAME_FIELD( ft_frame_uoff3_le, f )

Definition at line 134 of file ftstream.h.

#define FT_FRAME_USHORT_LE (   f)    FT_FRAME_FIELD( ft_frame_ushort_le, f )

Definition at line 132 of file ftstream.h.

#define FT_GET_BYTE ( )    FT_GET_MACRO( FT_Stream_GetChar, FT_Byte )

Definition at line 294 of file ftstream.h.

Referenced by tt_synth_sfnt_checksum().

#define FT_GET_CHAR ( )    FT_GET_MACRO( FT_Stream_GetChar, FT_Char )

Definition at line 293 of file ftstream.h.

#define FT_GET_LONG ( )    FT_GET_MACRO( FT_Stream_GetULong, FT_Long )

Definition at line 299 of file ftstream.h.

Referenced by tt_face_load_font_dir().

#define FT_GET_LONG_LE ( )    FT_GET_MACRO( FT_Stream_GetULongLE, FT_Long )

Definition at line 305 of file ftstream.h.

#define FT_GET_MACRO (   func,
  type 
)    ( (type)func( stream ) )

Definition at line 291 of file ftstream.h.

#define FT_GET_OFF3 ( )    FT_GET_MACRO( FT_Stream_GetUOffset, FT_Long )

Definition at line 297 of file ftstream.h.

#define FT_GET_SHORT ( )    FT_GET_MACRO( FT_Stream_GetUShort, FT_Short )

Definition at line 295 of file ftstream.h.

Referenced by pcf_get_encodings(), and tt_face_load_cvt().

#define FT_GET_SHORT_LE ( )    FT_GET_MACRO( FT_Stream_GetUShortLE, FT_Short )

Definition at line 303 of file ftstream.h.

Referenced by pcf_get_encodings().

#define FT_GET_TAG4 ( )    FT_GET_MACRO( FT_Stream_GetULong, FT_ULong )

Definition at line 301 of file ftstream.h.

Referenced by tt_face_load_font_dir().

#define FT_GET_ULONG ( )    FT_GET_MACRO( FT_Stream_GetULong, FT_ULong )
#define FT_GET_ULONG_LE ( )    FT_GET_MACRO( FT_Stream_GetULongLE, FT_ULong )

Definition at line 306 of file ftstream.h.

Referenced by pcf_get_bitmaps(), and pcf_get_encodings().

#define FT_GET_UOFF3 ( )    FT_GET_MACRO( FT_Stream_GetUOffset, FT_ULong )

Definition at line 298 of file ftstream.h.

#define FT_GET_USHORT ( )    FT_GET_MACRO( FT_Stream_GetUShort, FT_UShort )

Definition at line 296 of file ftstream.h.

Referenced by cff_charset_load(), load_format_20(), and tt_face_load_gasp().

#define FT_GET_USHORT_LE ( )    FT_GET_MACRO( FT_Stream_GetUShortLE, FT_UShort )

Definition at line 304 of file ftstream.h.

Referenced by fnt_face_get_dll_font().

#define FT_INT16 (   x)    ( (FT_Int16)(x) )

Definition at line 159 of file ftstream.h.

#define FT_INT32 (   x)    ( (FT_Int32)(x) )

Definition at line 161 of file ftstream.h.

#define FT_INT8_ (   p,
  i 
)    ( ((const FT_Char*)(p))[(i)] )

Definition at line 157 of file ftstream.h.

#define FT_INT8_I16 (   p,
  i,
  s 
)    ( FT_INT16( FT_INT8_( p, i ) ) << (s) )

Definition at line 169 of file ftstream.h.

#define FT_INT8_I32 (   p,
  i,
  s 
)    ( FT_INT32( FT_INT8_( p, i ) ) << (s) )

Definition at line 171 of file ftstream.h.

#define FT_INT8_U16 (   p,
  i,
  s 
)    ( FT_UINT16( FT_INT8_( p, i ) ) << (s) )

Definition at line 170 of file ftstream.h.

#define FT_INT8_U32 (   p,
  i,
  s 
)    ( FT_UINT32( FT_INT8_( p, i ) ) << (s) )

Definition at line 172 of file ftstream.h.

#define FT_MAKE_EMPTY_FIELD (   frame_op)    { frame_op, 0, 0 }

Definition at line 115 of file ftstream.h.

#define FT_MAKE_FRAME_OP (   command,
  little,
  sign 
)    ( ( command << FT_FRAME_OP_SHIFT ) | ( little << 1 ) | sign )

Definition at line 45 of file ftstream.h.

#define FT_NEXT_CHAR (   buffer)    ( (signed char)*buffer++ )
#define FT_NEXT_LONG (   buffer)    ( (long)( buffer += 4, FT_PEEK_LONG( buffer - 4 ) ) )
#define FT_NEXT_LONG_LE (   buffer)    ( (long)( buffer += 4, FT_PEEK_LONG_LE( buffer - 4 ) ) )

Definition at line 261 of file ftstream.h.

#define FT_NEXT_OFF3 (   buffer)    ( (long)( buffer += 3, FT_PEEK_OFF3( buffer - 3 ) ) )

Definition at line 236 of file ftstream.h.

#define FT_NEXT_OFF3_LE (   buffer)    ( (long)( buffer += 3, FT_PEEK_OFF3_LE( buffer - 3 ) ) )

Definition at line 255 of file ftstream.h.

#define FT_NEXT_SHORT_LE (   buffer)    ( (short)( buffer += 2, FT_PEEK_SHORT_LE( buffer - 2 ) ) )

Definition at line 249 of file ftstream.h.

Referenced by FNT_Load_Glyph().

#define FT_NEXT_ULONG (   buffer)    ( (unsigned long)( buffer += 4, FT_PEEK_ULONG( buffer - 4 ) ) )

Definition at line 245 of file ftstream.h.

Referenced by FT_Stream_GetULong(), FT_Stream_ReadFields(), FT_Stream_ReadULong(), gxv_bsln_validate(), gxv_EntryTable_validate(), gxv_feat_name_validate(), gxv_feat_validate(), gxv_just_actSubrecord_type0_validate(), gxv_just_actSubrecord_type2_validate(), gxv_just_actSubrecord_type4_validate(), gxv_just_actSubrecord_validate(), gxv_just_justClassTable_validate(), gxv_just_pcActionRecord_validate(), gxv_just_validate(), gxv_just_wdc_entry_validate(), gxv_just_wdp_entry_validate(), gxv_kern_validate_generic(), gxv_lcar_validate(), gxv_mort_chain_validate(), gxv_mort_featurearray_validate(), gxv_mort_subtable_type2_ligActionOffset_validate(), gxv_mort_subtables_validate(), gxv_mort_validate(), gxv_morx_chain_validate(), gxv_morx_subtable_type1_substitutionTable_validate(), gxv_morx_subtable_type2_ligActionIndex_validate(), gxv_morx_subtable_type2_opttable_load(), gxv_morx_subtable_type5_insertionGlyphList_load(), gxv_morx_subtables_validate(), gxv_morx_validate(), gxv_opbd_validate(), gxv_prop_validate(), gxv_trak_trackData_validate(), gxv_trak_validate(), gxv_XEntryTable_validate(), gxv_XStateTable_validate(), otv_BASE_validate(), otv_ExtensionPos_validate(), otv_ExtensionSubst_validate(), otv_GDEF_validate(), otv_GPOS_validate(), otv_GSUB_validate(), otv_JSTF_validate(), otv_MATH_validate(), pfr_face_get_kerning(), tt_face_get_kerning(), tt_face_get_location(), tt_face_load_eblc(), tt_face_load_hdmx(), tt_face_load_kern(), tt_sbit_decoder_init(), and tt_sbit_decoder_load_image().

#define FT_NEXT_ULONG_LE (   buffer)    ( (unsigned long)( buffer += 4, FT_PEEK_ULONG_LE( buffer - 4 ) ) )
#define FT_NEXT_UOFF3 (   buffer)    ( (unsigned long)( buffer += 3, FT_PEEK_UOFF3( buffer - 3 ) ) )

Definition at line 239 of file ftstream.h.

Referenced by FT_Stream_GetUOffset(), FT_Stream_ReadFields(), and FT_Stream_ReadUOffset().

#define FT_NEXT_UOFF3_LE (   buffer)    ( (unsigned long)( buffer += 3, FT_PEEK_UOFF3_LE( buffer - 3 ) ) )

Definition at line 258 of file ftstream.h.

Referenced by FT_Stream_ReadFields().

#define FT_NEXT_USHORT (   buffer)    ( (unsigned short)( buffer += 2, FT_PEEK_USHORT( buffer - 2 ) ) )

Definition at line 233 of file ftstream.h.

Referenced by cff_fd_select_get(), FT_Stream_GetUShort(), FT_Stream_ReadFields(), FT_Stream_ReadUShort(), gxv_array_getlimits_ushort(), gxv_BinSrchHeader_validate(), gxv_bsln_LookupFmt4_transit(), gxv_bsln_parts_fmt2_validate(), gxv_bsln_validate(), gxv_ClassTable_validate(), gxv_EntryTable_validate(), gxv_feat_name_validate(), gxv_feat_setting_validate(), gxv_feat_validate(), gxv_just_actSubrecord_type0_validate(), gxv_just_actSubrecord_type1_validate(), gxv_just_actSubrecord_type2_validate(), gxv_just_actSubrecord_type5_validate(), gxv_just_actSubrecord_validate(), gxv_just_justClassTable_validate(), gxv_just_justData_validate(), gxv_just_validate(), gxv_just_wdp_entry_validate(), gxv_kern_subtable_fmt0_pairs_validate(), gxv_kern_subtable_fmt1_entry_validate(), gxv_kern_subtable_fmt1_valueTable_load(), gxv_kern_subtable_fmt2_clstbl_validate(), gxv_kern_subtable_fmt2_validate(), gxv_kern_subtable_fmt3_validate(), gxv_kern_subtable_validate(), gxv_kern_validate_generic(), gxv_lcar_LookupFmt4_transit(), gxv_lcar_LookupValue_validate(), gxv_lcar_validate(), gxv_lookup_value_load(), gxv_LookupTable_fmt2_validate(), gxv_LookupTable_fmt4_validate(), gxv_LookupTable_fmt6_validate(), gxv_LookupTable_fmt8_validate(), gxv_LookupTable_validate(), gxv_mort_chain_validate(), gxv_mort_featurearray_validate(), gxv_mort_subtable_type1_substitutionTable_load(), gxv_mort_subtable_type1_substTable_validate(), gxv_mort_subtable_type2_ligatureTable_validate(), gxv_mort_subtable_type2_opttable_load(), gxv_mort_subtable_type4_lookupfmt4_transit(), gxv_mort_subtable_type5_InsertList_validate(), gxv_mort_subtables_validate(), gxv_morx_subtable_type1_LookupFmt4_transit(), gxv_morx_subtable_type1_substitutionTable_load(), gxv_morx_subtable_type2_ligatureTable_validate(), gxv_morx_subtable_type5_InsertList_validate(), gxv_opbd_validate(), gxv_prop_LookupFmt4_transit(), gxv_prop_validate(), gxv_StateTable_validate(), gxv_trak_trackData_validate(), gxv_trak_trackTable_validate(), gxv_trak_validate(), gxv_XClassTable_lookupfmt4_transit(), gxv_XEntryTable_validate(), gxv_XStateArray_validate(), otv_AlternateSubst_validate(), otv_Anchor_validate(), otv_Axis_validate(), otv_BaseCoord_validate(), otv_BaseScript_validate(), otv_BaseScriptList_validate(), otv_BaseTagList_validate(), otv_BaseValues_validate(), otv_CaretValue_validate(), otv_ChainContextPos_validate(), otv_ChainContextSubst_validate(), otv_ClassDef_validate(), otv_ContextPos_validate(), otv_ContextSubst_validate(), otv_Coverage_get_count(), otv_Coverage_get_first(), otv_Coverage_get_last(), otv_Coverage_validate(), otv_CursivePos_validate(), otv_Device_validate(), otv_ExtensionPos_validate(), otv_ExtensionSubst_validate(), otv_Feature_get_count(), otv_Feature_validate(), otv_FeatureList_validate(), otv_GlyphAssembly_validate(), otv_GPOS_validate(), otv_GSUB_validate(), otv_GSUBGPOS_get_Lookup_count(), otv_GSUBGPOS_have_MarkAttachmentType_flag(), otv_JSTF_validate(), otv_JstfScript_validate(), otv_LangSys_validate(), otv_Ligature_validate(), otv_LigatureSubst_validate(), otv_Lookup_validate(), otv_LookupList_get_count(), otv_LookupList_validate(), otv_MarkArray_validate(), otv_MarkBasePos_validate(), otv_MarkLigPos_validate(), otv_MarkMarkPos_validate(), otv_MATH_validate(), otv_MathGlyphConstruction_validate(), otv_MathGlyphInfo_validate(), otv_MathItalicsCorrectionInfo_validate(), otv_MathKern_validate(), otv_MathKernInfo_validate(), otv_MathVariants_validate(), otv_MinMax_validate(), otv_MultipleSubst_validate(), otv_O_x_Ox(), otv_PairPos_validate(), otv_PairSet_validate(), otv_ReverseChainSingleSubst_validate(), otv_Script_validate(), otv_ScriptList_validate(), otv_SinglePos_validate(), otv_SingleSubst_validate(), otv_u_C_x_Ox(), otv_u_O_O_O_O_x_Onx(), otv_u_O_O_u_O_O(), otv_u_O_O_x_Onx(), otv_u_x_Ox_y_Oy_z_Oz_p_sp(), otv_u_x_y_Ox_sy(), otv_x_Ox(), otv_x_sxy(), otv_x_ux(), otv_x_ux_y_uy_z_uz_p_sp(), otv_x_y_ux_sy(), tt_face_get_kerning(), tt_face_get_location(), tt_face_load_hdmx(), tt_face_load_kern(), TT_Load_Composite_Glyph(), TT_Load_Simple_Glyph(), tt_name_entry_ascii_from_utf16(), tt_sbit_decoder_load_compound(), and tt_sbit_decoder_load_image().

#define FT_NEXT_USHORT_LE (   buffer)    ( (unsigned short)( buffer += 2, FT_PEEK_USHORT_LE( buffer - 2 ) ) )
#define FT_PEEK_LONG (   p)
Value:
FT_INT32( FT_INT8_I32( p, 0, 24 ) | \
FT_BYTE_I32( p, 1, 16 ) | \
FT_BYTE_I32( p, 2, 8 ) | \
FT_BYTE_I32( p, 3, 0 ) )
#define FT_INT8_I32(p, i, s)
Definition: ftstream.h:171
GLfloat GLfloat p
Definition: glew.h:14938
#define FT_INT32(x)
Definition: ftstream.h:161
#define FT_BYTE_I32(p, i, s)
Definition: ftstream.h:166

Definition at line 181 of file ftstream.h.

#define FT_PEEK_LONG_LE (   p)
Value:
FT_INT32( FT_INT8_I32( p, 3, 24 ) | \
FT_BYTE_I32( p, 2, 16 ) | \
FT_BYTE_I32( p, 1, 8 ) | \
FT_BYTE_I32( p, 0, 0 ) )
#define FT_INT8_I32(p, i, s)
Definition: ftstream.h:171
GLfloat GLfloat p
Definition: glew.h:14938
#define FT_INT32(x)
Definition: ftstream.h:161
#define FT_BYTE_I32(p, i, s)
Definition: ftstream.h:166

Definition at line 205 of file ftstream.h.

#define FT_PEEK_OFF3 (   p)
Value:
FT_INT32( FT_INT8_I32( p, 0, 16 ) | \
FT_BYTE_I32( p, 1, 8 ) | \
FT_BYTE_I32( p, 2, 0 ) )
#define FT_INT8_I32(p, i, s)
Definition: ftstream.h:171
GLfloat GLfloat p
Definition: glew.h:14938
#define FT_INT32(x)
Definition: ftstream.h:161
#define FT_BYTE_I32(p, i, s)
Definition: ftstream.h:166

Definition at line 191 of file ftstream.h.

Referenced by cff_index_load_offsets().

#define FT_PEEK_OFF3_LE (   p)
Value:
FT_INT32( FT_INT8_I32( p, 2, 16 ) | \
FT_BYTE_I32( p, 1, 8 ) | \
FT_BYTE_I32( p, 0, 0 ) )
#define FT_INT8_I32(p, i, s)
Definition: ftstream.h:171
GLfloat GLfloat p
Definition: glew.h:14938
#define FT_INT32(x)
Definition: ftstream.h:161
#define FT_BYTE_I32(p, i, s)
Definition: ftstream.h:166

Definition at line 215 of file ftstream.h.

#define FT_PEEK_SHORT (   p)
Value:
FT_INT16( FT_INT8_I16( p, 0, 8) | \
FT_BYTE_I16( p, 1, 0) )
#define FT_BYTE_I16(p, i, s)
Definition: ftstream.h:164
GLfloat GLfloat p
Definition: glew.h:14938
#define FT_INT8_I16(p, i, s)
Definition: ftstream.h:169
#define FT_INT16(x)
Definition: ftstream.h:159

Definition at line 175 of file ftstream.h.

Referenced by pfr_face_get_kerning(), and tt_face_get_kerning().

#define FT_PEEK_SHORT_LE (   p)
Value:
FT_INT16( FT_INT8_I16( p, 1, 8 ) | \
FT_BYTE_I16( p, 0, 0 ) )
#define FT_BYTE_I16(p, i, s)
Definition: ftstream.h:164
GLfloat GLfloat p
Definition: glew.h:14938
#define FT_INT8_I16(p, i, s)
Definition: ftstream.h:169
#define FT_INT16(x)
Definition: ftstream.h:159

Definition at line 199 of file ftstream.h.

Referenced by T1_Read_PFM().

#define FT_PEEK_ULONG (   p)
Value:
FT_UINT32( FT_BYTE_U32( p, 0, 24 ) | \
FT_BYTE_U32( p, 1, 16 ) | \
FT_BYTE_U32( p, 2, 8 ) | \
FT_BYTE_U32( p, 3, 0 ) )
#define FT_UINT32(x)
Definition: ftstream.h:162
#define FT_BYTE_U32(p, i, s)
Definition: ftstream.h:167
GLfloat GLfloat p
Definition: glew.h:14938

Definition at line 186 of file ftstream.h.

Referenced by cff_index_load_offsets(), and t42_parse_sfnts().

#define FT_PEEK_ULONG_LE (   p)
Value:
FT_UINT32( FT_BYTE_U32( p, 3, 24 ) | \
FT_BYTE_U32( p, 2, 16 ) | \
FT_BYTE_U32( p, 1, 8 ) | \
FT_BYTE_U32( p, 0, 0 ) )
#define FT_UINT32(x)
Definition: ftstream.h:162
#define FT_BYTE_U32(p, i, s)
Definition: ftstream.h:167
GLfloat GLfloat p
Definition: glew.h:14938

Definition at line 210 of file ftstream.h.

Referenced by T1_Read_Metrics(), and T1_Read_PFM().

#define FT_PEEK_UOFF3 (   p)
Value:
FT_UINT32( FT_BYTE_U32( p, 0, 16 ) | \
FT_BYTE_U32( p, 1, 8 ) | \
FT_BYTE_U32( p, 2, 0 ) )
#define FT_UINT32(x)
Definition: ftstream.h:162
#define FT_BYTE_U32(p, i, s)
Definition: ftstream.h:167
GLfloat GLfloat p
Definition: glew.h:14938

Definition at line 195 of file ftstream.h.

#define FT_PEEK_UOFF3_LE (   p)
Value:
FT_UINT32( FT_BYTE_U32( p, 2, 16 ) | \
FT_BYTE_U32( p, 1, 8 ) | \
FT_BYTE_U32( p, 0, 0 ) )
#define FT_UINT32(x)
Definition: ftstream.h:162
#define FT_BYTE_U32(p, i, s)
Definition: ftstream.h:167
GLfloat GLfloat p
Definition: glew.h:14938

Definition at line 219 of file ftstream.h.

#define FT_PEEK_USHORT (   p)
Value:
FT_UINT16( FT_BYTE_U16( p, 0, 8 ) | \
FT_BYTE_U16( p, 1, 0 ) )
#define FT_UINT16(x)
Definition: ftstream.h:160
#define FT_BYTE_U16(p, i, s)
Definition: ftstream.h:165
GLfloat GLfloat p
Definition: glew.h:14938

Definition at line 178 of file ftstream.h.

Referenced by cff_index_load_offsets(), and tt_sbit_decoder_load_image().

#define FT_PEEK_USHORT_LE (   p)
Value:
FT_UINT16( FT_BYTE_U16( p, 1, 8 ) | \
FT_BYTE_U16( p, 0, 0 ) )
#define FT_UINT16(x)
Definition: ftstream.h:160
#define FT_BYTE_U16(p, i, s)
Definition: ftstream.h:165
GLfloat GLfloat p
Definition: glew.h:14938

Definition at line 202 of file ftstream.h.

Referenced by T1_Read_PFM().

#define FT_READ_BYTE (   var)    FT_READ_MACRO( FT_Stream_ReadChar, FT_Byte, var )
#define FT_READ_CHAR (   var)    FT_READ_MACRO( FT_Stream_ReadChar, FT_Char, var )

Definition at line 314 of file ftstream.h.

#define FT_READ_LONG (   var)    FT_READ_MACRO( FT_Stream_ReadULong, FT_Long, var )

Definition at line 319 of file ftstream.h.

Referenced by FT_Raccess_Get_DataOffsets(), and pcf_get_bitmaps().

#define FT_READ_LONG_LE (   var)    FT_READ_MACRO( FT_Stream_ReadULongLE, FT_Long, var )

Definition at line 324 of file ftstream.h.

Referenced by pcf_get_bitmaps().

#define FT_READ_MACRO (   func,
  type,
  var 
)
Value:
( var = (type)func( stream, &error ), \
GLint GLenum GLsizei GLsizei GLsizei GLint GLenum GLenum type
Definition: gl2ext.h:845
GLuint GLuint stream
Definition: glew.h:6573
return FT_Err_Ok
Definition: ftbbox.c:658
GLenum func
Definition: SDL_opengl.h:5654
FT_Error error
Definition: cffdrivr.c:407

Definition at line 309 of file ftstream.h.

#define FT_READ_OFF3 (   var)    FT_READ_MACRO( FT_Stream_ReadUOffset, FT_Long, var )

Definition at line 317 of file ftstream.h.

#define FT_READ_SHORT (   var)    FT_READ_MACRO( FT_Stream_ReadUShort, FT_Short, var )

Definition at line 315 of file ftstream.h.

Referenced by _tt_face_check_patents(), and tt_face_get_metrics().

#define FT_READ_SHORT_LE (   var)    FT_READ_MACRO( FT_Stream_ReadUShortLE, FT_Short, var )

Definition at line 322 of file ftstream.h.

#define FT_READ_ULONG (   var)    FT_READ_MACRO( FT_Stream_ReadULong, FT_ULong, var )
#define FT_READ_ULONG_LE (   var)    FT_READ_MACRO( FT_Stream_ReadULongLE, FT_ULong, var )

Definition at line 325 of file ftstream.h.

Referenced by pcf_get_accel(), pcf_get_metrics(), pcf_get_properties(), and read_pfb_tag().

#define FT_READ_UOFF3 (   var)    FT_READ_MACRO( FT_Stream_ReadUOffset, FT_ULong, var )

Definition at line 318 of file ftstream.h.

Referenced by pfr_log_font_load().

#define FT_READ_USHORT_LE (   var)    FT_READ_MACRO( FT_Stream_ReadUShortLE, FT_UShort, var )

Definition at line 323 of file ftstream.h.

Referenced by pcf_get_metrics().

#define FT_STREAM_READ (   buffer,
  count 
)
Value:
count ) )
GLuint GLuint stream
Definition: glew.h:6573
unsigned char FT_Byte
Definition: fttypes.h:150
EGLContext EGLenum EGLClientBuffer buffer
Definition: eglext.h:87
FT_Stream_Read(FT_Stream stream, FT_Byte *buffer, FT_ULong count)
Definition: ftstream.c:110
GLint GLsizei count
Definition: gl2ext.h:1011
#define FT_SET_ERROR(expression)
Definition: ftmemory.h:42

Definition at line 502 of file ftstream.h.

Referenced by cff_index_read_offset(), cid_hex_to_binary(), cid_parser_new(), cid_read_subrs(), load_format_20(), load_format_25(), PCF_Glyph_Load(), T1_Get_Private_Dict(), T1_New_Parser(), t42_parser_init(), tt_face_get_name(), and TT_Process_Composite_Glyph().

#define FT_STREAM_READ_AT (   position,
  buffer,
  count 
)
Value:
position, \
count ) )
GLuint GLuint stream
Definition: glew.h:6573
unsigned char FT_Byte
Definition: fttypes.h:150
EGLContext EGLenum EGLClientBuffer buffer
Definition: eglext.h:87
FT_Stream_ReadAt(FT_Stream stream, FT_ULong pos, FT_Byte *buffer, FT_ULong count)
Definition: ftstream.c:119
GLint GLsizei count
Definition: gl2ext.h:1011
#define FT_SET_ERROR(expression)
Definition: ftmemory.h:42

Definition at line 507 of file ftstream.h.

Referenced by cid_load_glyph(), and tt_face_load_any().

#define FT_UINT16 (   x)    ( (FT_UInt16)(x) )

Definition at line 160 of file ftstream.h.

#define FT_UINT32 (   x)    ( (FT_UInt32)(x) )

Definition at line 162 of file ftstream.h.

Typedef Documentation

typedef enum FT_Frame_Op_ FT_Frame_Op

Enumeration Type Documentation

Enumerator
ft_frame_end 
ft_frame_start 
ft_frame_byte 
ft_frame_schar 
ft_frame_ushort_be 
ft_frame_short_be 
ft_frame_ushort_le 
ft_frame_short_le 
ft_frame_ulong_be 
ft_frame_long_be 
ft_frame_ulong_le 
ft_frame_long_le 
ft_frame_uoff3_be 
ft_frame_off3_be 
ft_frame_uoff3_le 
ft_frame_off3_le 
ft_frame_bytes 
ft_frame_skip 

Definition at line 57 of file ftstream.h.

Function Documentation

FT_Stream_Close ( FT_Stream  stream)

Definition at line 49 of file ftstream.c.

Referenced by FT_Stream_Free(), main(), and PCF_Face_Done().

FT_Stream_EnterFrame ( FT_Stream  stream,
FT_ULong  count 
)
FT_Stream_ExitFrame ( FT_Stream  stream)
FT_Stream_ExtractFrame ( FT_Stream  stream,
FT_ULong  count,
FT_Byte **  pbytes 
)

Definition at line 193 of file ftstream.c.

References error, and FT_Stream_EnterFrame().

Referenced by FT_Extract_Frame().

FT_Stream_Free ( FT_Stream  stream,
FT_Int  external 
)

Definition at line 195 of file ftobjs.c.

References FT_FREE, and FT_Stream_Close().

Referenced by destroy_face(), FT_Attach_Stream(), and FT_Open_Face().

FT_Stream_GetChar ( FT_Stream  stream)

Definition at line 342 of file ftstream.c.

References FT_ASSERT.

FT_Stream_GetULong ( FT_Stream  stream)

Definition at line 414 of file ftstream.c.

References FT_ASSERT, and FT_NEXT_ULONG.

FT_Stream_GetULongLE ( FT_Stream  stream)

Definition at line 432 of file ftstream.c.

References FT_ASSERT, and FT_NEXT_ULONG_LE.

FT_Stream_GetUOffset ( FT_Stream  stream)

Definition at line 396 of file ftstream.c.

References FT_ASSERT, and FT_NEXT_UOFF3.

FT_Stream_GetUShort ( FT_Stream  stream)

Definition at line 358 of file ftstream.c.

References FT_ASSERT, and FT_NEXT_USHORT.

FT_Stream_GetUShortLE ( FT_Stream  stream)

Definition at line 377 of file ftstream.c.

References FT_ASSERT, and FT_NEXT_USHORT_LE.

FT_Stream_Open ( FT_Stream  stream,
const char *  filepathname 
)
FT_Stream_OpenMemory ( FT_Stream  stream,
const FT_Byte base,
FT_ULong  size 
)

Definition at line 35 of file ftstream.c.

Referenced by cid_face_open(), FT_New_Memory_Stream(), FT_Stream_New(), and load_truetype_glyph().

FT_Stream_Pos ( FT_Stream  stream)

Definition at line 103 of file ftstream.c.

Referenced by tt_face_load_loca().

FT_Stream_Read ( FT_Stream  stream,
FT_Byte buffer,
FT_ULong  count 
)

Definition at line 110 of file ftstream.c.

References FT_Stream_ReadAt().

Referenced by FT_Raccess_Get_HeaderInfo(), FT_Read_Stream(), and pcf_get_properties().

FT_Stream_ReadAt ( FT_Stream  stream,
FT_ULong  pos,
FT_Byte buffer,
FT_ULong  count 
)

Definition at line 119 of file ftstream.c.

References error, FT_Err_Ok, FT_ERROR, and FT_MEM_COPY.

Referenced by FT_Read_Stream_At(), and FT_Stream_Read().

FT_Stream_ReadChar ( FT_Stream  stream,
FT_Error error 
)

Definition at line 450 of file ftstream.c.

References FT_ASSERT, FT_Err_Ok, and FT_ERROR.

FT_Stream_ReadULong ( FT_Stream  stream,
FT_Error error 
)

Definition at line 628 of file ftstream.c.

References FT_ASSERT, FT_Err_Ok, FT_ERROR, and FT_NEXT_ULONG.

FT_Stream_ReadULongLE ( FT_Stream  stream,
FT_Error error 
)

Definition at line 675 of file ftstream.c.

References FT_ASSERT, FT_Err_Ok, FT_ERROR, and FT_NEXT_ULONG_LE.

FT_Stream_ReadUOffset ( FT_Stream  stream,
FT_Error error 
)

Definition at line 581 of file ftstream.c.

References FT_ASSERT, FT_Err_Ok, FT_ERROR, and FT_NEXT_UOFF3.

FT_Stream_ReadUShort ( FT_Stream  stream,
FT_Error error 
)

Definition at line 487 of file ftstream.c.

References FT_ASSERT, FT_Err_Ok, FT_ERROR, and FT_NEXT_USHORT.

FT_Stream_ReadUShortLE ( FT_Stream  stream,
FT_Error error 
)

Definition at line 534 of file ftstream.c.

References FT_ASSERT, FT_Err_Ok, FT_ERROR, and FT_NEXT_USHORT_LE.

FT_Stream_ReleaseFrame ( FT_Stream  stream,
FT_Byte **  pbytes 
)

Definition at line 215 of file ftstream.c.

References FT_FREE, ft_mem_free(), and NULL.

Referenced by FT_Release_Frame().

FT_Stream_Seek ( FT_Stream  stream,
FT_ULong  pos 
)
FT_Stream_Skip ( FT_Stream  stream,
FT_Long  distance 
)

Definition at line 92 of file ftstream.c.

References FT_Stream_Seek().

Referenced by FT_Skip_Stream().

FT_Stream_TryRead ( FT_Stream  stream,
FT_Byte buffer,
FT_ULong  count 
)

Definition at line 164 of file ftstream.c.

References FT_MEM_COPY.

Referenced by _bdf_readstream(), ft_lzwstate_io(), and ft_lzwstate_refill().