Home
last modified time | relevance | path

Searched refs:mlirTypeIsAIndex (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir-c/
H A DBuiltinTypes.h60 MLIR_CAPI_EXPORTED bool mlirTypeIsAIndex(MlirType type);
/llvm-project-15.0.7/mlir/lib/CAPI/IR/
H A DBuiltinTypes.cpp61 bool mlirTypeIsAIndex(MlirType type) { return unwrap(type).isa<IndexType>(); } in mlirTypeIsAIndex() function
/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRTypes.cpp90 static constexpr IsAFunctionTy isaFunction = mlirTypeIsAIndex;
H A DIRAttributes.cpp263 if (mlirTypeIsAIndex(type) || mlirIntegerTypeIsSignless(type)) in bindDerived()
/llvm-project-15.0.7/mlir/test/CAPI/
H A Dir.c661 if (!mlirTypeIsAIndex(index)) in printBuiltinTypes()