OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumWords
(Results
1 - 20
of
20
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
HashTable.cpp
26
uint32_t
NumWords
;
27
if (auto EC = Stream.readInteger(
NumWords
))
33
for (uint32_t I = 0; I !=
NumWords
; ++I) {
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
BitVector.h
482
unsigned
NumWords
= Bits.size();
483
return std::equal(Bits.begin(), Bits.begin() +
NumWords
, RHS.Bits.begin());
566
unsigned
NumWords
= Bits.size();
567
assert(
NumWords
>= 1);
600
for (unsigned I = 0; I <
NumWords
- 1; ++I) {
605
Bits[
NumWords
- 1] >>= BitDistance;
615
unsigned
NumWords
= Bits.size();
616
assert(
NumWords
>= 1);
650
for (int I =
NumWords
- 1; I > 0; --I) {
714
/// most significant at Bits[
NumWords
-1]. A logical shift left, however
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
TemplateBase.cpp
167
unsigned
NumWords
= Value.getNumWords();
168
if (
NumWords
> 1) {
169
void *Mem = Ctx.Allocate(
NumWords
* sizeof(uint64_t));
170
std::memcpy(Mem, Value.getRawData(),
NumWords
* sizeof(uint64_t));
Expr.cpp
804
unsigned
NumWords
= Val.getNumWords();
806
if (
NumWords
> 1) {
807
pVal = new (C) uint64_t[
NumWords
];
808
std::copy(Words, Words +
NumWords
, pVal);
809
} else if (
NumWords
== 1)
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.h
60
static unsigned constexpr
NumWords
= Capacity/WordWidth;
61
static_assert(
NumWords
*WordWidth == Capacity,
78
std::memset(Words.data(), 0,
NumWords
*sizeof(WordType));
97
for (unsigned i = 0; i !=
NumWords
; ++i)
157
for (unsigned i = SkipWords; i !=
NumWords
; ++i) {
186
std::array<WordType,
NumWords
> Words;
CodeEmitterGen.cpp
477
int
NumWords
= APInt::getNumWords(BitWidth);
485
<<
NumWords
<< "], " << NumBytes << ");\n"
/src/external/apache2/llvm/dist/llvm/lib/Target/M68k/Disassembler/
M68kDisassembler.cpp
101
unsigned
numWords
() const {
253
for (unsigned I = 0, E =
numWords
(); I < E; ++I)
261
unsigned
NumWords
=
numWords
();
262
M68kInstructionBuffer MaskBuffer(Mask.begin(), Mask.begin() +
NumWords
);
263
M68kInstructionBuffer ValueBuffer(Value.begin(), Value.begin() +
NumWords
);
/src/external/apache2/llvm/dist/clang/include/clang/AST/
TemplateBase.h
321
unsigned
NumWords
= APInt::getNumWords(Integer.BitWidth);
322
return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal,
NumWords
)),
Expr.h
1457
unsigned
NumWords
= llvm::APInt::getNumWords(BitWidth);
1458
if (
NumWords
> 1)
1459
return llvm::APInt(BitWidth,
NumWords
, pVal);
/src/external/apache2/llvm/dist/llvm/lib/Bitstream/Reader/
BitstreamReader.cpp
50
word_t
NumWords
= MaybeNum.get();
52
*NumWordsP =
NumWords
;
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeAnalyzer.cpp
765
unsigned
NumWords
= 0;
766
if (Error Err = Stream.EnterSubBlock(BlockID, &
NumWords
))
783
O->OS << "
NumWords
=" <<
NumWords
MetadataLoader.cpp
1397
const size_t
NumWords
= Record.size() - 3;
1398
Value = readWideAPInt(makeArrayRef(&Record[3],
NumWords
), BitWidth);
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMFrameLowering.cpp
608
uint32_t
NumWords
= NumBytes >> 2;
610
if (
NumWords
< 65536)
612
.addImm(
NumWords
)
617
.addImm(
NumWords
)
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonLoopIdiomRecognition.cpp
2282
Value *
NumWords
= Expander.expandCodeFor(NumWordsS, Int32Ty,
2284
if (Instruction *In = dyn_cast<Instruction>(
NumWords
))
2286
NumWords
= Simp;
2294
NewCall = CondBuilder.CreateCall(Fn, {Op0, Op1,
NumWords
});
HexagonISelLoweringHVX.cpp
511
unsigned
NumWords
= Words.size();
514
for (unsigned i = 0; i !=
NumWords
&& IsSplat; ++i) {
625
for (unsigned i = 0; i !=
NumWords
/2; ++i) {
629
{HalfV1, Words[i+
NumWords
/2]});
/src/external/apache2/llvm/dist/llvm/lib/Support/
APInt.cpp
37
inline static uint64_t* getClearedMemory(unsigned
numWords
) {
38
uint64_t *result = new uint64_t[
numWords
];
39
memset(result, 0,
numWords
* sizeof(uint64_t));
45
inline static uint64_t* getMemory(unsigned
numWords
) {
46
return new uint64_t[
numWords
];
113
APInt::APInt(unsigned numBits, unsigned
numWords
, const uint64_t bigVal[])
115
initFromArray(makeArrayRef(bigVal,
numWords
));
167
unsigned
NumWords
= getNumWords();
168
for (unsigned i = 0; i <
NumWords
; ++i)
265
unsigned
NumWords
= getNumWords()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp
1299
uint64_t
NumWords
= NumBytes >> 4;
1311
uint32_t LowNumWords =
NumWords
& 0xFFFF;
1318
if ((
NumWords
& 0xFFFF0000) != 0) {
1321
.addImm((
NumWords
& 0xFFFF0000) >> 16) // High half
1329
.addImm(
NumWords
)
/src/external/apache2/llvm/dist/llvm/include/llvm-c/
Core.h
1941
unsigned
NumWords
,
/src/external/apache2/llvm/dist/llvm/lib/IR/
Core.cpp
1357
unsigned
NumWords
,
1362
makeArrayRef(Words,
NumWords
))));
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
1613
unsigned
NumWords
= A.getActiveWords();
1615
for (unsigned i = 0; i <
NumWords
; i++)
Completed in 101 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026