OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NumWords
(Results
1 - 8
of
8
) sorted by null
/external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp
75
unsigned
NumWords
= Read(bitc::BlockSizeWidth);
76
if (NumWordsP) *NumWordsP =
NumWords
;
/external/clang/lib/AST/
TemplateBase.cpp
64
unsigned
NumWords
= Value.getNumWords();
65
if (
NumWords
> 1) {
66
void *Mem = Ctx.Allocate(
NumWords
* sizeof(uint64_t));
67
std::memcpy(Mem, Value.getRawData(),
NumWords
* sizeof(uint64_t));
Expr.cpp
630
unsigned
NumWords
= Val.getNumWords();
632
if (
NumWords
> 1) {
633
pVal = new (C) uint64_t[
NumWords
];
634
std::copy(Words, Words +
NumWords
, pVal);
635
} else if (
NumWords
== 1)
[
all
...]
/external/llvm/lib/Support/
APInt.cpp
33
inline static uint64_t* getClearedMemory(unsigned
numWords
) {
34
uint64_t * result = new uint64_t[
numWords
];
36
memset(result, 0,
numWords
* sizeof(uint64_t));
42
inline static uint64_t* getMemory(unsigned
numWords
) {
43
uint64_t * result = new uint64_t[
numWords
];
111
APInt::APInt(unsigned numBits, unsigned
numWords
, const uint64_t bigVal[])
113
initFromArray(makeArrayRef(bigVal,
numWords
));
173
unsigned
NumWords
= getNumWords();
174
for (unsigned i = 0; i <
NumWords
; ++i)
403
unsigned
numWords
= getNumWords()
[
all
...]
/external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp
344
unsigned
NumWords
= 0;
345
if (Stream.EnterSubBlock(BlockID, &
NumWords
))
359
outs() << "
NumWords
=" <<
NumWords
/external/clang/include/clang/AST/
TemplateBase.h
278
unsigned
NumWords
= APInt::getNumWords(Integer.BitWidth);
279
return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal,
NumWords
)),
Expr.h
[
all
...]
/external/clang/lib/Serialization/
ASTReader.cpp
[
all
...]
Completed in 963 milliseconds