HomeSort by relevance Sort by last modified time
    Searched refs:mFP32Ty (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
builder.cpp 49 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);
builder.h 58 Type* mFP32Ty;
JitManager.h 166 llvm::Type* mFP32Ty;
fetch_jit.cpp 117 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, 4))
    [all...]
JitManager.cpp 132 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);
builder_misc.cpp 231 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)
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_shader.cpp 484 UI_TO_FP(LOAD(pPS, {0, SWR_PS_CONTEXT_frontFace}), mFP32Ty);

Completed in 2414 milliseconds