/external/freetype/src/psaux/ |
D | t1cmap.c | 64 FT_UInt32 char_code ) in t1_cmap_std_char_index() argument 69 if ( char_code < 256 ) in t1_cmap_std_char_index() 76 code = cmap->code_to_sid[char_code]; in t1_cmap_std_char_index() 103 FT_UInt32 char_code = *pchar_code + 1; in t1_cmap_std_char_next() local 106 while ( char_code < 256 ) in t1_cmap_std_char_next() 108 result = t1_cmap_std_char_index( cmap, char_code ); in t1_cmap_std_char_next() 112 char_code++; in t1_cmap_std_char_next() 114 char_code = 0; in t1_cmap_std_char_next() 117 *pchar_code = char_code; in t1_cmap_std_char_next() 203 FT_UInt32 char_code ) in t1_cmap_custom_char_index() argument [all …]
|
/external/freetype/src/cache/ |
D | ftccmap.c | 99 FT_UInt32 char_code; member 105 FTC_CMAP_HASH( (x)->face_id, (x)->cmap_index, (x)->char_code ) 166 node->first = (query->char_code / FTC_CMAP_INDICES_MAX) * in ftc_cmap_node_new() 207 FT_UInt32 offset = (FT_UInt32)( query->char_code - node->first ); in ftc_cmap_node_compare() 291 FT_UInt32 char_code ) in FTC_CMapCache_Lookup() argument 331 char_code = (FT_UInt32)cmap_index; in FTC_CMapCache_Lookup() 339 query.char_code = (FT_UInt32)cmap_index; in FTC_CMapCache_Lookup() 354 return FT_Get_Char_Index( face, char_code ); in FTC_CMapCache_Lookup() 368 query.char_code = char_code; in FTC_CMapCache_Lookup() 371 hash = FTC_CMAP_HASH( face_id, cmap_index, char_code ); in FTC_CMapCache_Lookup() [all …]
|
/external/freetype/src/sfnt/ |
D | ttcmap.c | 119 FT_UInt32 char_code ) in tt_cmap0_char_index() argument 124 return char_code < 256 ? table[6 + char_code] : 0; in tt_cmap0_char_index() 376 FT_UInt32 char_code ) in tt_cmap2_get_subheader() argument 381 if ( char_code < 0x10000UL ) in tt_cmap2_get_subheader() 383 FT_UInt char_lo = (FT_UInt)( char_code & 0xFF ); in tt_cmap2_get_subheader() 384 FT_UInt char_hi = (FT_UInt)( char_code >> 8 ); in tt_cmap2_get_subheader() 427 FT_UInt32 char_code ) in tt_cmap2_char_index() argument 434 subheader = tt_cmap2_get_subheader( table, char_code ); in tt_cmap2_char_index() 438 FT_UInt idx = (FT_UInt)(char_code & 0xFF); in tt_cmap2_char_index() 1321 FT_UInt32 char_code ) in tt_cmap4_char_index() argument [all …]
|
/external/freetype/src/cff/ |
D | cffcmap.c | 56 FT_UInt32 char_code ) in cff_cmap_encoding_char_index() argument 61 if ( char_code < 256 ) in cff_cmap_encoding_char_index() 62 result = cmap->gids[char_code]; in cff_cmap_encoding_char_index() 73 FT_UInt32 char_code = *pchar_code; in cff_cmap_encoding_char_next() local 78 if ( char_code < 255 ) in cff_cmap_encoding_char_next() 80 FT_UInt code = (FT_UInt)(char_code + 1); in cff_cmap_encoding_char_next() 173 FT_UInt32 char_code ) in cff_cmap_unicode_char_index() argument 180 return psnames->unicodes_char_index( unicodes, char_code ); in cff_cmap_unicode_char_index()
|
/external/freetype/src/psnames/ |
D | psmodule.c | 447 FT_UInt32 char_code = *unicode + 1; in ps_unicodes_char_next() local 463 if ( map->unicode == char_code ) in ps_unicodes_char_next() 471 if ( base_glyph == char_code ) in ps_unicodes_char_next() 474 if ( base_glyph < char_code ) in ps_unicodes_char_next() 484 char_code = 0; in ps_unicodes_char_next() 490 char_code = BASE_GLYPH( map->unicode ); in ps_unicodes_char_next() 495 *unicode = char_code; in ps_unicodes_char_next()
|
/external/v8/src/ |
D | unicode.h | 143 static inline uchar LeadSurrogate(int char_code) { in LeadSurrogate() argument 144 return 0xd800 + (((char_code - 0x10000) >> 10) & 0x3ff); in LeadSurrogate() 146 static inline uchar TrailSurrogate(int char_code) { in TrailSurrogate() argument 147 return 0xdc00 + (char_code & 0x3ff); in TrailSurrogate()
|
D | string-search.h | 154 SubjectChar char_code) { in CharOccurrence() argument 156 return bad_char_occurrence[static_cast<int>(char_code)]; in CharOccurrence() 159 if (static_cast<unsigned int>(char_code) > String::kMaxAsciiCharCodeU) { in CharOccurrence() 162 return bad_char_occurrence[static_cast<unsigned int>(char_code)]; in CharOccurrence() 165 int equiv_class = char_code % kUC16AlphabetSize; in CharOccurrence()
|
D | hydrogen.cc | 5003 HStringCharCodeAt* char_code = in VisitProperty() local 5005 AddInstruction(char_code); in VisitProperty() 5006 instr = new(zone()) HStringCharFromCode(context, char_code); in VisitProperty() 5546 HStringCharCodeAt* char_code = in TryInlineBuiltinMethodCall() local 5549 ast_context()->ReturnInstruction(char_code, expr->id()); in TryInlineBuiltinMethodCall() 5552 AddInstruction(char_code); in TryInlineBuiltinMethodCall() 5554 new(zone()) HStringCharFromCode(context, char_code); in TryInlineBuiltinMethodCall() 7340 HValue* char_code = Pop(); in GenerateStringCharFromCode() local 7343 new(zone()) HStringCharFromCode(context, char_code); in GenerateStringCharFromCode() 7356 HStringCharCodeAt* char_code = BuildStringCharCodeAt(context, string, index); in GenerateStringCharAt() local [all …]
|
/external/chromium/net/tools/dump_cache/ |
D | url_to_filename_encoder.cc | 180 int char_code = 0; in Decode() local 218 char_code = 0; in Decode()
|
/external/freetype/include/freetype/internal/ |
D | ftobjs.h | 158 FT_UInt32 char_code ); 167 FT_UInt32 char_code, 172 FT_UInt32 char_code, 182 FT_UInt32 char_code );
|
/external/freetype/include/freetype/ |
D | ftcache.h | 634 FT_UInt32 char_code );
|
D | freetype.h | 2378 FT_ULong char_code, 3172 FT_ULong char_code,
|
/external/v8/src/x64/ |
D | lithium-codegen-x64.cc | 3570 Register char_code = ToRegister(instr->char_code()); in DoStringCharFromCode() local 3572 ASSERT(!char_code.is(result)); in DoStringCharFromCode() 3574 __ cmpl(char_code, Immediate(String::kMaxAsciiCharCode)); in DoStringCharFromCode() 3578 char_code, times_pointer_size, in DoStringCharFromCode() 3587 Register char_code = ToRegister(instr->char_code()); in DoDeferredStringCharFromCode() local 3596 __ Integer32ToSmi(char_code, char_code); in DoDeferredStringCharFromCode() 3597 __ push(char_code); in DoDeferredStringCharFromCode()
|
D | lithium-x64.h | 1812 explicit LStringCharFromCode(LOperand* char_code) { in LStringCharFromCode() argument 1813 inputs_[0] = char_code; in LStringCharFromCode() 1819 LOperand* char_code() { return inputs_[0]; } in DECLARE_HYDROGEN_ACCESSOR()
|
D | lithium-x64.cc | 2100 LOperand* char_code = UseRegister(instr->value()); in DoStringCharFromCode() local 2101 LStringCharFromCode* result = new(zone()) LStringCharFromCode(char_code); in DoStringCharFromCode()
|
/external/v8/src/mips/ |
D | lithium-mips.h | 1824 explicit LStringCharFromCode(LOperand* char_code) { in LStringCharFromCode() argument 1825 inputs_[0] = char_code; in LStringCharFromCode() 1831 LOperand* char_code() { return inputs_[0]; } in DECLARE_HYDROGEN_ACCESSOR()
|
D | lithium-codegen-mips.cc | 3759 Register char_code = ToRegister(instr->char_code()); in DoStringCharFromCode() local 3762 ASSERT(!char_code.is(result)); in DoStringCharFromCode() 3765 char_code, Operand(String::kMaxAsciiCharCode)); in DoStringCharFromCode() 3767 __ sll(scratch, char_code, kPointerSizeLog2); in DoStringCharFromCode() 3777 Register char_code = ToRegister(instr->char_code()); in DoDeferredStringCharFromCode() local 3786 __ SmiTag(char_code); in DoDeferredStringCharFromCode() 3787 __ push(char_code); in DoDeferredStringCharFromCode()
|
/external/v8/src/ia32/ |
D | lithium-codegen-ia32.cc | 3606 Register char_code = ToRegister(instr->char_code()); in DoStringCharFromCode() local 3608 ASSERT(!char_code.is(result)); in DoStringCharFromCode() 3610 __ cmp(char_code, String::kMaxAsciiCharCode); in DoStringCharFromCode() 3614 char_code, times_pointer_size, in DoStringCharFromCode() 3623 Register char_code = ToRegister(instr->char_code()); in DoDeferredStringCharFromCode() local 3632 __ SmiTag(char_code); in DoDeferredStringCharFromCode() 3633 __ push(char_code); in DoDeferredStringCharFromCode()
|
D | lithium-ia32.h | 1901 LStringCharFromCode(LOperand* context, LOperand* char_code) { in LStringCharFromCode() argument 1903 inputs_[1] = char_code; in LStringCharFromCode() 1910 LOperand* char_code() { return inputs_[1]; } in char_code() function
|
D | lithium-ia32.cc | 2187 LOperand* char_code = UseRegister(instr->value()); in DoStringCharFromCode() local 2190 new(zone()) LStringCharFromCode(context, char_code); in DoStringCharFromCode()
|
/external/v8/src/arm/ |
D | lithium-arm.h | 1844 explicit LStringCharFromCode(LOperand* char_code) { in LStringCharFromCode() argument 1845 inputs_[0] = char_code; in LStringCharFromCode() 1851 LOperand* char_code() { return inputs_[0]; } in DECLARE_HYDROGEN_ACCESSOR()
|
D | lithium-codegen-arm.cc | 3848 Register char_code = ToRegister(instr->char_code()); in DoStringCharFromCode() local 3850 ASSERT(!char_code.is(result)); in DoStringCharFromCode() 3852 __ cmp(char_code, Operand(String::kMaxAsciiCharCode)); in DoStringCharFromCode() 3855 __ add(result, result, Operand(char_code, LSL, kPointerSizeLog2)); in DoStringCharFromCode() 3865 Register char_code = ToRegister(instr->char_code()); in DoDeferredStringCharFromCode() local 3874 __ SmiTag(char_code); in DoDeferredStringCharFromCode() 3875 __ push(char_code); in DoDeferredStringCharFromCode()
|
D | lithium-arm.cc | 2101 LOperand* char_code = UseRegister(instr->value()); in DoStringCharFromCode() local 2102 LStringCharFromCode* result = new(zone()) LStringCharFromCode(char_code); in DoStringCharFromCode()
|
/external/freetype/src/pfr/ |
D | pfrload.c | 896 cur->char_code = ( flags & PFR_PHY_2BYTE_CHARCODE ) in pfr_phy_font_load()
|
/external/freetype/src/base/ |
D | ftobjs.c | 810 FT_ULong char_code, in FT_Load_Char() argument 819 glyph_index = (FT_UInt)char_code; in FT_Load_Char() 821 glyph_index = FT_Get_Char_Index( face, char_code ); in FT_Load_Char()
|