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

/external/freetype/src/cff/
H A Dcffcmap.c56 FT_UInt32 char_code )
61 if ( char_code < 256 )
62 result = cmap->gids[char_code];
73 FT_UInt32 char_code = *pchar_code; local
78 if ( char_code < 255 )
80 FT_UInt code = (FT_UInt)(char_code + 1);
173 FT_UInt32 char_code )
180 return psnames->unicodes_char_index( unicodes, char_code );
/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;
203 FT_UInt32 char_code )
221 FT_UInt32 char_code = *pchar_code; local
[all...]
/external/chromium/net/tools/dump_cache/
H A Durl_to_filename_encoder.cc180 int char_code = 0; local
218 char_code = 0;
/external/freetype/src/cache/
H A Dftccmap.c99 FT_UInt32 char_code; member in struct:FTC_CMapQueryRec_
105 FTC_CMAP_HASH( (x)->face_id, (x)->cmap_index, (x)->char_code )
166 node->first = (query->char_code / FTC_CMAP_INDICES_MAX) *
207 FT_UInt32 offset = (FT_UInt32)( query->char_code - node->first );
291 FT_UInt32 char_code )
331 char_code = (FT_UInt32)cmap_index;
339 query.char_code = (FT_UInt32)cmap_index;
354 return FT_Get_Char_Index( face, char_code );
368 query.char_code = char_code;
[all...]
/external/freetype/src/psnames/
H A Dpsmodule.c447 FT_UInt32 char_code = *unicode + 1; local
463 if ( map->unicode == char_code )
471 if ( base_glyph == char_code )
474 if ( base_glyph < char_code )
484 char_code = 0;
490 char_code = BASE_GLYPH( map->unicode );
495 *unicode = char_code;
/external/v8/src/
H A Dstring-search.h154 SubjectChar char_code) {
156 return bad_char_occurrence[static_cast<int>(char_code)];
159 if (static_cast<unsigned int>(char_code) > String::kMaxAsciiCharCodeU) {
162 return bad_char_occurrence[static_cast<unsigned int>(char_code)];
165 int equiv_class = char_code % kUC16AlphabetSize;
153 CharOccurrence(int* bad_char_occurrence, SubjectChar char_code) argument
H A Dunicode.h143 static inline uchar LeadSurrogate(int char_code) { argument
144 return 0xd800 + (((char_code - 0x10000) >> 10) & 0x3ff);
146 static inline uchar TrailSurrogate(int char_code) { argument
147 return 0xdc00 + (char_code & 0x3ff);
H A Druntime.cc2239 Object* char_code) {
2241 if (char_code->ToArrayIndex(&code)) {
2238 CharFromCode(Isolate* isolate, Object* char_code) argument
H A Dhydrogen-instructions.h4322 HStringCharFromCode(HValue* context, HValue* char_code) { argument
4324 SetOperandAt(1, char_code);
H A Dhydrogen.cc5003 HStringCharCodeAt* char_code = local
5005 AddInstruction(char_code);
5006 instr = new(zone()) HStringCharFromCode(context, char_code);
5546 HStringCharCodeAt* char_code = local
5549 ast_context()->ReturnInstruction(char_code, expr->id());
5552 AddInstruction(char_code);
5554 new(zone()) HStringCharFromCode(context, char_code);
7340 HValue* char_code = Pop(); local
7343 new(zone()) HStringCharFromCode(context, char_code);
7356 HStringCharCodeAt* char_code local
[all...]
/external/freetype/src/sfnt/
H A Dttcmap.c119 FT_UInt32 char_code )
124 return char_code < 256 ? table[6 + char_code] : 0;
376 FT_UInt32 char_code )
381 if ( char_code < 0x10000UL )
383 FT_UInt char_lo = (FT_UInt)( char_code & 0xFF );
384 FT_UInt char_hi = (FT_UInt)( char_code >> 8 );
427 FT_UInt32 char_code )
434 subheader = tt_cmap2_get_subheader( table, char_code );
438 FT_UInt idx = (FT_UInt)(char_code
1490 FT_UInt32 char_code = *pchar_code + 1; local
1742 FT_UInt32 char_code = *pchar_code + 1; local
1900 FT_UInt32 char_code = *pchar_code + 1; local
2077 FT_ULong start, end, start_id, char_code; local
2127 FT_UInt32 char_code = *pchar_code; local
2397 FT_ULong start, end, glyph_id, char_code; local
2447 FT_UInt32 char_code = *pchar_code; local
[all...]
/external/v8/src/arm/
H A Dlithium-arm.cc2101 LOperand* char_code = UseRegister(instr->value()); local
2102 LStringCharFromCode* result = new(zone()) LStringCharFromCode(char_code);
H A Dlithium-arm.h1844 explicit LStringCharFromCode(LOperand* char_code) { argument
1845 inputs_[0] = char_code;
1851 LOperand* char_code() { return inputs_[0]; } function in class:v8::internal::LStringCharFromCode
H A Dlithium-codegen-arm.cc3848 Register char_code = ToRegister(instr->char_code()); local
3850 ASSERT(!char_code.is(result));
3852 __ cmp(char_code, Operand(String::kMaxAsciiCharCode));
3855 __ add(result, result, Operand(char_code, LSL, kPointerSizeLog2));
3865 Register char_code = ToRegister(instr->char_code()); local
3874 __ SmiTag(char_code);
3875 __ push(char_code);
/external/v8/src/ia32/
H A Dlithium-ia32.cc2187 LOperand* char_code = UseRegister(instr->value()); local
2190 new(zone()) LStringCharFromCode(context, char_code);
H A Dlithium-ia32.h1901 LStringCharFromCode(LOperand* context, LOperand* char_code) { argument
1903 inputs_[1] = char_code;
1910 LOperand* char_code() { return inputs_[1]; } function in class:v8::internal::LStringCharFromCode
H A Dlithium-codegen-ia32.cc3606 Register char_code = ToRegister(instr->char_code()); local
3608 ASSERT(!char_code.is(result));
3610 __ cmp(char_code, String::kMaxAsciiCharCode);
3614 char_code, times_pointer_size,
3623 Register char_code = ToRegister(instr->char_code()); local
3632 __ SmiTag(char_code);
3633 __ push(char_code);
/external/v8/src/mips/
H A Dlithium-mips.cc2105 LOperand* char_code = UseRegister(instr->value()); local
2106 LStringCharFromCode* result = new(zone()) LStringCharFromCode(char_code);
H A Dlithium-mips.h1824 explicit LStringCharFromCode(LOperand* char_code) { argument
1825 inputs_[0] = char_code;
1831 LOperand* char_code() { return inputs_[0]; } function in class:v8::internal::LStringCharFromCode
H A Dlithium-codegen-mips.cc3759 Register char_code = ToRegister(instr->char_code()); local
3762 ASSERT(!char_code.is(result));
3765 char_code, Operand(String::kMaxAsciiCharCode));
3767 __ sll(scratch, char_code, kPointerSizeLog2);
3777 Register char_code = ToRegister(instr->char_code()); local
3786 __ SmiTag(char_code);
3787 __ push(char_code);
/external/v8/src/x64/
H A Dlithium-x64.cc2100 LOperand* char_code = UseRegister(instr->value()); local
2101 LStringCharFromCode* result = new(zone()) LStringCharFromCode(char_code);
H A Dlithium-x64.h1812 explicit LStringCharFromCode(LOperand* char_code) { argument
1813 inputs_[0] = char_code;
1819 LOperand* char_code() { return inputs_[0]; } function in class:v8::internal::LStringCharFromCode
H A Dlithium-codegen-x64.cc3570 Register char_code = ToRegister(instr->char_code()); local
3572 ASSERT(!char_code.is(result));
3574 __ cmpl(char_code, Immediate(String::kMaxAsciiCharCode));
3578 char_code, times_pointer_size,
3587 Register char_code = ToRegister(instr->char_code()); local
3596 __ Integer32ToSmi(char_code, char_code);
3597 __ push(char_code);
[all...]

Completed in 323 milliseconds