Lines Matching defs:FieldWidth
932 const size_t FieldWidth = computeFieldWidth(FS);
940 Size += std::max(FieldWidth, (size_t)1);
952 Size += std::max(FieldWidth, Precision);
968 Size += std::max(FieldWidth, 1 /* integer part */ +
977 std::max(FieldWidth,
987 std::max(FieldWidth,
996 Size += FieldWidth;
1005 Size += std::max(FieldWidth, 2 /* leading 0x */ + Precision);
1032 // (prefix_width <= FieldWidth - formatted_length) holds,
1067 size_t FieldWidth = 0;
1069 FieldWidth = FW.getConstantAmount();
1070 return FieldWidth;
10259 unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
10285 ED->getNumPositiveBits() == FieldWidth) {
10306 if (BitsNeeded > FieldWidth) {
10326 bool OneAssignedToOneBitBitfield = FieldWidth == 1 && Value == 1;
10339 if (OriginalWidth <= FieldWidth)
10343 llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);