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

  /external/chromium/chrome/browser/history/
query_parser_unittest.cc 74 TEST_F(QueryParserTest, NumWords) {
  /external/chromium_org/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 554 void init_words(BitWord *B, unsigned NumWords, bool t) {
555 memset(B, 0 - (int)t, NumWords*sizeof(BitWord));
  /external/clang/lib/AST/
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/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/IR/
Core.cpp 633 unsigned NumWords,
638 makeArrayRef(Words, NumWords))));
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 523 milliseconds