HomeSort by: relevance | last modified time | path
    Searched defs:charcode (Results 1 - 8 of 8) sorted by relevancy

  /xsrc/external/mit/freetype/dist/src/cff/
cffload.h 31 cff_get_standard_encoding( FT_UInt charcode ); variable
  /xsrc/external/mit/freetype/dist/src/autofit/
afglobal.c 183 FT_ULong charcode = range->first; local
187 gindex = FT_Get_Char_Index( face, charcode );
196 charcode = FT_Get_Next_Char( face, charcode, &gindex );
198 if ( gindex == 0 || charcode > range->last )
212 FT_ULong charcode = range->first; local
216 gindex = FT_Get_Char_Index( face, charcode );
225 charcode = FT_Get_Next_Char( face, charcode, &gindex );
227 if ( gindex == 0 || charcode > range->last
    [all...]
  /xsrc/external/mit/freetype/dist/src/bdf/
bdfdrivr.c 91 FT_UInt32 charcode )
113 if ( charcode == code )
121 if ( charcode < code )
127 mid += charcode - code;
142 FT_ULong charcode = *acharcode + 1; local
159 if ( charcode == code )
167 if ( charcode < code )
173 mid += charcode - code;
176 charcode = 0;
179 charcode = encodings[min].enc
    [all...]
  /xsrc/external/mit/freetype/dist/src/pcf/
pcfdrivr.c 105 FT_UInt32 charcode )
113 if ( charcode > (FT_UInt32)( enc->lastRow * 256 + enc->lastCol ) ||
114 charcode < (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ) )
117 charcodeRow = (FT_UShort)( charcode >> 8 );
118 charcodeCol = (FT_UShort)( charcode & 0xFF );
136 FT_UInt32 charcode = *acharcode; local
142 while ( charcode < (FT_UInt32)( enc->lastRow * 256 + enc->lastCol ) )
144 charcode++;
146 if ( charcode < (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ) )
147 charcode = (FT_UInt32)( enc->firstRow * 256 + enc->firstCol )
    [all...]
  /xsrc/external/mit/freetype/dist/src/type42/
t42objs.c 101 FT_Int charcode, idx, min_char, max_char; local
113 charcode = 0;
114 for ( ; charcode < loader.encoding_table.max_elems; charcode++ )
117 (const FT_String*)loader.encoding_table.elements[charcode];
120 type1->encoding.char_index[charcode] = 0;
121 type1->encoding.char_name [charcode] = ".notdef";
131 type1->encoding.char_index[charcode] = (FT_UShort)idx;
132 type1->encoding.char_name [charcode] = glyph_name;
138 if ( charcode < min_char
    [all...]
t42parse.c 381 /* ... charcode /charname ... */
428 FT_Int charcode; local
432 charcode = n;
435 charcode = (FT_Int)T1_ToInt( parser );
438 /* protect against invalid charcode */
464 parser->root.error = T1_Add_Table( char_table, charcode,
468 char_table->elements[charcode][len] = '\0';
  /xsrc/external/mit/freetype/dist/src/type1/
t1load.c 1538 /* ... charcode /charname ... */
1585 FT_Int charcode; local
1589 charcode = n;
1592 charcode = (FT_Int)T1_ToInt( parser );
1595 /* protect against invalid charcode */
1623 parser->root.error = T1_Add_Table( char_table, charcode,
1627 char_table->elements[charcode][len] = '\0';
2654 FT_Int charcode, idx, min_char, max_char; local
2665 charcode = 0;
2666 for ( ; charcode < loader.encoding_table.max_elems; charcode++
    [all...]
  /xsrc/external/mit/freetype/dist/src/sfnt/
ttcmap.c 146 FT_UInt32 charcode = *pchar_code; local
152 while ( ++charcode < 256 )
154 gindex = table[charcode];
157 result = charcode;
221 /***** assume that the value `charcode' fulfills the following. *****/
223 /***** - For one-byte characters, `charcode' is simply the *****/
226 /***** - For two-byte characters, `charcode' is the 2-byte *****/
229 /***** (charcode >> 8) is the first byte value *****/
230 /***** (charcode & 0xFF) is the second byte value *****/
232 /***** Note that not all values of `charcode' are valid according *****
501 FT_UInt32 charcode = *pcharcode + 1; local
794 FT_UInt charcode; local
1097 FT_UInt32 charcode = *pcharcode; local
1231 FT_UInt charcode = (FT_UInt)*pcharcode; local
    [all...]

Completed in 41 milliseconds