Home
last modified time | relevance | path

Searched refs:MaxWidth (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h238 unsigned MaxWidth = std::max(RowIdx->getType()->getScalarSizeInBits(), variable
240 Type *IntTy = IntegerType::get(RowIdx->getType()->getContext(), MaxWidth);
243 Value *NumRowsV = B.getIntN(MaxWidth, NumRows);
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp2328 unsigned MaxWidth) { in CheckARMBuiltinExclusiveCall() argument
2401 if (Context.getTypeSize(ValType) > MaxWidth) { in CheckARMBuiltinExclusiveCall()
2402 assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate"); in CheckARMBuiltinExclusiveCall()
11088 unsigned MaxWidth) { in GetValueRange() argument
11092 if (value.getBitWidth() > MaxWidth) in GetValueRange()
11093 value = value.trunc(MaxWidth); in GetValueRange()
11101 unsigned MaxWidth) { in GetValueRange() argument
11103 return GetValueRange(C, result.getInt(), MaxWidth); in GetValueRange()
11151 return GetValueRange(C, result.Val, GetExprType(E), MaxWidth); in GetExprRange()
11329 L.Width = std::min(L.Width - log2, MaxWidth); in GetExprRange()
[all …]
H A DSemaExpr.cpp3908 unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth(); in ActOnNumericConstant() local
3909 llvm::APInt ResultVal(MaxWidth, 0); in ActOnNumericConstant()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1816 size_t MaxWidth = 13; in getMaxSectionNameWidth() local
1819 MaxWidth = std::max(MaxWidth, Name.size()); in getMaxSectionNameWidth()
1821 return MaxWidth; in getMaxSectionNameWidth()
/freebsd-13.1/sys/dev/hpt27xx/
H A Dhptintf.h464 HPT_U8 MaxWidth; member
/freebsd-13.1/sys/dev/hptnr/
H A Dhptintf.h460 HPT_U8 MaxWidth; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp6258 unsigned MaxWidth = 8; in getSmallestAndWidestTypes() local
6263 MaxWidth = std::max<unsigned>( in getSmallestAndWidestTypes()
6264 MaxWidth, DL.getTypeSizeInBits(T->getScalarType()).getFixedSize()); in getSmallestAndWidestTypes()
6266 return {MinWidth, MaxWidth}; in getSmallestAndWidestTypes()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h12543 unsigned MaxWidth);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12925 unsigned MaxWidth = ((SizeInBits == 512) && !Subtarget.hasBWI() ? 64 : 128); in matchShuffleAsShift() local
12926 for (int Scale = 2; Scale * ScalarSizeInBits <= MaxWidth; Scale *= 2) in matchShuffleAsShift()