/external/sfntly/cpp/src/test/ |
D | hdmx_test.cc | 49 EXPECT_EQ(hdmx_table->MaxWidth(i), HDMX_MAX_WIDTH[i]); in TestReadingHdmxTable() 68 EXPECT_EQ(hdmx_table->MaxWidth(4), -1); in TestReadingHdmxTable() 69 EXPECT_EQ(hdmx_table->MaxWidth(-1), -1); in TestReadingHdmxTable()
|
/external/mdnsresponder/mDNSPosix/ |
D | NetMonitor.c | 506 #define MaxWidth 132 in DisplayResourceRecord() macro 507 char buffer[MaxWidth+8]; in DisplayResourceRecord() 521 case kDNSType_PTR: n += mprintf("%##.*s", MaxWidth - n, rd->name.c); break; in DisplayResourceRecord() 525 while (t < rdend && t[0] && p < buffer+MaxWidth) in DisplayResourceRecord() 528 for (i=1; i<=t[0] && p < buffer+MaxWidth; i++) in DisplayResourceRecord() 545 n += mprintf("%.*s", MaxWidth - n, buffer); in DisplayResourceRecord() 556 n += mprintf("%.*s", MaxWidth - n, b + striplen); in DisplayResourceRecord() 566 while (s < rdend && p < buffer+MaxWidth) in DisplayResourceRecord() 581 n += mprintf("%.*s", MaxWidth - n, buffer); in DisplayResourceRecord()
|
/external/sfntly/cpp/src/sfntly/table/core/ |
D | horizontal_device_metrics_table.h | 54 int32_t MaxWidth(int32_t record_index);
|
D | horizontal_device_metrics_table.cc | 48 int32_t HorizontalDeviceMetricsTable::MaxWidth(int32_t record_index) { in MaxWidth() function in sfntly::HorizontalDeviceMetricsTable
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 1251 unsigned MaxWidth) { in CheckARMBuiltinExclusiveCall() argument 1325 if (Context.getTypeSize(ValType) > MaxWidth) { in CheckARMBuiltinExclusiveCall() 1326 assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate"); in CheckARMBuiltinExclusiveCall() 7061 IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) { in GetValueRange() argument 7065 if (value.getBitWidth() > MaxWidth) in GetValueRange() 7066 value = value.trunc(MaxWidth); in GetValueRange() 7074 unsigned MaxWidth) { in GetValueRange() argument 7076 return GetValueRange(C, result.getInt(), MaxWidth); in GetValueRange() 7079 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth); in GetValueRange() 7081 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth); in GetValueRange() [all …]
|
D | SemaExpr.cpp | 3407 unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth(); in ActOnNumericConstant() local 3408 llvm::APInt ResultVal(MaxWidth, 0); in ActOnNumericConstant()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 3219 auto MaxWidth = 0u; in getVectorElementSize() local 3234 MaxWidth = std::max<unsigned>(MaxWidth, DL->getTypeSizeInBits(Ty)); in getVectorElementSize() 3254 if (!MaxWidth || FoundUnknownInst) in getVectorElementSize() 3258 return MaxWidth; in getVectorElementSize()
|
D | LoopVectorize.cpp | 5328 unsigned MaxWidth = 8; in getSmallestAndWidestTypes() local 5366 MaxWidth = std::max(MaxWidth, in getSmallestAndWidestTypes() 5371 return {MinWidth, MaxWidth}; in getSmallestAndWidestTypes()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 4271 auto MaxWidth = 0u; in getVectorElementSize() local 4286 MaxWidth = std::max<unsigned>(MaxWidth, DL->getTypeSizeInBits(Ty)); in getVectorElementSize() 4306 if (!MaxWidth || FoundUnknownInst) in getVectorElementSize() 4310 return MaxWidth; in getVectorElementSize()
|
D | LoopVectorize.cpp | 5084 unsigned MaxWidth = 8; in getSmallestAndWidestTypes() local 5129 MaxWidth = std::max(MaxWidth, in getSmallestAndWidestTypes() 5134 return {MinWidth, MaxWidth}; in getSmallestAndWidestTypes()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 9367 unsigned MaxWidth);
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 7905 unsigned MaxWidth = (VT.is512BitVector() && !Subtarget.hasBWI() ? 64 : 128); in lowerVectorShuffleAsShift() local 7906 for (int Scale = 2; Scale * VT.getScalarSizeInBits() <= MaxWidth; Scale *= 2) in lowerVectorShuffleAsShift()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 10211 unsigned MaxWidth = ((SizeInBits == 512) && !Subtarget.hasBWI() ? 64 : 128); in matchVectorShuffleAsShift() local 10212 for (int Scale = 2; Scale * ScalarSizeInBits <= MaxWidth; Scale *= 2) in matchVectorShuffleAsShift()
|