Home
last modified time | relevance | path

Searched refs:MaxChars (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp82 void ScopedString::appendString(int Width, int MaxChars, const char *S) { in appendString() argument
87 if (MaxChars >= 0 && NumChars >= MaxChars) in appendString()
H A Dstring_utils.h40 void appendString(int Width, int MaxChars, const char *S);
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp2271 unsigned MaxChars = Features.CPlusPlus? 65536 : Features.C99 ? 4095 : 509; in init() local
2273 if (GetNumStringChars() > MaxChars) in init()
2276 << GetNumStringChars() << MaxChars in init()