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

  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 185 // CurCodeSize - This is the declared size of code values used for the current
187 unsigned CurCodeSize;
213 CurCodeSize = 2;
223 CurCodeSize = 2;
255 unsigned getAbbrevIDWidth() const { return CurCodeSize; }
458 return Read(CurCodeSize);
509 CurCodeSize = BlockScope.back().PrevCodeSize;
BitstreamWriter.h 34 /// CurCodeSize - This is the declared size of code values used for the
36 unsigned CurCodeSize;
97 : Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {}
189 Emit(Val, CurCodeSize);
219 unsigned OldCodeSize = CurCodeSize;
224 CurCodeSize = CodeLen;
265 CurCodeSize = B.PrevCodeSize;
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 25 CurCodeSize = RHS.CurCodeSize;
60 BlockScope.push_back(Block(CurCodeSize));
73 CurCodeSize = ReadVBR(bitc::CodeLenWidth);
79 if (CurCodeSize == 0 || AtEndOfStream())

Completed in 80 milliseconds