OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumChars
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/TableGen/
StringMatcher.cpp
86
unsigned
NumChars
= FirstNonCommonLetter-CharNo;
89
if (
NumChars
== 1) {
99
<< ", \"" << Matches[0]->first.substr(CharNo,
NumChars
) << "\", "
100
<<
NumChars
<< ") != 0)\n";
/src/external/apache2/llvm/dist/llvm/lib/Support/
NativeFormatting.cpp
144
unsigned
NumChars
=
151
char *EndPtr = NumberBuffer +
NumChars
;
159
S.write(NumberBuffer,
NumChars
);
raw_ostream.cpp
476
static raw_ostream &write_padding(raw_ostream &OS, unsigned
NumChars
) {
484
if (
NumChars
< array_lengthof(Chars))
485
return OS.write(Chars,
NumChars
);
487
while (
NumChars
) {
488
unsigned NumToWrite = std::min(
NumChars
,
491
NumChars
-= NumToWrite;
/src/external/apache2/llvm/dist/llvm/lib/Demangle/
MicrosoftDemangle.cpp
1207
// (passed in StringBytes,
NumChars
).
1208
static unsigned guessCharByteSize(const uint8_t *StringBytes, unsigned
NumChars
,
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;
1370
for (unsigned CharIndex = 0; CharIndex <
NumChars
; ++CharIndex) {
1373
if (CharIndex + 1 <
NumChars
|| Result->IsTruncated)
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp
138
/// Gets an llvm type of size
NumChars
and alignment 1.
139
llvm::Type *getByteArrayType(CharUnits
NumChars
) {
140
assert(!
NumChars
.isZero() && "Empty byte arrays aren't allowed.");
142
return
NumChars
== CharUnits::One() ? Type :
143
(llvm::Type *)llvm::ArrayType::get(Type,
NumChars
.getQuantity());
/src/external/apache2/llvm/dist/clang/lib/Format/
BreakableToken.cpp
81
for (unsigned
NumChars
= 0;
82
NumChars
< MaxSplit && MaxSplitBytes < Text.size();) {
85
NumChars
+=
/src/external/apache2/llvm/dist/clang/utils/TableGen/
SveEmitter.cpp
859
unsigned
NumChars
= End - Pos + 1;
860
assert(
NumChars
== 3 && "Unexpected template argument");
888
Ret.replace(Pos,
NumChars
, TypeCode + utostr(T.getElementSizeInBits()));
Completed in 21 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026