HomeSort by: relevance | last modified time | path
    Searched refs:MaxWidth (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
MatrixBuilder.h 238 unsigned MaxWidth = std::max(RowIdx->getType()->getScalarSizeInBits(),
240 Type *IntTy = IntegerType::get(RowIdx->getType()->getContext(), MaxWidth);
243 Value *NumRowsV = B.getIntN(MaxWidth, NumRows);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 2324 unsigned MaxWidth) {
2397 if (Context.getTypeSize(ValType) > MaxWidth) {
2398 assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate");
10815 unsigned MaxWidth) {
10819 if (value.getBitWidth() > MaxWidth)
10820 value = value.trunc(MaxWidth);
10828 unsigned MaxWidth) {
10830 return GetValueRange(C, result.getInt(), MaxWidth);
10833 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
10835 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
    [all...]
SemaExpr.cpp 3875 unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth();
3876 llvm::APInt ResultVal(MaxWidth, 0);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
llvm-objdump.cpp 1735 size_t MaxWidth = 13;
1738 MaxWidth = std::max(MaxWidth, Name.size());
1740 return MaxWidth;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 6221 unsigned MaxWidth = 8;
6271 MaxWidth = std::max(MaxWidth,
6276 return {MinWidth, MaxWidth};
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 12442 unsigned MaxWidth);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 12889 unsigned MaxWidth = ((SizeInBits == 512) && !Subtarget.hasBWI() ? 64 : 128);
12890 for (int Scale = 2; Scale * ScalarSizeInBits <= MaxWidth; Scale *= 2)
    [all...]

Completed in 130 milliseconds