Searched refs:mFP32Ty (Results 1 - 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
H A Dbuilder.cpp49 mFP32Ty = Type::getFloatTy(pJitMgr->mContext);
59 mV4FP32Ty = StructType::get(pJitMgr->mContext, std::vector<Type*>(4, mFP32Ty), false); // vector4 float type (represented as structure)
66 mSimdFP32Ty = VectorType::get(mFP32Ty, mVWidth);
H A Dbuilder.h58 Type* mFP32Ty; member in struct:SwrJit::Builder
H A DJitManager.h166 llvm::Type* mFP32Ty; member in struct:JitManager
H A Dfetch_jit.cpp117 pVtxOut = BITCAST(pVtxOut, PointerType::get(VectorType::get(mFP32Ty, mVWidth), 0));
249 Constant* uwvec = UndefValue::get(VectorType::get(mFP32Ty, 4));
339 case 32: vptr = BITCAST(pointer, PointerType::get(VectorType::get(mFP32Ty, 4), 0)); break;
353 vec = UI_TO_FP(vec, VectorType::get(mFP32Ty, 4));
354 vec = FMUL(vec, ConstantVector::get(std::vector<Constant*>(4, ConstantFP::get(mFP32Ty, 1.0 / 255.0))));
357 vec = UI_TO_FP(vec, VectorType::get(mFP32Ty, 4));
358 vec = FMUL(vec, ConstantVector::get(std::vector<Constant*>(4, ConstantFP::get(mFP32Ty, 1.0 / 65535.0))));
369 vec = SI_TO_FP(vec, VectorType::get(mFP32Ty, 4));
370 vec = FMUL(vec, ConstantVector::get(std::vector<Constant*>(4, ConstantFP::get(mFP32Ty, 1.0 / 128.0))));
373 vec = SI_TO_FP(vec, VectorType::get(mFP32Ty,
[all...]
H A DJitManager.cpp132 mFP32Ty = Type::getFloatTy(mContext); // float type
136 mV4FP32Ty = StructType::get(mContext, std::vector<Type*>(4, mFP32Ty), false); // vector4 float type (represented as structure)
147 mSimtFP32Ty = VectorType::get(mFP32Ty, mVWidth);
H A Dbuilder_misc.cpp231 return UndefValue::get(VectorType::get(mFP32Ty, mVWidth));
385 mask = BITCAST(mask,VectorType::get(mFP32Ty,mVWidth));
569 loadAddress = BITCAST(loadAddress,PointerType::get(mFP32Ty,0));
880 FunctionType* pFuncTy = FunctionType::get(mFP32Ty, mInt16Ty);
913 FunctionType* pFuncTy = FunctionType::get(mInt16Ty, mFP32Ty);
/external/mesa3d/src/gallium/drivers/swr/
H A Dswr_shader.cpp484 UI_TO_FP(LOAD(pPS, {0, SWR_PS_CONTEXT_frontFace}), mFP32Ty);

Completed in 412 milliseconds