Searched refs:UIntTy (Results 1 – 3 of 3) sorted by relevance
/frameworks/rs/rsov/compiler/spirit/ |
D | builder_test.cpp | 80 auto UIntTy = m->getUnsignedIntType(32); in TEST() local 81 auto V3UIntTy = m->getVectorType(UIntTy, 3); in TEST() 85 auto ConstOne = m->getConstant(UIntTy, 1); in TEST() 107 auto ConstZero = m->getConstant(UIntTy, 0); in TEST() 108 auto UIntPtrTy = m->getPointerType(StorageClass::Input, UIntTy); in TEST() 113 auto XValue = b.MakeCompositeExtract(UIntTy, IID, {0}); in TEST() 116 auto YValue = b.MakeCompositeExtract(UIntTy, IID, {1}); in TEST() 123 auto GSizeX = b.MakeLoad(UIntTy, PtrToGSizeX); in TEST() 129 auto Tmp1 = b.MakeIMul(UIntTy, YValue, GSizeX); in TEST() 135 auto GNumX = b.MakeLoad(UIntTy, PtrToGNumX); in TEST() [all …]
|
D | module.cpp | 879 TypeIntInst *UIntTy = getIntType(32, false); in getInvocationId() local 880 TypeVectorInst *V3UIntTy = getVectorType(UIntTy, 3); in getInvocationId() 898 TypeIntInst *UIntTy = getIntType(32, false); in getNumWorkgroups() local 899 TypeVectorInst *V3UIntTy = getVectorType(UIntTy, 3); in getNumWorkgroups()
|
/frameworks/rs/rsov/compiler/ |
D | Wrapper.cpp | 98 TypeIntInst *UIntTy = m->getUnsignedIntType(32); in AddWrapper() local 112 TypeVectorInst *V3UIntTy = m->getVectorType(UIntTy, 3); in AddWrapper() 117 XValue = b.MakeCompositeExtract(UIntTy, IID, {0}); in AddWrapper() 120 YValue = b.MakeCompositeExtract(UIntTy, IID, {1}); in AddWrapper() 123 ZValue = b.MakeCompositeExtract(UIntTy, IID, {2}); in AddWrapper() 127 auto ConstOne = m->getConstant(UIntTy, 1U); in AddWrapper() 131 auto GroupSizeX = b.MakeCompositeExtract(UIntTy, GroupSize, {0}); in AddWrapper() 134 auto GroupSizeY = b.MakeCompositeExtract(UIntTy, GroupSize, {1}); in AddWrapper() 141 auto NumGroupX = b.MakeCompositeExtract(UIntTy, NumGroup, {0}); in AddWrapper() 144 auto NumGroupY = b.MakeCompositeExtract(UIntTy, NumGroup, {1}); in AddWrapper() [all …]
|