Searched refs:char_code (Results 26 - 50 of 57) sorted by relevance

123

/external/v8/src/x64/
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...]
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-x64.cc2100 LOperand* char_code = UseRegister(instr->value()); local
2101 LStringCharFromCode* result = new(zone()) LStringCharFromCode(char_code);
/external/chromium_org/v8/src/arm/
H A Dlithium-codegen-arm.cc4590 Register char_code = ToRegister(instr->char_code()); local
4592 ASSERT(!char_code.is(result));
4594 __ cmp(char_code, Operand(String::kMaxOneByteCharCode));
4597 __ add(result, result, Operand(char_code, LSL, kPointerSizeLog2));
4607 Register char_code = ToRegister(instr->char_code()); local
4616 __ SmiTag(char_code);
4617 __ push(char_code);
H A Dlithium-arm.h2320 explicit LStringCharFromCode(LOperand* char_code) { argument
2321 inputs_[0] = char_code;
2324 LOperand* char_code() { return inputs_[0]; } function in class:v8::internal::LStringCharFromCode
H A Dlithium-arm.cc2369 LOperand* char_code = UseRegister(instr->value()); local
2370 LStringCharFromCode* result = new(zone()) LStringCharFromCode(char_code);
/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.cc4540 Register char_code = ToRegister(instr->char_code()); local
4543 ASSERT(!char_code.is(result));
4546 char_code, Operand(String::kMaxOneByteCharCode));
4548 __ sll(scratch, char_code, kPointerSizeLog2);
4558 Register char_code = ToRegister(instr->char_code()); local
4567 __ SmiTag(char_code);
4568 __ push(char_code);
H A Dlithium-mips.h2278 explicit LStringCharFromCode(LOperand* char_code) { argument
2279 inputs_[0] = char_code;
2282 LOperand* char_code() { return inputs_[0]; } function in class:v8::internal::LStringCharFromCode
/external/v8/src/arm/
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);
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-arm.cc2101 LOperand* char_code = UseRegister(instr->value()); local
2102 LStringCharFromCode* result = new(zone()) LStringCharFromCode(char_code);
/external/v8/src/ia32/
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);
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
/external/v8/src/mips/
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);
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-mips.cc2105 LOperand* char_code = UseRegister(instr->value()); local
2106 LStringCharFromCode* result = new(zone()) LStringCharFromCode(char_code);
/external/chromium_org/v8/src/
H A Dhydrogen.cc5896 HInstruction* char_code = local
5898 AddInstruction(char_code);
5899 instr = HStringCharFromCode::New(zone(), context, char_code);
6739 HInstruction* char_code = local
6742 ast_context()->ReturnInstruction(char_code, expr->id());
6745 AddInstruction(char_code);
6747 HStringCharFromCode::New(zone(), context, char_code);
8965 HValue* char_code = Pop(); local
8966 HInstruction* result = New<HStringCharFromCode>(char_code);
8978 HInstruction* char_code local
[all...]
H A Dhydrogen-instructions.cc3625 Zone* zone, HValue* context, HValue* char_code) {
3626 if (FLAG_fold_constants && char_code->IsConstant()) {
3627 HConstant* c_code = HConstant::cast(char_code);
3638 return new(zone) HStringCharFromCode(context, char_code);
3624 New( Zone* zone, HValue* context, HValue* char_code) argument
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.h2412 LStringCharFromCode(LOperand* context, LOperand* char_code) { argument
2414 inputs_[1] = char_code;
2418 LOperand* char_code() { return inputs_[1]; } function in class:v8::internal::LStringCharFromCode
H A Dlithium-codegen-ia32.cc4832 Register char_code = ToRegister(instr->char_code()); local
4834 ASSERT(!char_code.is(result));
4836 __ cmp(char_code, String::kMaxOneByteCharCode);
4840 char_code, times_pointer_size,
4849 Register char_code = ToRegister(instr->char_code()); local
4858 __ SmiTag(char_code);
4859 __ push(char_code);
H A Dlithium-ia32.cc2485 LOperand* char_code = UseRegister(instr->value()); local
2488 new(zone()) LStringCharFromCode(context, char_code);
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.h2229 explicit LStringCharFromCode(LOperand* char_code) { argument
2230 inputs_[0] = char_code;
2233 LOperand* char_code() { return inputs_[0]; } function in class:v8::internal::LStringCharFromCode
/external/v8/src/
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/chromium_org/third_party/freetype/src/base/
H A Dftobjs.c805 FT_ULong char_code,
814 glyph_index = (FT_UInt)char_code;
816 glyph_index = FT_Get_Char_Index( face, char_code );
/external/freetype/src/base/
H A Dftobjs.c837 FT_ULong char_code,
846 glyph_index = (FT_UInt)char_code;
848 glyph_index = FT_Get_Char_Index( face, char_code );

Completed in 721 milliseconds

123