OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumRows
(Results
1 - 14
of
14
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
MatrixUtils.h
29
/// for CurrentRow = 0..
NumRows
33
unsigned
NumRows
;
57
/// Header of the second loop iterating from 0..
NumRows
.
59
/// Latch of the second loop iterating from 0..
NumRows
.
66
TileInfo(unsigned
NumRows
, unsigned NumColumns, unsigned NumInner,
68
:
NumRows
(
NumRows
), NumColumns(NumColumns), NumInner(NumInner),
76
/// for CurrentRow = 0..
NumRows
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
MatrixBuilder.h
151
Value *ColumnIdx, unsigned
NumRows
) {
155
ColumnIdx->getType(),
NumRows
)),
236
unsigned
NumRows
, Twine const &Name = "") {
243
Value *NumRowsV = B.getIntN(MaxWidth,
NumRows
);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerMatrixIntrinsics.cpp
223
MatrixTy(unsigned
NumRows
, unsigned NumColumns, Type *EltTy)
226
unsigned D = isColumnMajor() ? NumColumns :
NumRows
;
229
EltTy, isColumnMajor() ?
NumRows
: NumColumns)));
339
unsigned
NumRows
;
344
ShapeInfo(unsigned
NumRows
= 0, unsigned NumColumns = 0)
345
:
NumRows
(
NumRows
), NumColumns(NumColumns),
348
ShapeInfo(Value *
NumRows
, Value *NumColumns)
349
: ShapeInfo(cast<ConstantInt>(
NumRows
)->getZExtValue(),
353
return
NumRows
== other.NumRows && NumColumns == other.NumColumns
[
all
...]
LoopInterchange.cpp
260
unsigned
NumRows
= DepMatrix.size();
262
for (unsigned Row = 0; Row <
NumRows
; ++Row) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
MatrixUtils.cpp
68
// for R = 0; R <
NumRows
; R += TileSize
88
CreateLoop(ColBody, ColLatch, B.getInt64(
NumRows
), B.getInt64(TileSize),
/src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp
5195
ConstantInt *
NumRows
;
5202
NumRows
= cast<ConstantInt>(Call.getArgOperand(2));
5211
NumRows
= cast<ConstantInt>(Call.getArgOperand(1));
5219
NumRows
= cast<ConstantInt>(Call.getArgOperand(3));
5227
NumRows
= cast<ConstantInt>(Call.getArgOperand(4));
5253
NumRows
->getZExtValue() * NumColumns->getZExtValue(),
5257
Assert(Stride->getZExtValue() >=
NumRows
->getZExtValue(),
/src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h
3458
unsigned
NumRows
;
3471
unsigned getNumRows() const { return
NumRows
; }
3497
unsigned
NumRows
, unsigned NumColumns,
3500
ID.AddInteger(
NumRows
);
ASTContext.h
1421
QualType getConstantMatrixType(QualType ElementType, unsigned
NumRows
,
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp
2651
QualType Sema::BuildMatrixType(QualType ElementTy, Expr *
NumRows
, Expr *NumCols,
2663
if (
NumRows
->isTypeDependent() || NumCols->isTypeDependent() ||
2664
NumRows
->isValueDependent() || NumCols->isValueDependent())
2665
return Context.getDependentSizedMatrixType(ElementTy,
NumRows
, NumCols,
2668
Optional<llvm::APSInt> ValueRows =
NumRows
->getIntegerConstantExpr(Context);
2672
auto const RowRange =
NumRows
->getSourceRange();
TreeTransform.h
900
QualType RebuildConstantMatrixType(QualType ElementType, unsigned
NumRows
,
14290
QualType ElementType, unsigned
NumRows
, unsigned NumColumns) {
14291
return SemaRef.Context.getConstantMatrixType(ElementType,
NumRows
,
/src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp
4050
QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned
NumRows
,
4053
ConstantMatrixType::Profile(ID, ElementTy,
NumRows
, NumColumns,
4058
assert(ConstantMatrixType::isDimensionValid(
NumRows
) &&
4068
getConstantMatrixType(getCanonicalType(ElementTy),
NumRows
, NumColumns);
4076
ConstantMatrixType(ElementTy,
NumRows
, NumColumns, Canonical);
Type.cpp
311
: MatrixType(tc, matrixType, canonType),
NumRows
(nRows),
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp
3873
llvm::Value *
NumRows
= Builder.getIntN(
3877
Builder.CreateAdd(Builder.CreateMul(ColIdx,
NumRows
), RowIdx);
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h
1917
QualType BuildMatrixType(QualType T, Expr *
NumRows
, Expr *NumColumns,
Completed in 103 milliseconds
Indexes created Sun Sep 20 00:26:38 UTC 2026