Home
last modified time | relevance | path

Searched refs:constInt (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/test/Analysis/
H A Dblocks-no-inline.c29 typedef const int constInt; typedef
30 constInt anotherGlobalConstant = 1;
32 constInt localConstant = 2; in testCapturedConstantsTypedef()
33 static constInt staticConstant = 3; in testCapturedConstantsTypedef()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Davoid-non-const-global-variables.cpp23 const int constInt = 0; variable
25 const int *pointerToConstInt = &constInt;
28 const int *const constPointerToConstInt = &constInt;
30 const int &constReferenceToConstInt = constInt;
/llvm-project-15.0.7/flang/test/Semantics/
H A Ddosemantics02.f9023 INTEGER, PARAMETER :: constInt = 0 local
40 DO CONCURRENT (I = 1 : 10 : constInt)
/llvm-project-15.0.7/mlir/lib/Dialect/Tensor/IR/
H A DTensorTilingInterfaceImpl.cpp116 if (auto constInt = getConstantIntValue(val)) { in bubbleUpPadSlice() local
117 staticIndices.push_back(*constInt); in bubbleUpPadSlice()
H A DTensorOps.cpp1741 if (Optional<int64_t> constInt = in matchAndRewrite() local
1743 newSrcShape[i] = *constInt; in matchAndRewrite()
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-advanced/
H A Dmain.cpp131 const int constInt = 42; in main() local