HomeSort by relevance Sort by last modified time
    Searched refs:is_double (Results 1 - 25 of 32) sorted by null

1 2

  /external/v8/src/arm/
constants-arm.cc 70 const char* VFPRegisters::Name(int reg, bool is_double) {
72 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
76 int VFPRegisters::Number(const char* name, bool* is_double) {
80 *is_double = false;
83 *is_double = true;
constants-arm.h 693 static const char* Name(int reg, bool is_double);
696 // Set flag pointed by is_double to true if register
698 static int Number(const char* name, bool* is_double);
simulator-arm.cc 172 bool is_double; local
173 int regnum = VFPRegisters::Number(desc, &is_double);
174 if (regnum != kNoRegister && !is_double) {
183 bool is_double; local
184 int regnum = VFPRegisters::Number(desc, &is_double);
185 if (regnum != kNoRegister && is_double) {
    [all...]
  /external/v8/src/
field-index.h 26 bool is_double = false);
41 bool is_double() const { function in class:v8::internal::final
78 FieldIndex(bool is_inobject, int local_index, bool is_double,
83 IsDoubleBits::encode(is_double) |
field-index-inl.h 26 bool is_double) {
39 is_double, inobject_properties, first_inobject_offset);
48 bool is_double = field_index & 1; local
60 FieldIndex result(is_inobject, field_index, is_double,
85 return is_double() ? (result | 1) : result;
lookup.cc 475 bool is_double = representation().IsDouble(); local
476 return FieldIndex::ForPropertyIndex(*holder_map_, index, is_double);
code-stubs-hydrogen.cc 831 Representation representation = index.is_double()
838 if (index.is_double() &&
    [all...]
  /art/compiler/optimizing/
intrinsics_arm64.cc 477 bool is_double,
483 FPRegister op1_reg = is_double ? DRegisterFrom(op1) : SRegisterFrom(op1);
484 FPRegister op2_reg = is_double ? DRegisterFrom(op2) : SRegisterFrom(op2);
485 FPRegister out_reg = is_double ? DRegisterFrom(out) : SRegisterFrom(out);
507 GenMinMaxFP(invoke->GetLocations(), /* is_min */ true, /* is_double */ true, GetVIXLAssembler());
515 GenMinMaxFP(invoke->GetLocations(), /* is_min */ true, /* is_double */ false, GetVIXLAssembler());
523 GenMinMaxFP(invoke->GetLocations(), /* is_min */ false, /* is_double */ true, GetVIXLAssembler());
532 invoke->GetLocations(), /* is_min */ false, /* is_double */ false, GetVIXLAssembler());
632 bool is_double,
634 FPRegister in_reg = is_double
    [all...]
intrinsics_x86.cc 405 bool is_double,
439 if (is_double) {
452 if (is_double) {
458 if (is_double) {
472 if (is_double) {
478 if (is_double) {
493 if (is_double) {
527 /* is_double */ true,
539 /* is_double */ false,
551 /* is_double */ true
    [all...]
code_generator_x86.h 297 void GenerateFPCompare(Location lhs, Location rhs, HInstruction* insn, bool is_double);
intrinsics_x86_64.cc 293 bool is_double,
327 if (is_double) {
340 if (is_double) {
346 if (is_double) {
356 if (is_double) {
365 if (is_double) {
392 invoke->GetLocations(), /* is_min */ true, /* is_double */ true, GetAssembler(), codegen_);
401 invoke->GetLocations(), /* is_min */ true, /* is_double */ false, GetAssembler(), codegen_);
410 invoke->GetLocations(), /* is_min */ false, /* is_double */ true, GetAssembler(), codegen_);
419 invoke->GetLocations(), /* is_min */ false, /* is_double */ false, GetAssembler(), codegen_)
    [all...]
code_generator_x86.cc     [all...]
  /external/v8/test/cctest/
test-unboxed-doubles.cc     [all...]
  /toolchain/binutils/binutils-2.25/bfd/
elf32-arm.c 6520 bfd_boolean is_double = ((insn & 0xf00) == 0xb00) ? 1 : 0; local
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.h 836 bool is_double() const { function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.h 1181 bool is_double() const { function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.h 821 bool is_double() const { function in class:v8::internal::final
    [all...]
lithium-codegen-ia32.cc     [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.h 810 bool is_double() const { function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h 828 bool is_double() const { function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 814 bool is_double() const { return hydrogen()->representation().IsDouble(); } function in class:v8::internal::final
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.h 818 bool is_double() const { function in class:v8::internal::final
    [all...]
lithium-codegen-x64.cc     [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.h 837 bool is_double() const { function in class:v8::internal::final
    [all...]
lithium-codegen-x87.cc     [all...]

Completed in 742 milliseconds

1 2