Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DEncoding.h62 unsigned TotalWidth = 0; in columnWidthWithTabs() local
67 return TotalWidth + columnWidth(Tail, Encoding); in columnWidthWithTabs()
68 TotalWidth += columnWidth(Tail.substr(0, TabPos), Encoding); in columnWidthWithTabs()
70 TotalWidth += TabWidth - (TotalWidth + StartColumn) % TabWidth; in columnWidthWithTabs()
H A DFormatToken.cpp287 Format.TotalWidth = Columns - 1; // Width of the N-1 spaces. in precomputeFormattingInfos()
290 Format.TotalWidth += Format.ColumnSizes[i]; in precomputeFormattingInfos()
304 if (Format.TotalWidth > Style.ColumnLimit && Columns > 1) in precomputeFormattingInfos()
315 if (Format.TotalWidth <= RemainingCharacters || Format.Columns == 1) { in getColumnFormat()
H A DFormatToken.h1004 unsigned TotalWidth; member
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp1117 const unsigned TotalWidth = MemVT.getSizeInBits(); in tryLoadVector() local
1124 const unsigned FromTypeWidth = TotalWidth / getLoadStoreVectorNumElts(N); in tryLoadVector()
1128 FromTypeWidth <= 128 && TotalWidth <= 256 && "Invalid width for load"); in tryLoadVector()
1180 const unsigned TotalWidth = LoadedVT.getSizeInBits(); in tryLDG() local
1194 const unsigned FromTypeWidth = TotalWidth / NumElts; in tryLDG()
1199 FromTypeWidth <= 128 && TotalWidth <= 256 && "Invalid width for load"); in tryLDG()
1378 const unsigned TotalWidth = StoreVT.getSimpleVT().getSizeInBits(); in tryStoreVector() local
1386 const unsigned ToTypeWidth = TotalWidth / NumElts; in tryStoreVector()
1389 TotalWidth <= 256 && "Invalid width for store"); in tryStoreVector()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h889 static constexpr storage_type TotalWidth = 0 variable
893 static_assert(TotalWidth <= StorageBitSize, "Too short type for FPOptions");