Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h246 unsigned MaxWidth = std::max(RowIdx->getType()->getScalarSizeInBits(), variable
248 Type *IntTy = IntegerType::get(RowIdx->getType()->getContext(), MaxWidth);
251 Value *NumRowsV = B.getIntN(MaxWidth, NumRows);
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp3428 unsigned MaxWidth) { in CheckARMBuiltinExclusiveCall() argument
3501 if (Context.getTypeSize(ValType) > MaxWidth) { in CheckARMBuiltinExclusiveCall()
3502 assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate"); in CheckARMBuiltinExclusiveCall()
14191 unsigned MaxWidth) { in GetValueRange() argument
14195 if (value.getBitWidth() > MaxWidth) in GetValueRange()
14196 value = value.trunc(MaxWidth); in GetValueRange()
14204 unsigned MaxWidth) { in GetValueRange() argument
14206 return GetValueRange(C, result.getInt(), MaxWidth); in GetValueRange()
14254 return GetValueRange(C, result.Val, GetExprType(E), MaxWidth); in GetExprRange()
14431 L.Width = std::min(L.Width - log2, MaxWidth); in GetExprRange()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp2585 size_t MaxWidth = 13; in getMaxSectionNameWidth() local
2588 MaxWidth = std::max(MaxWidth, Name.size()); in getMaxSectionNameWidth()
2590 return MaxWidth; in getMaxSectionNameWidth()
/freebsd-14.2/sys/dev/hptnr/
H A Dhptintf.h458 HPT_U8 MaxWidth; member
/freebsd-14.2/sys/dev/hpt27xx/
H A Dhptintf.h462 HPT_U8 MaxWidth; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5260 unsigned MaxWidth = 8; in getSmallestAndWidestTypes() local
5268 MaxWidth = -1U; in getSmallestAndWidestTypes()
5273 MaxWidth = std::min<unsigned>( in getSmallestAndWidestTypes()
5274 MaxWidth, std::min<unsigned>( in getSmallestAndWidestTypes()
5282 MaxWidth = std::max<unsigned>( in getSmallestAndWidestTypes()
5283 MaxWidth, DL.getTypeSizeInBits(T->getScalarType()).getFixedValue()); in getSmallestAndWidestTypes()
5286 return {MinWidth, MaxWidth}; in getSmallestAndWidestTypes()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp2338 unsigned MaxWidth = std::max(Width0, Width1); in typeExtendToWider() local
2347 MVT WideETy0 = getScalarWithWidth(ElemTy0, MaxWidth); in typeExtendToWider()
2348 MVT WideETy1 = getScalarWithWidth(ElemTy1, MaxWidth); in typeExtendToWider()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h13884 unsigned MaxWidth);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp11555 unsigned MaxWidth = ((SizeInBits == 512) && !Subtarget.hasBWI() ? 64 : 128); in matchShuffleAsShift() local
11556 for (int Scale = 2; Scale * ScalarSizeInBits <= MaxWidth; Scale *= 2) in matchShuffleAsShift()