Searched defs:char_code (Results 1 - 25 of 42) sorted by relevance

12

/external/freetype/src/cff/
H A Dcffcmap.c61 FT_UInt32 char_code )
66 if ( char_code < 256 )
67 result = cmap->gids[char_code];
78 FT_UInt32 char_code = *pchar_code; local
83 if ( char_code < 255 )
85 FT_UInt code = (FT_UInt)(char_code + 1);
187 FT_UInt32 char_code )
194 return psnames->unicodes_char_index( unicodes, char_code );
/external/freetype/src/pfr/
H A Dpfrcmap.c48 if ( cmap->chars[n - 1].char_code >= cmap->chars[n].char_code )
71 FT_UInt32 char_code )
86 if ( gchar->char_code == char_code )
89 if ( gchar->char_code < char_code )
103 FT_UInt32 char_code = *pchar_code + 1; local
119 if ( gchar->char_code == char_code )
[all...]
H A Dpfrsbit.c281 FT_UInt char_code,
367 if ( char_code < code )
369 else if ( char_code > code )
640 character->char_code,
277 pfr_lookup_bitmap_data( FT_Byte* base, FT_Byte* limit, FT_UInt count, FT_UInt* flags, FT_UInt char_code, FT_ULong* found_offset, FT_ULong* found_size ) argument
H A Dpfrtypes.h120 FT_UInt char_code; member in struct:PFR_BitmapCharRec_
157 FT_UInt char_code; member in struct:PFR_CharRec_
/external/freetype/src/psaux/
H A Dt1cmap.c64 FT_UInt32 char_code )
69 if ( char_code < 256 )
76 code = cmap->code_to_sid[char_code];
103 FT_UInt32 char_code = *pchar_code + 1; local
106 while ( char_code < 256 )
108 result = t1_cmap_std_char_index( cmap, char_code );
112 char_code++;
114 char_code = 0;
117 *pchar_code = char_code;
222 FT_UInt32 char_code )
240 FT_UInt32 char_code = *pchar_code; local
[all...]
/external/pdfium/core/fxcrt/
H A Dcfx_char.h28 uint16_t char_code() const { return m_wCharCode; } function in class:CFX_Char
/external/freetype/src/cache/
H A Dftccmap.c61 FT_UInt32 char_code; member in struct:FTC_CMapQueryRec_
124 node->first = (query->char_code / FTC_CMAP_INDICES_MAX) *
165 FT_UInt32 offset = (FT_UInt32)( query->char_code - node->first );
234 FT_UInt32 char_code )
264 query.char_code = char_code;
266 hash = FTC_CMAP_HASH( face_id, (FT_UInt)cmap_index, char_code );
277 FT_ASSERT( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first ) <
281 if ( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first >=
285 gindex = FTC_CMAP_NODE( node )->indices[char_code
[all...]
/external/freetype/src/psnames/
H A Dpsmodule.c464 FT_UInt32 char_code = *unicode + 1; local
480 if ( map->unicode == char_code )
488 if ( base_glyph == char_code )
491 if ( base_glyph < char_code )
501 char_code = 0;
507 char_code = BASE_GLYPH( map->unicode );
512 *unicode = char_code;
/external/v8/src/
H A Dstring-search.h142 SubjectChar char_code) {
144 return bad_char_occurrence[static_cast<int>(char_code)];
147 if (exceedsOneByte(char_code)) {
150 return bad_char_occurrence[static_cast<unsigned int>(char_code)];
153 int equiv_class = char_code % kUC16AlphabetSize;
141 CharOccurrence(int* bad_char_occurrence, SubjectChar char_code) argument
H A Dunicode.h122 static inline uint16_t LeadSurrogate(uint32_t char_code) { argument
123 return 0xd800 + (((char_code - 0x10000) >> 10) & 0x3ff);
125 static inline uint16_t TrailSurrogate(uint32_t char_code) { argument
126 return 0xdc00 + (char_code & 0x3ff);
/external/freetype/src/winfonts/
H A Dwinfnt.c631 FT_UInt32 char_code )
636 char_code -= cmap->first;
637 if ( char_code < cmap->count )
640 gindex = (FT_UInt)( char_code + 1 );
651 FT_UInt32 char_code = *pchar_code + 1; local
654 if ( char_code <= cmap->first )
661 char_code -= cmap->first;
662 if ( char_code < cmap->count )
664 result = cmap->first + char_code;
665 gindex = (FT_UInt)( char_code
[all...]
/external/freetype/src/sfnt/
H A Dttcmap.c134 FT_UInt32 char_code )
139 return char_code < 256 ? table[6 + char_code] : 0;
406 FT_UInt32 char_code )
411 if ( char_code < 0x10000UL )
413 FT_UInt char_lo = (FT_UInt)( char_code & 0xFF );
414 FT_UInt char_hi = (FT_UInt)( char_code >> 8 );
458 FT_UInt32 char_code )
465 subheader = tt_cmap2_get_subheader( table, char_code );
469 FT_UInt idx = (FT_UInt)(char_code
1655 FT_UInt32 char_code = *pchar_code + 1; local
1926 FT_UInt32 char_code; local
2123 FT_UInt32 char_code; local
2323 FT_ULong start, end, start_id, char_code; local
2391 FT_UInt32 char_code = *pchar_code; local
2674 FT_ULong start, end, glyph_id, char_code; local
2722 FT_UInt32 char_code = *pchar_code; local
[all...]
/external/v8/src/crankshaft/arm/
H A Dlithium-arm.cc2209 LOperand* char_code = UseRegister(instr->value()); local
2212 new(zone()) LStringCharFromCode(context, char_code);
H A Dlithium-arm.h2059 explicit LStringCharFromCode(LOperand* context, LOperand* char_code) { argument
2061 inputs_[1] = char_code;
2065 LOperand* char_code() { return inputs_[1]; } function in class:v8::internal::final
/external/v8/src/crankshaft/arm64/
H A Dlithium-arm64.cc2201 LOperand* char_code = UseRegister(instr->value()); local
2204 new(zone()) LStringCharFromCode(context, char_code);
H A Dlithium-arm64.h2331 LStringCharFromCode(LOperand* context, LOperand* char_code) { argument
2333 inputs_[1] = char_code;
2337 LOperand* char_code() { return inputs_[1]; } function in class:v8::internal::final
/external/v8/src/crankshaft/ia32/
H A Dlithium-ia32.cc2270 LOperand* char_code = UseRegister(instr->value()); local
2273 new(zone()) LStringCharFromCode(context, char_code);
H A Dlithium-ia32.h2073 LStringCharFromCode(LOperand* context, LOperand* char_code) { argument
2075 inputs_[1] = char_code;
2079 LOperand* char_code() { return inputs_[1]; } function in class:v8::internal::final
/external/v8/src/crankshaft/mips/
H A Dlithium-mips.cc2156 LOperand* char_code = UseRegister(instr->value()); local
2159 new(zone()) LStringCharFromCode(context, char_code);
H A Dlithium-mips.h2016 explicit LStringCharFromCode(LOperand* context, LOperand* char_code) { argument
2018 inputs_[1] = char_code;
2022 LOperand* char_code() { return inputs_[1]; } function in class:v8::internal::final
/external/v8/src/crankshaft/mips64/
H A Dlithium-mips64.cc2161 LOperand* char_code = UseRegister(instr->value()); local
2164 new(zone()) LStringCharFromCode(context, char_code);
H A Dlithium-mips64.h2062 explicit LStringCharFromCode(LOperand* context, LOperand* char_code) { argument
2064 inputs_[1] = char_code;
2068 LOperand* char_code() { return inputs_[1]; } function in class:v8::internal::final
/external/v8/src/crankshaft/ppc/
H A Dlithium-ppc.cc2178 LOperand* char_code = UseRegister(instr->value()); local
2181 new (zone()) LStringCharFromCode(context, char_code);
H A Dlithium-ppc.h2005 explicit LStringCharFromCode(LOperand* context, LOperand* char_code) { argument
2007 inputs_[1] = char_code;
2011 LOperand* char_code() { return inputs_[1]; } function in class:v8::internal::final
/external/v8/src/crankshaft/s390/
H A Dlithium-s390.cc1981 LOperand* char_code = UseRegister(instr->value()); local
1984 new (zone()) LStringCharFromCode(context, char_code);

Completed in 2844 milliseconds

12