| /minix3/external/bsd/llvm/dist/clang/test/Sema/ |
| H A D | cast.c | 22 typedef float Float; typedef 35 (void) (Float) v; in testBool() 49 (void) (Float) v; in testInt() 71 (void) (Float) v; in testLong() 81 void testFloat(Float v) { in testFloat() 85 (void) (Float) v; in testFloat() 97 (void) (Float) v; in testDouble() 109 (void) (Float) v; in testCI() 121 (void) (Float) v; in testCLong() 133 (void) (Float) v; in testCFloat() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaCXX/ |
| H A D | overload-decl.cpp | 8 typedef float Float; typedef 9 void f(int, Float); // expected-note {{previous declaration is here}} 11 int f(int, Float); // expected-error {{functions that differ only in their return type cannot be ov… 27 …int g(int, Float); // expected-error {{functions that differ only in their return type cannot be o…
|
| /minix3/external/bsd/llvm/dist/clang/test/ASTMerge/Inputs/ |
| H A D | struct1.c | 2 typedef float Float; typedef 7 Float field2;
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Support/ |
| H A D | ScaledNumber.cpp | 184 APFloat Float(APFloat::x87DoubleExtended, APInt(80, RawBits)); in toStringAPFloat() local 186 Float.toString(Chars, Precision, 0); in toStringAPFloat() 190 static std::string stripTrailingZeros(const std::string &Float) { in stripTrailingZeros() argument 191 size_t NonZero = Float.find_last_not_of('0'); in stripTrailingZeros() 194 if (Float[NonZero] == '.') in stripTrailingZeros() 197 return Float.substr(0, NonZero + 1); in stripTrailingZeros()
|
| /minix3/external/bsd/llvm/dist/clang/test/Index/ |
| H A D | annotate-tokens-cxx0x.cpp | 11 typedef float Float; in test() typedef 13 bool b2 = __is_trivially_constructible(Integer, Float, Bool); in test()
|
| /minix3/external/bsd/llvm/dist/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 133 bool Float, Signed, Void, Poly, Constant, Pointer; member in __anon870a9de20111::Type 142 : Float(false), Signed(false), Void(true), Poly(false), Constant(false), in Type() 147 : TS(TS), Float(false), Signed(false), Void(false), Poly(false), in Type() 166 bool isFloating() const { return Float; } in isFloating() 167 bool isInteger() const { return !Float && !Poly; } in isInteger() 171 bool isFloat() const { return Float && ElementBitwidth == 32; } in isFloat() 172 bool isDouble() const { return Float && ElementBitwidth == 64; } in isDouble() 173 bool isHalf() const { return Float && ElementBitwidth == 16; } in isHalf() 176 bool isShort() const { return !Float && ElementBitwidth == 16; } in isShort() 177 bool isInt() const { return !Float && ElementBitwidth == 32; } in isInt() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeCompletion/ |
| H A D | operator.cpp | 8 typedef float Float; typedef
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/ |
| H A D | property-category-4.m | 110 @property (readonly) float Float; // no warning for this property - a getter is declared in this p… property 111 - (float) Float; method
|
| /minix3/external/bsd/llvm/dist/clang/lib/AST/ |
| H A D | APValue.cpp | 133 case Float: in APValue() 192 else if (Kind == Float) in DestroyDataAndMakeUninit() 227 case Float: in needsCleanup() 279 case Float: in dump() 355 case APValue::Float: in printPretty()
|
| H A D | TypeLoc.cpp | 278 case BuiltinType::Float: in getWrittenTypeSpec()
|
| /minix3/external/bsd/llvm/dist/llvm/test/ExecutionEngine/ |
| H A D | test-interp-vec-loadstore.ll | 117 br i1 %res_double, label %Print_double, label %Float 121 br label %Float 122 Float:
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Intrinsics.h | 77 Void, VarArg, MMX, Metadata, Half, Float, Double, enumerator
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86ScheduleBtVer2.td | 196 defm : JWriteResFpuPair<WriteCvtF2I, JFPU1, 3>; // Float -> Integer. 197 defm : JWriteResFpuPair<WriteCvtI2F, JFPU1, 3>; // Integer -> Float. 198 defm : JWriteResFpuPair<WriteCvtF2F, JFPU1, 3>; // Float -> Float size conversion.
|
| H A D | X86Schedule.td | 94 defm WriteCvtF2I : X86SchedWritePair; // Float -> Integer. 95 defm WriteCvtI2F : X86SchedWritePair; // Integer -> Float. 96 defm WriteCvtF2F : X86SchedWritePair; // Float -> Float size conversion.
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTX.h | 129 Float enumerator
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64Schedule.td | 85 def WriteFCvt : SchedWrite; // Float conversion. 86 def WriteFCopy : SchedWrite; // Float-int register copy.
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | APValue.h | 45 Float, enumerator 183 bool isFloat() const { return Kind == Float; } in isFloat() 412 Kind = Float; in MakeFloat()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Execution.cpp | 57 IMPLEMENT_BINARY_OPERATOR(+, Float); in executeFAddInst() 68 IMPLEMENT_BINARY_OPERATOR(-, Float); in executeFSubInst() 79 IMPLEMENT_BINARY_OPERATOR(*, Float); in executeFMulInst() 90 IMPLEMENT_BINARY_OPERATOR(/, Float); in executeFDivInst() 319 IMPLEMENT_VECTOR_FCMP_T(OP, Float); \ 328 IMPLEMENT_FCMP(==, Float); in executeFCMP_OEQ() 366 MASK_VECTOR_NANS_T(X, Y, Float, FLAG) \ 384 IMPLEMENT_FCMP(!=, Float); in executeFCMP_ONE() 404 IMPLEMENT_FCMP(<=, Float); in executeFCMP_OLE() 418 IMPLEMENT_FCMP(>=, Float); in executeFCMP_OGE() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/Transforms/SLPVectorizer/X86/ |
| H A D | align.ll | 29 ; Float has 4 byte abi alignment on x86_64. We must use the alignmnet of the
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/ |
| H A D | MathExtras.h | 524 inline uint32_t FloatToBits(float Float) { in FloatToBits() argument 529 T.F = Float; in FloatToBits()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTCommon.cpp | 49 case BuiltinType::Float: ID = PREDEF_TYPE_FLOAT_ID; break; in TypeIdxFromBuiltin()
|
| /minix3/external/bsd/llvm/dist/llvm/bindings/go/llvm/ |
| H A D | executionengine.go | 79 func (g GenericValue) Float(t Type) float64 { func
|
| /minix3/external/bsd/llvm/dist/llvm/utils/vim/ |
| H A D | llvm.vim | 103 HiLink llvmFloat Float
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/Sparc/ |
| H A D | SparcCallingConv.td | 52 // parameter array at fixed offsets. Float and double parameters are promoted
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 1814 inline APInt RoundFloatToAPInt(float Float, unsigned width) { in RoundFloatToAPInt() argument 1815 return RoundDoubleToAPInt(double(Float), width); in RoundFloatToAPInt()
|