Home | History | Annotate | Download | only in Sema

Lines Matching defs:FieldWidth

423     const size_t FieldWidth = computeFieldWidth(FS);
431 Size += std::max(FieldWidth, (size_t)1);
443 Size += std::max(FieldWidth, Precision);
454 Size += std::max(FieldWidth, 1 /* integer part */ +
463 std::max(FieldWidth,
473 std::max(FieldWidth,
482 Size += FieldWidth;
487 Size += std::max(FieldWidth, 2 /* leading 0x */ + Precision);
537 size_t FieldWidth = 0;
539 FieldWidth = FW.getConstantAmount();
540 return FieldWidth;
11657 unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
11683 ED->getNumPositiveBits() == FieldWidth) {
11704 if (BitsNeeded > FieldWidth) {
11725 if (OriginalWidth <= FieldWidth)
11729 llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
11739 if (FieldWidth == 1 && Value == 1)