| /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/ |
| MsgPackReader.h | 54 Float, 86 /// Value for \c Type::Float. 87 double Float;
|
| MsgPackDocument.h | 58 double Float; 98 assert(getKind() == Type::Float); 99 return Float; 118 assert(getKind() == Type::Float); 119 return Float; 169 case Type::Float: 170 return Lhs.Float < Rhs.Float; 348 /// Create a Float node associated with this Document. 350 auto N = DocNode(&KindAndDocs[size_t(Type::Float)]); [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
| executionengine.go | 79 func (g GenericValue) Float(t Type) float64 {
|
| /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/ |
| MsgPackDocumentYAML.cpp | 57 case msgpack::Type::Float: 58 OS << Float; 94 if (Tag == "!float" || Tag == "") { 136 case msgpack::Type::Float: 137 return "!float"; 196 case Type::Float:
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| Intrinsics.h | 122 Float,
|
| /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
| ubsan_diag.h | 167 Arg(FloatMax Float) : Kind(AK_Float), Float(Float) {} 175 FloatMax Float;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTX.h | 118 Float,
|
| /src/external/gpl3/gcc/dist/libsanitizer/ubsan/ |
| ubsan_diag.h | 166 Arg(FloatMax Float) : Kind(AK_Float), Float(Float) {} 174 FloatMax Float;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/ |
| ubsan_diag.h | 166 Arg(FloatMax Float) : Kind(AK_Float), Float(Float) {} 174 FloatMax Float;
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| APValue.h | 133 Float, 394 bool isFloat() const { return Kind == Float; } 606 "Invalid complex float (type mismatch)."); 633 Kind = Float;
|
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| MveEmitter.cpp | 107 // Scalar is used for ordinary int and float types of all sizes. 111 // register, i.e. {uint,int,float}NxM_t. 114 // MultiVector is used for the {uint,int,float}NxMxK_t types used by the 154 enum class ScalarTypeKind { SignedInt, UnsignedInt, Float }; 161 case ScalarTypeKind::Float: 172 case ScalarTypeKind::Float: 173 return "float"; 247 .Case("f", ScalarTypeKind::Float); 263 if (Kind == ScalarTypeKind::Float) { 278 bool isInteger() const { return Kind != ScalarTypeKind::Float; } [all...] |
| NeonEmitter.cpp | 147 Float, 191 bool isFloating() const { return Kind == Float; } 614 S += "float"; 735 if (Name.startswith("float")) { 736 T.Kind = Float; 819 Kind = Float; 825 Kind = Float; 831 Kind = Float; 877 Kind = Float; 2321 OS << "#error \"NEON intrinsics not available with the soft-float ABI. [all...] |
| SveEmitter.cpp | 68 bool Float, Signed, Immediate, Void, Constant, Pointer, BFloat; 76 : TS(TS), Float(false), Signed(true), Immediate(false), Void(false), 95 bool isFloat() const { return Float && !BFloat; } 96 bool isBFloat() const { return BFloat && !Float; } 97 bool isFloatingPoint() const { return Float || BFloat; } 436 if (Float) 437 S += "float"; 484 Float = true; 488 Float = true; 492 Float = true [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/ |
| WebAssemblyAsmParser.cpp | 47 enum KindTy { Token, Integer, Float, Symbol, BrList } Kind; 97 bool isFPImm() const { return Kind == Float; } 132 if (Kind == Float) 134 MCOperand::createSFPImm(bit_cast<uint32_t>(float(Flt.Val)))); 136 llvm_unreachable("Should be float immediate!"); 141 if (Kind == Float) 144 llvm_unreachable("Should be float immediate!"); 161 case Float: 382 WebAssemblyOperand::Float, Flt.getLoc(), Flt.getEndLoc(), 404 WebAssemblyOperand::Float, Flt.getLoc(), Flt.getEndLoc() [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/ |
| gtest-internal.h | 54 #include <float.h> 227 // For float, there are 8 exponent bits and 23 fraction bits. 236 // RawType: the raw floating-point type (either float or double) 390 inline float FloatingPoint<float>::Max() { return FLT_MAX; } 396 typedef FloatingPoint<float> Float;
|
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/ |
| llvm.ml | 31 | Float 614 external const_float : lltype -> float -> llvalue = "llvm_const_float" 615 external float_of_const : llvalue -> float option
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/ |
| PDBTypes.h | 342 Float = 8, 424 explicit Variant(float V) : Type(PDB_VariantType::Single) { 459 float Single; 534 // Float constants may be tagged as integers.
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/ |
| MicrosoftDemangleNodes.h | 103 Float,
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| StmtPrinter.cpp | 1169 // Emit suffixes. Float literals are always a builtin float type. 1171 default: llvm_unreachable("Unexpected type for float literal!"); 1175 case BuiltinType::Float: OS << 'F'; break; 1863 auto *Float = cast<FloatingLiteral>(Node->getCookedLiteral()); 1864 PrintFloatingLiteral(OS, Float, /*PrintSuffix=*/false);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| CodeView.h | 254 Float = 0x01,
|
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| TargetInfo.h | 126 Float = 0, 647 /// getFloatWidth/Align/Format - Return the size/align/format of 'float'.
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| TargetInfo.cpp | 1098 Float 1387 // and 64-bit integer and integer-equivalents, float, and double.) 1533 // the field is of type "float" or "double", return it in a 1651 if (K == BuiltinType::Float || K == BuiltinType::Double) 1652 return Float; 1660 if (C == Float) 2815 } else if (k == BuiltinType::Float || k == BuiltinType::Double) { 2873 // 4 bytes - <4 x char>, <2 x short>, <1 x int>, <1 x float> 3371 /// float member at the specified offset. For example, {int,{float}} has [all...] |