Home | History | Annotate | Download | only in Renderscript

Lines Matching defs:StructTypes

209     llvm::SmallVector<llvm::Type*, 16> StructTypes;
210 StructTypes.push_back(VoidPtrTy); // const void *in
211 StructTypes.push_back(VoidPtrTy); // void *out
212 StructTypes.push_back(VoidPtrTy); // const void *usr
213 StructTypes.push_back(Int32Ty); // uint32_t usr_len
214 StructTypes.push_back(Int32Ty); // uint32_t x
215 StructTypes.push_back(Int32Ty); // uint32_t y
216 StructTypes.push_back(Int32Ty); // uint32_t z
217 StructTypes.push_back(Int32Ty); // uint32_t lod
218 StructTypes.push_back(Int32Ty); // enum RsAllocationCubemapFace
219 StructTypes.push_back(llvm::ArrayType::get(Int32Ty, 16)); // uint32_t ar[16]
221 StructTypes.push_back(llvm::PointerType::getUnqual(VoidPtrTy)); // const void **ins
222 StructTypes.push_back(Int32Ty->getPointerTo()); // uint32_t *eStrideIns
225 llvm::StructType::create(StructTypes, "RsForEachStubParamStruct");