Lines Matching defs:FieldWidth
927 const size_t FieldWidth = computeFieldWidth(FS);
935 Size += std::max(FieldWidth, (size_t)1);
947 Size += std::max(FieldWidth, Precision);
963 Size += std::max(FieldWidth, 1 /* integer part */ +
972 std::max(FieldWidth,
982 std::max(FieldWidth,
991 Size += FieldWidth;
1000 Size += std::max(FieldWidth, 2 /* leading 0x */ + Precision);
1027 // (prefix_width <= FieldWidth - formatted_length) holds,
1062 size_t FieldWidth = 0;
1064 FieldWidth = FW.getConstantAmount();
1065 return FieldWidth;
10635 unsigned FieldWidth = Bitfield->getBitWidthValue();
10661 ED->getNumPositiveBits() == FieldWidth) {
10682 if (BitsNeeded > FieldWidth) {
10702 bool OneAssignedToOneBitBitfield = FieldWidth == 1 && Value == 1;
10715 if (OriginalWidth <= FieldWidth)
10719 llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);