Lines Matching refs:GL

61 namespace GL = SPIRV::GLSLExtInst;
232 GL::GLSLExtInst GLInst) const;
420 return selectExtInst(ResVReg, ResType, I, CL::s_min, GL::SMin); in spvSelect()
422 return selectExtInst(ResVReg, ResType, I, CL::u_min, GL::UMin); in spvSelect()
425 return selectExtInst(ResVReg, ResType, I, CL::s_max, GL::SMax); in spvSelect()
427 return selectExtInst(ResVReg, ResType, I, CL::u_max, GL::UMax); in spvSelect()
430 return selectExtInst(ResVReg, ResType, I, CL::fma, GL::Fma); in spvSelect()
433 return selectExtInst(ResVReg, ResType, I, CL::pow, GL::Pow); in spvSelect()
438 return selectExtInst(ResVReg, ResType, I, CL::exp, GL::Exp); in spvSelect()
440 return selectExtInst(ResVReg, ResType, I, CL::exp2, GL::Exp2); in spvSelect()
443 return selectExtInst(ResVReg, ResType, I, CL::log, GL::Log); in spvSelect()
445 return selectExtInst(ResVReg, ResType, I, CL::log2, GL::Log2); in spvSelect()
450 return selectExtInst(ResVReg, ResType, I, CL::fabs, GL::FAbs); in spvSelect()
452 return selectExtInst(ResVReg, ResType, I, CL::s_abs, GL::SAbs); in spvSelect()
456 return selectExtInst(ResVReg, ResType, I, CL::fmin, GL::NMin); in spvSelect()
459 return selectExtInst(ResVReg, ResType, I, CL::fmax, GL::NMax); in spvSelect()
465 return selectExtInst(ResVReg, ResType, I, CL::ceil, GL::Ceil); in spvSelect()
467 return selectExtInst(ResVReg, ResType, I, CL::floor, GL::Floor); in spvSelect()
470 return selectExtInst(ResVReg, ResType, I, CL::cos, GL::Cos); in spvSelect()
472 return selectExtInst(ResVReg, ResType, I, CL::sin, GL::Sin); in spvSelect()
474 return selectExtInst(ResVReg, ResType, I, CL::tan, GL::Tan); in spvSelect()
476 return selectExtInst(ResVReg, ResType, I, CL::acos, GL::Acos); in spvSelect()
478 return selectExtInst(ResVReg, ResType, I, CL::asin, GL::Asin); in spvSelect()
480 return selectExtInst(ResVReg, ResType, I, CL::atan, GL::Atan); in spvSelect()
482 return selectExtInst(ResVReg, ResType, I, CL::cosh, GL::Cosh); in spvSelect()
484 return selectExtInst(ResVReg, ResType, I, CL::sinh, GL::Sinh); in spvSelect()
486 return selectExtInst(ResVReg, ResType, I, CL::tanh, GL::Tanh); in spvSelect()
489 return selectExtInst(ResVReg, ResType, I, CL::sqrt, GL::Sqrt); in spvSelect()
499 return selectExtInst(ResVReg, ResType, I, CL::round, GL::Round); in spvSelect()
501 return selectExtInst(ResVReg, ResType, I, CL::rint, GL::RoundEven); in spvSelect()
503 return selectExtInst(ResVReg, ResType, I, CL::trunc, GL::Trunc); in spvSelect()
506 return selectExtInst(ResVReg, ResType, I, CL::rint, GL::RoundEven); in spvSelect()
629 GL::GLSLExtInst GLInst) const { in selectExtInst()
1326 .addImm(GL::FMix) in selectFmix()
1345 .addImm(GL::InverseSqrt) in selectRsqrt()
2319 .addImm(GL::Log2) in selectLog10()