HomeSort by relevance Sort by last modified time
    Searched defs:Float64 (Results 26 - 50 of 53) sorted by null

12 3

  /external/v8/src/compiler/
representation-change.h 22 static Truncation Float64() { return Truncation(TruncationKind::kFloat64); }
117 // insufficient to do the conversion (e.g. word32->float64 conv), so we also
142 return UseInfo(MachineRepresentation::kFloat64, Truncation::Float64());
179 return UseInfo(MachineRepresentation::kFloat64, Truncation::Float64(),
234 // out signedness for the word32->float64 conversion, then we check that the
  /external/v8/src/
machine-type.h 126 static MachineType Float64() {
224 return MachineType::Float64();
deoptimizer.h 41 class Float64 {
43 Float64() : bit_pattern_(0) {}
47 static Float64 FromBits(uint64_t bits) { return Float64(bits); }
50 explicit Float64(uint64_t bit_pattern) : bit_pattern_(bit_pattern) {}
99 static TranslatedValue NewDouble(TranslatedState* container, Float64 value);
134 Float64 double_value_;
144 Float64 double_value() const;
334 static Float64 GetDoubleSlot(Address fp, int slot_index);
694 Float64 GetDoubleRegister(unsigned n) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h 56 Float64 = 0x0041, // 64 bit real
160 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); }
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
Wasm.h 72 int64_t Float64;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h 56 Float64 = 0x0041, // 64 bit real
160 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
Wasm.h 72 int64_t Float64;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h 56 Float64 = 0x0041, // 64 bit real
160 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
Wasm.h 72 int64_t Float64;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h 56 Float64 = 0x0041, // 64 bit real
160 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Wasm.h 72 int64_t Float64;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h 56 Float64 = 0x0041, // 64 bit real
160 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
Wasm.h 72 int64_t Float64;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h 56 Float64 = 0x0041, // 64 bit real
160 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
Wasm.h 72 int64_t Float64;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h 56 Float64 = 0x0041, // 64 bit real
160 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
Wasm.h 72 int64_t Float64;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h 56 Float64 = 0x0041, // 64 bit real
160 static TypeIndex Float64() { return TypeIndex(SimpleTypeKind::Float64); }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Wasm.h 72 int64_t Float64;
  /prebuilts/go/darwin-x86/src/flag/
flag.go 197 // -- float64 Value
198 type float64Value float64
200 func newFloat64Value(val float64, p *float64) *float64Value {
211 func (f *float64Value) Get() interface{} { return float64(*f) }
213 func (f *float64Value) String() string { return strconv.FormatFloat(float64(*f), 'g', -1, 64) }
719 // Float64Var defines a float64 flag with specified name, default value, and usage string.
720 // The argument p points to a float64 variable in which to store the value of the flag.
721 func (f *FlagSet) Float64Var(p *float64, name string, value float64, usage string)
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
float.go 50 // as the corresponding float32 or float64 IEEE-754 arithmetic for operands
51 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
81 func NewFloat(x float64) *Float {
533 func (z *Float) SetFloat64(x float64) *Float {
937 // Float64 returns the float64 value nearest to x. If x is too small to be
938 // represented by a float64 (|x| < math.SmallestNonzeroFloat64), the result
940 // If x is too large to be represented by a float64 (|x| > math.MaxFloat64),
942 func (x *Float) Float64() (float64, Accuracy)
    [all...]
  /prebuilts/go/linux-x86/src/flag/
flag.go 197 // -- float64 Value
198 type float64Value float64
200 func newFloat64Value(val float64, p *float64) *float64Value {
211 func (f *float64Value) Get() interface{} { return float64(*f) }
213 func (f *float64Value) String() string { return strconv.FormatFloat(float64(*f), 'g', -1, 64) }
719 // Float64Var defines a float64 flag with specified name, default value, and usage string.
720 // The argument p points to a float64 variable in which to store the value of the flag.
721 func (f *FlagSet) Float64Var(p *float64, name string, value float64, usage string)
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
float.go 50 // as the corresponding float32 or float64 IEEE-754 arithmetic for operands
51 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
81 func NewFloat(x float64) *Float {
533 func (z *Float) SetFloat64(x float64) *Float {
937 // Float64 returns the float64 value nearest to x. If x is too small to be
938 // represented by a float64 (|x| < math.SmallestNonzeroFloat64), the result
940 // If x is too large to be represented by a float64 (|x| > math.MaxFloat64),
942 func (x *Float) Float64() (float64, Accuracy)
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
type.go 39 Float64
  /prebuilts/go/linux-x86/src/go/types/
type.go 39 Float64

Completed in 2173 milliseconds

12 3