Searched refs:NumChars (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DStringMatcher.cpp86 unsigned NumChars = FirstNonCommonLetter-CharNo; local
89 if (NumChars == 1) {
99 << ", \"" << Matches[0]->first.substr(CharNo, NumChars) << "\", "
100 << NumChars << ") != 0)\n";
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DNativeFormatting.cpp145 unsigned NumChars = local
152 char *EndPtr = NumberBuffer + NumChars;
160 S.write(NumberBuffer, NumChars);
H A Draw_ostream.cpp475 static raw_ostream &write_padding(raw_ostream &OS, unsigned NumChars) { argument
483 if (NumChars < array_lengthof(Chars))
484 return OS.write(Chars, NumChars);
486 while (NumChars) {
487 unsigned NumToWrite = std::min(NumChars,
490 NumChars -= NumToWrite;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp1207 // (passed in StringBytes, NumChars).
1208 static unsigned guessCharByteSize(const uint8_t *StringBytes, unsigned NumChars, argument
1220 unsigned TrailingNulls = countTrailingNullBytes(StringBytes, NumChars);
1234 unsigned Nulls = countEmbeddedNulls(StringBytes, NumChars);
1235 if (Nulls >= 2 * NumChars / 3 && NumBytes % 4 == 0)
1237 if (Nulls >= NumChars / 3)
1369 const unsigned NumChars = BytesDecoded / CharBytes; local
1370 for (unsigned CharIndex = 0; CharIndex < NumChars; ++CharIndex) {
1373 if (CharIndex + 1 < NumChars || Result->IsTruncated)
/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp79 for (unsigned NumChars = 0;
80 NumChars < MaxSplit && MaxSplitBytes < Text.size();) {
83 NumChars +=

Completed in 191 milliseconds