HomeSort by relevance Sort by last modified time
    Searched refs:getFloatTy (Results 1 - 25 of 34) sorted by null

1 2

  /external/llvm/lib/IR/
ValueTypes.cpp 188 case MVT::f32: return Type::getFloatTy(Context);
223 case MVT::v2f32: return VectorType::get(Type::getFloatTy(Context), 2);
224 case MVT::v4f32: return VectorType::get(Type::getFloatTy(Context), 4);
225 case MVT::v8f32: return VectorType::get(Type::getFloatTy(Context), 8);
226 case MVT::v16f32: return VectorType::get(Type::getFloatTy(Context), 16);
AutoUpgrade.cpp 35 if (Arg0Type != VectorType::get(Type::getFloatTy(F->getContext()), 4))
349 if (Arg0->getType() != VectorType::get(Type::getFloatTy(C), 4))
Type.cpp 30 case FloatTyID : return getFloatTy(C);
230 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; }
253 return getFloatTy(C)->getPointerTo(AS);
Function.cpp 607 case IITDescriptor::Float: return Type::getFloatTy(Context);
  /external/llvm/unittests/IR/
PatternMatch.cpp 74 Type *FltTy = Builder.getFloatTy();
113 Type *FltTy = Builder.getFloatTy();
190 Type *FltTy = Builder.getFloatTy();
229 Type *FltTy = Builder.getFloatTy();
TypeBuilderTest.cpp 58 EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<float, false>::get(getGlobalContext())));
61 EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<types::ieee_float, true>::get(getGlobalContext())));
62 EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<types::ieee_float, false>::get(getGlobalContext())));
IRBuilderTest.cpp 33 GV = new GlobalVariable(*M, Type::getFloatTy(getGlobalContext()), true,
ConstantsTest.cpp 171 Type *FloatTy = Type::getFloatTy(getGlobalContext());
InstructionsTest.cpp 128 Type *FloatTy = Type::getFloatTy(C);
  /art/compiler/llvm/
intrinsic_helper.cc 77 return irb.getFloatTy();
ir_builder.h 344 return getFloatTy();
  /external/llvm/include/llvm/IR/
TypeBuilder.h 191 return Type::getFloatTy(C);
206 static Type *get(LLVMContext& C) { return Type::getFloatTy(C); }
MDBuilder.h 49 Value *Op = ConstantFP::get(Type::getFloatTy(Context), Accuracy);
Type.h 384 static Type *getFloatTy(LLVMContext &C);
IRBuilder.h 254 Type *getFloatTy() {
255 return Type::getFloatTy(Context);
    [all...]
  /external/llvm/lib/Target/R600/
R600TextureIntrinsicsReplacer.cpp 216 FloatType = Type::getFloatTy(Ctx);
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 45 Type::getFloatTy(M.getContext()));
325 Type::getFloatTy(CI->getContext()));
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 280 return llvm::Type::getFloatTy(VMContext);
TargetInfo.cpp     [all...]
  /art/compiler/llvm/generated/
art_module.cc 314 FuncTy_33_args.push_back(Type::getFloatTy(mod->getContext()));
321 FuncTy_34_args.push_back(Type::getFloatTy(mod->getContext()));
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 93 res = irb_->getFloatTy();
617 ::llvm::Value* res = irb_->CreateFPTrunc(src, irb_->getFloatTy());
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 628 TYPEKEYWORD("float", Type::getFloatTy(Context));
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 254 case 5: t = Type::getFloatTy(Context); break;

Completed in 3341 milliseconds

1 2