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

  /external/chromium/chrome/browser/history/
query_parser_unittest.cc 74 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 278 unsigned NumWords = APInt::getNumWords(Integer.BitWidth);
279 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
Expr.h     [all...]
  /external/llvm/include/llvm/ADT/
BitVector.h 547 void init_words(BitWord *B, unsigned NumWords, bool t) {
548 memset(B, 0 - (int)t, NumWords*sizeof(BitWord));
  /external/clang/lib/AST/
Expr.cpp 614 unsigned NumWords = Val.getNumWords();
616 if (NumWords > 1) {
617 pVal = new (C) uint64_t[NumWords];
618 std::copy(Words, Words + NumWords, pVal);
619 } 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/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/IR/
Core.cpp 627 unsigned NumWords,
632 makeArrayRef(Words, NumWords))));
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 2186 milliseconds