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

  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 375 unsigned NumWords = Read(bitc::BlockSizeWidth);
379 const unsigned char *const SkipTo = NextChar + NumWords*4;
408 unsigned NumWords = Read(bitc::BlockSizeWidth);
409 if (NumWordsP) *NumWordsP = NumWords;
413 NextChar+NumWords*4 > BitStream->getLastChar())
  /external/chromium/chrome/browser/history/
query_parser_unittest.cc 74 TEST_F(QueryParserTest, NumWords) {
  /external/llvm/include/llvm/ADT/
BitVector.h 400 void init_words(BitWord *B, unsigned NumWords, bool t) {
401 memset(B, 0 - (int)t, NumWords*sizeof(BitWord));
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 344 unsigned NumWords = 0;
345 if (Stream.EnterSubBlock(BlockID, &NumWords))
359 errs() << " NumWords=" << NumWords
  /external/clang/lib/AST/
Expr.cpp 441 unsigned NumWords = Val.getNumWords();
443 if (NumWords > 1) {
444 pVal = new (C) uint64_t[NumWords];
445 std::copy(Words, Words + NumWords, pVal);
446 } else if (NumWords == 1)
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Support/
APInt.cpp 32 inline static uint64_t* getClearedMemory(unsigned numWords) {
33 uint64_t * result = new uint64_t[numWords];
35 memset(result, 0, numWords * sizeof(uint64_t));
41 inline static uint64_t* getMemory(unsigned numWords) {
42 uint64_t * result = new uint64_t[numWords];
110 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[])
112 initFromArray(makeArrayRef(bigVal, numWords));
172 unsigned NumWords = getNumWords();
173 for (unsigned i = 0; i < NumWords; ++i)
402 unsigned numWords = getNumWords()
    [all...]
  /external/llvm/include/llvm-c/
Core.h 574 unsigned NumWords,
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/llvm/lib/VMCore/
Core.cpp 569 unsigned NumWords,
574 makeArrayRef(Words, NumWords))));
    [all...]

Completed in 583 milliseconds