Searched defs:is_double (Results 1 - 20 of 20) sorted by relevance

/external/v8/src/arm/
H A Dconstants-arm.cc70 const char* VFPRegisters::Name(int reg, bool is_double) { argument
72 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
76 int VFPRegisters::Number(const char* name, bool* is_double) { argument
80 *is_double = false;
83 *is_double = true;
H A Dsimulator-arm.cc116 bool is_double; local
117 int regnum = VFPRegisters::Number(desc, &is_double);
118 if (regnum != kNoRegister && !is_double) {
127 bool is_double; local
128 int regnum = VFPRegisters::Number(desc, &is_double);
129 if (regnum != kNoRegister && is_double) {
/external/v8/src/
H A Dfield-index-inl.h26 bool is_double) {
39 is_double, inobject_properties, first_inobject_offset);
47 bool is_double = field_index & 1; local
59 FieldIndex result(is_inobject, field_index, is_double,
84 return is_double() ? (result | 1) : result;
24 ForPropertyIndex(Map* map, int property_index, bool is_double) argument
H A Dfield-index.h26 bool is_double = false);
40 bool is_double() const { function in class:v8::internal::final
80 FieldIndex(bool is_inobject, int local_index, bool is_double, argument
85 IsDoubleBits::encode(is_double) |
H A Dlookup.cc695 bool is_double = representation().IsDouble(); local
696 return FieldIndex::ForPropertyIndex(holder_map, index, is_double);
H A Dcode-stub-assembler.cc2072 bool is_double = IsFastDoubleElementsKind(kind); local
2075 DCHECK_IMPLIES(is_double, value_root_index == Heap::kTheHoleValueRootIndex);
2083 [this, value, is_double, double_hole](Node* array, Node* offset) {
2084 if (is_double) {
/external/libchrome/base/
H A Dvalues.h120 bool is_double() const { return type() == Type::DOUBLE; } function in class:base::Value
/external/mesa3d/src/compiler/
H A Dglsl_types.h499 bool is_double() const function in struct:glsl_type
/external/mesa3d/src/compiler/spirv/
H A Dspirv_to_nir.c35 bool is_double; member in struct:spec_constant_value
956 if (const_value->is_double)
970 data.is_double = false;
981 data.is_double = true;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4.cpp2350 bool is_double = type_sz(inst->dst.type) == 8; local
2351 for (int arg = 0; !is_double && arg < 3; arg++) {
2352 is_double = inst->src[arg].file != BAD_FILE &&
2356 if (!is_double)
/external/v8/src/ic/
H A Daccessor-assembler.cc250 Label is_double(this);
251 GotoIf(IsSetWord<LoadHandler::IsDoubleBits>(handler_word), &is_double); local
254 Bind(&is_double);
267 Label is_double(this);
270 GotoIf(IsSetWord<LoadHandler::IsDoubleBits>(handler_word), &is_double); local
273 Bind(&is_double);
/external/v8/src/crankshaft/arm/
H A Dlithium-arm.h817 bool is_double() const { function in class:v8::internal::final
/external/v8/src/crankshaft/arm64/
H A Dlithium-arm64.h1090 bool is_double() const { function in class:v8::internal::final
/external/v8/src/crankshaft/ia32/
H A Dlithium-ia32.h804 bool is_double() const { function in class:v8::internal::final
/external/v8/src/crankshaft/mips/
H A Dlithium-mips.h792 bool is_double() const { function in class:v8::internal::final
/external/v8/src/crankshaft/mips64/
H A Dlithium-mips64.h810 bool is_double() const { function in class:v8::internal::final
/external/v8/src/crankshaft/ppc/
H A Dlithium-ppc.h799 bool is_double() const { return hydrogen()->representation().IsDouble(); } function in class:v8::internal::final
/external/v8/src/crankshaft/s390/
H A Dlithium-s390.h761 bool is_double() const { return hydrogen()->representation().IsDouble(); } function in class:v8::internal::final
/external/v8/src/crankshaft/x64/
H A Dlithium-x64.h801 bool is_double() const { function in class:v8::internal::final
/external/v8/src/crankshaft/x87/
H A Dlithium-x87.h818 bool is_double() const { function in class:v8::internal::final

Completed in 1110 milliseconds