HomeSort by relevance Sort by last modified time
    Searched refs:NumWords (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/components/query_parser/
query_parser_unittest.cc 76 TEST_F(QueryParserTest, NumWords) {
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 75 unsigned NumWords = Read(bitc::BlockSizeWidth);
76 if (NumWordsP) *NumWordsP = NumWords;
  /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 291 unsigned NumWords = APInt::getNumWords(Integer.BitWidth);
292 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
Expr.h     [all...]
  /external/llvm/include/llvm/ADT/
BitVector.h 553 void init_words(BitWord *B, unsigned NumWords, bool t) {
554 memset(B, 0 - (int)t, NumWords*sizeof(BitWord));
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 302 uint32_t NumWords = NumBytes >> 2;
304 if (NumWords < 65536)
306 .addImm(NumWords)
310 .addImm(NumWords)
    [all...]
  /external/clang/lib/AST/
Expr.cpp 665 unsigned NumWords = Val.getNumWords();
667 if (NumWords > 1) {
668 pVal = new (C) uint64_t[NumWords];
669 std::copy(Words, Words + NumWords, pVal);
670 } else if (NumWords == 1)
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 34 inline static uint64_t* getClearedMemory(unsigned numWords) {
35 uint64_t * result = new uint64_t[numWords];
37 memset(result, 0, numWords * sizeof(uint64_t));
43 inline static uint64_t* getMemory(unsigned numWords) {
44 uint64_t * result = new uint64_t[numWords];
112 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[])
114 initFromArray(makeArrayRef(bigVal, numWords));
174 unsigned NumWords = getNumWords();
175 for (unsigned i = 0; i < NumWords; ++i)
404 unsigned numWords = getNumWords()
    [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/IR/
Core.cpp 729 unsigned NumWords,
734 makeArrayRef(Words, NumWords))));
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 903 milliseconds