Lines Matching refs:Annot
173 unsigned Annot; in isTexture() local
174 if (findOneNVVMAnnotation(gv, "texture", Annot)) { in isTexture()
175 assert((Annot == 1) && "Unexpected annotation on a texture symbol"); in isTexture()
184 unsigned Annot; in isSurface() local
185 if (findOneNVVMAnnotation(gv, "surface", Annot)) { in isSurface()
186 assert((Annot == 1) && "Unexpected annotation on a surface symbol"); in isSurface()
198 std::vector<unsigned> Annot; in argHasNVVMAnnotation() local
199 if (findAllNVVMAnnotation(Func, Annotation, Annot)) { in argHasNVVMAnnotation()
201 if (is_contained(Annot, BaseOffset + Arg->getArgNo())) { in argHasNVVMAnnotation()
227 unsigned Annot; in isSampler() local
228 if (findOneNVVMAnnotation(gv, AnnotationName, Annot)) { in isSampler()
229 assert((Annot == 1) && "Unexpected annotation on a sampler symbol"); in isSampler()
254 unsigned Annot; in isManaged() local
255 if (findOneNVVMAnnotation(gv, "managed", Annot)) { in isManaged()
256 assert((Annot == 1) && "Unexpected annotation on a managed symbol"); in isManaged()