/external/v8/src/ |
D | boxed-float.h | 59 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);
|
D | deoptimizer.h | 89 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/ |
D | grpcrand.go | 51 func Float64() float64 { func 53 res := r.Float64()
|
/external/v8/src/arm/ |
D | simulator-arm.h | 117 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);
|
D | constants-arm.cc | 13 Float64 Instruction::DoubleImmedVmov() const { in DoubleImmedVmov() 28 return Float64::FromBits(imm); in DoubleImmedVmov()
|
/external/syzkaller/vendor/cloud.google.com/go/internal/optional/ |
D | optional.go | 40 Float64 interface{} interface 88 func ToFloat64(v Float64) float64 { argument
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeIndex.h | 56 Float64 = 0x0041, // 64 bit real enumerator 159 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); } in Float64() function
|
/external/golang-protobuf/proto/ |
D | clone_test.go | 213 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),
|
D | lib.go | 441 func Float64(v float64) *float64 { func 651 case reflect.Float64: 848 case reflect.Float64: 935 case reflect.Float32, reflect.Float64:
|
D | text_parser_test.go | 643 -4: {F: Float64(2.0)}, 644 -2: {F: Float64(4.0)}, 645 0: {F: Float64(5.0)},
|
D | size_test.go | 103 {"double", &pb.Defaults{F_Double: Float64(13.9)}}, 144 …ssageWithMap{MsgMapping: map[int64]*pb.FloatingPoint{0x7001: &pb.FloatingPoint{F: Float64(2.0)}}}},
|
D | clone.go | 147 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/ |
D | save.go | 52 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/ |
D | TypeIndex.h | 63 Float64 = 0x0041, // 64 bit real enumerator 178 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); } in Float64() function
|
/external/v8/src/compiler/s390/ |
D | instruction-selector-s390.cc | 537 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/ |
D | value-type.h | 45 V(F64, , Float64, 3) \ 112 V(F64, , Float64, 3) \ 239 return MachineType::Float64(); in MachineTypeFor()
|
/external/golang-protobuf/jsonpb/ |
D | jsonpb_test.go | 77 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/ |
D | builder.lua | 23 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/ |
D | tcuFloat.hpp | 133 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/ |
D | lib.go | 403 func Float64(v float64) *float64 { func 613 case reflect.Float64: 810 case reflect.Float64: 897 case reflect.Float32, reflect.Float64:
|
D | clone.go | 147 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/ |
D | backoff.go | 73 backoff *= 1 + jitter*(grpcrand.Float64()*2-1)
|
/external/flatbuffers/tests/MyGame/Example/ |
D | TypeAliases.lua | 90 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/ |
D | tensor.go | 312 …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/ |
D | remap.hlsl.templatetypes.everything.frag.out | 7 Capability Float64
|