Home
last modified time | relevance | path

Searched refs:Float64 (Results 1 – 25 of 184) sorted by relevance

12345678

/external/v8/src/
Dboxed-float.h59 class Float64 {
61 Float64() = default;
65 explicit Float64(double value) : bit_pattern_(bit_cast<uint64_t>(value)) { in Float64() function
84 static constexpr Float64 FromBits(uint64_t bits) { return Float64(bits); } in FromBits()
89 explicit constexpr Float64(uint64_t bit_pattern) in Float64() function
93 ASSERT_TRIVIALLY_COPYABLE(Float64);
Ddeoptimizer.h89 static TranslatedValue NewDouble(TranslatedState* container, Float64 value);
134 Float64 double_value_;
144 Float64 double_value() const;
372 static Float64 GetDoubleSlot(Address fp, int slot_index);
669 Float64 GetDoubleRegister(unsigned n) const { in GetDoubleRegister()
684 void SetDoubleRegister(unsigned n, Float64 value) { in SetDoubleRegister()
692 static_assert(sizeof(Float64) == kDoubleSize, "size mismatch");
696 Float64 double_registers_[DoubleRegister::kNumRegisters];
756 Float64 GetDoubleRegister(unsigned n) const { in GetDoubleRegister()
764 void SetDoubleRegister(unsigned n, Float64 value) { in SetDoubleRegister()
/external/syzkaller/vendor/google.golang.org/grpc/internal/grpcrand/
Dgrpcrand.go51 func Float64() float64 { func
53 res := r.Float64()
/external/v8/src/arm/
Dsimulator-arm.h117 void set_d_register_from_double(int dreg, const Float64 dbl) { in set_d_register_from_double()
118 SetVFPRegister<Float64, 2>(dreg, dbl); in set_d_register_from_double()
124 Float64 get_double_from_d_register(int dreg) { in get_double_from_d_register()
125 return GetFromVFPRegister<Float64, 2>(dreg); in get_double_from_d_register()
246 inline Float64 canonicalizeNaN(Float64 value);
Dconstants-arm.cc13 Float64 Instruction::DoubleImmedVmov() const { in DoubleImmedVmov()
28 return Float64::FromBits(imm); in DoubleImmedVmov()
/external/syzkaller/vendor/cloud.google.com/go/internal/optional/
Doptional.go40 Float64 interface{} interface
88 func ToFloat64(v Float64) float64 { argument
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeIndex.h56 Float64 = 0x0041, // 64 bit real enumerator
159 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); } in Float64() function
/external/golang-protobuf/proto/
Dclone_test.go213 0x4001: &pb.FloatingPoint{F: proto.Float64(2.0)},
215 F: proto.Float64(2.0),
227 F: proto.Float64(3.0),
238 0x4001: &pb.FloatingPoint{F: proto.Float64(2.0)},
240 F: proto.Float64(2.0),
Dlib.go441 func Float64(v float64) *float64 { func
651 case reflect.Float64:
848 case reflect.Float64:
935 case reflect.Float32, reflect.Float64:
Dtext_parser_test.go643 -4: {F: Float64(2.0)},
644 -2: {F: Float64(4.0)},
645 0: {F: Float64(5.0)},
Dsize_test.go103 {"double", &pb.Defaults{F_Double: Float64(13.9)}},
144 …ssageWithMap{MsgMapping: map[int64]*pb.FloatingPoint{0x7001: &pb.FloatingPoint{F: Float64(2.0)}}}},
Dclone.go147 case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64,
220 case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64,
/external/syzkaller/vendor/google.golang.org/appengine/datastore/
Dsave.go52 case reflect.Float32, reflect.Float64:
53 pv.DoubleValue = proto.Float64(v.Float())
163 case reflect.Float32, reflect.Float64:
261 x.Value.DoubleValue = proto.Float64(v)
321 case reflect.Float32, reflect.Float64:
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeIndex.h63 Float64 = 0x0041, // 64 bit real enumerator
178 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); } in Float64() function
/external/v8/src/compiler/s390/
Dinstruction-selector-s390.cc537 V(Float64, Unary, \
544 V(Float64, Bin, [](ArchOpcode opcode) { return opcode == kS390_LoadDouble; })
1335 V(Float64, TruncateFloat64ToFloat32, kS390_DoubleToFloat32, \
1337 V(Float64, TruncateFloat64ToWord32, kArchTruncateDoubleToI, \
1339 V(Float64, RoundFloat64ToInt32, kS390_DoubleToInt32, OperandMode::kNone, \
1345 V(Float64, TruncateFloat64ToUint32, kS390_DoubleToUint32, \
1347 V(Float64, ChangeFloat64ToInt32, kS390_DoubleToInt32, OperandMode::kNone, \
1349 V(Float64, ChangeFloat64ToUint32, kS390_DoubleToUint32, OperandMode::kNone, \
1351 V(Float64, Float64SilenceNaN, kS390_Float64SilenceNaN, OperandMode::kNone, \
1354 V(Float64, Float64Abs, kS390_AbsDouble, OperandMode::kNone, null) \
[all …]
/external/v8/src/wasm/
Dvalue-type.h45 V(F64, , Float64, 3) \
112 V(F64, , Float64, 3) \
239 return MachineType::Float64(); in MachineTypeFor()
/external/golang-protobuf/jsonpb/
Djsonpb_test.go77 ODouble: proto.Float64(6.02214179e23),
78 ODoubleStr: proto.Float64(6.02214179e23),
337 realNumber = &pb.Real{Value: proto.Float64(3.14159265359)}
339 complexNumber = &pb.Complex{Imaginary: proto.Float64(0.5772156649)}
385 DNan: proto.Float64(float64(math.NaN())),
386 DPinf: proto.Float64(float64(math.Inf(1))),
387 DNinf: proto.Float64(float64(math.Inf(-1))),
739 {"NaN", Unmarshaler{}, `{"oDouble":"NaN"}`, &pb.Simple{ODouble: proto.Float64(math.NaN())}},
741 …{"-Inf", Unmarshaler{}, `{"oDouble":"-Infinity"}`, &pb.Simple{ODouble: proto.Float64(math.Inf(-1))…
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua23 local Float64 = N.Float64
330 function mt:PrependFloat64Slot(...) self:PrependSlot(Float64, ...) end
359 function mt:PrependFloat64(x) self:Prepend(Float64, x) end
/external/deqp/framework/common/
DtcuFloat.hpp133 typedef Float<deUint64, 11, 52, 1023, FLOAT_HAS_SIGN|FLOAT_SUPPORT_DENORM> Float64; //!< IEEE 754 6… typedef
164 *this = convert(Float64(u64)); in Float()
180 deUint64 u64 = Float64::convert(*this).bits(); in asDouble()
/external/syzkaller/vendor/github.com/golang/protobuf/proto/
Dlib.go403 func Float64(v float64) *float64 { func
613 case reflect.Float64:
810 case reflect.Float64:
897 case reflect.Float32, reflect.Float64:
Dclone.go147 case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64,
220 case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64,
/external/syzkaller/vendor/google.golang.org/grpc/internal/backoff/
Dbackoff.go73 backoff *= 1 + jitter*(grpcrand.Float64()*2-1)
/external/flatbuffers/tests/MyGame/Example/
DTypeAliases.lua90 return self.view:Get(flatbuffers.N.Float64, o + self.view.pos)
113 return self.view:Get(flatbuffers.N.Float64, a + ((j-1) * 8))
/external/tensorflow/tensorflow/go/
Dtensor.go312 …reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex6…
330 …reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex6…
359 …reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex6…
371 …reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex6…
/external/deqp-deps/glslang/Test/baseResults/
Dremap.hlsl.templatetypes.everything.frag.out7 Capability Float64

12345678