Home
last modified time | relevance | path

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

/external/sfntly/cpp/src/test/
Dhdmx_test.cc49 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/
DNetMonitor.c506 #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/
Dhorizontal_device_metrics_table.h54 int32_t MaxWidth(int32_t record_index);
Dhorizontal_device_metrics_table.cc48 int32_t HorizontalDeviceMetricsTable::MaxWidth(int32_t record_index) { in MaxWidth() function in sfntly::HorizontalDeviceMetricsTable
/external/clang/lib/Sema/
DSemaChecking.cpp1251 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 …]
DSemaExpr.cpp3407 unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth(); in ActOnNumericConstant() local
3408 llvm::APInt ResultVal(MaxWidth, 0); in ActOnNumericConstant()
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp3219 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()
DLoopVectorize.cpp5328 unsigned MaxWidth = 8; in getSmallestAndWidestTypes() local
5366 MaxWidth = std::max(MaxWidth, in getSmallestAndWidestTypes()
5371 return {MinWidth, MaxWidth}; in getSmallestAndWidestTypes()
/external/clang/include/clang/Sema/
DSema.h9367 unsigned MaxWidth);
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp7905 unsigned MaxWidth = (VT.is512BitVector() && !Subtarget.hasBWI() ? 64 : 128); in lowerVectorShuffleAsShift() local
7906 for (int Scale = 2; Scale * VT.getScalarSizeInBits() <= MaxWidth; Scale *= 2) in lowerVectorShuffleAsShift()