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

  /external/v8/src/arm/
constants-arm.cc 104 const char* VFPRegisters::Name(int reg, bool is_double) {
106 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
110 int VFPRegisters::Number(const char* name, bool* is_double) {
114 *is_double = false;
117 *is_double = true;
constants-arm.h 761 static const char* Name(int reg, bool is_double);
764 // Set flag pointed by is_double to true if register
766 static int Number(const char* name, bool* is_double);
simulator-arm.cc 199 bool is_double; local
200 int regnum = VFPRegisters::Number(desc, &is_double);
201 if (regnum != kNoRegister && !is_double) {
210 bool is_double; local
211 int regnum = VFPRegisters::Number(desc, &is_double);
212 if (regnum != kNoRegister && is_double) {
    [all...]
lithium-arm.h 595 bool is_double() const { function in class:v8::internal::LCmpID
612 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
lithium-arm.cc 397 int LChunk::GetNextSpillIndex(bool is_double) {
399 if (is_double) spill_slot_count_++;
404 LOperand* LChunk::GetNextSpillSlot(bool is_double) {
405 int index = GetNextSpillIndex(is_double);
406 if (is_double) {
    [all...]
lithium-codegen-arm.cc     [all...]
  /dalvik/vm/mterp/x86/
OP_CMPG_DOUBLE.S 1 %default {"is_double":"1","nanval":"1"}
9 .if $is_double
  /external/v8/src/ia32/
lithium-ia32.h 588 bool is_double() const { function in class:v8::internal::LCmpID
605 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
lithium-ia32.cc 353 int LChunk::GetNextSpillIndex(bool is_double) {
355 if (is_double) spill_slot_count_++;
360 LOperand* LChunk::GetNextSpillSlot(bool is_double) {
361 int index = GetNextSpillIndex(is_double);
362 if (is_double) {
    [all...]
lithium-codegen-ia32.cc     [all...]
  /external/v8/src/x64/
lithium-x64.h 579 bool is_double() const { function in class:v8::internal::LCmpID
596 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
lithium-x64.cc 353 int LChunk::GetNextSpillIndex(bool is_double) {
358 LOperand* LChunk::GetNextSpillSlot(bool is_double) {
362 int index = GetNextSpillIndex(is_double);
363 if (is_double) {
    [all...]
lithium-codegen-x64.cc     [all...]

Completed in 279 milliseconds