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

  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
39 unsigned CurCodeSize;
86 : Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {}
97 unsigned GetAbbrevIDWidth() const { return CurCodeSize; }
183 Emit(Val, CurCodeSize);
213 unsigned OldCodeSize = CurCodeSize;
218 CurCodeSize = CodeLen;
250 CurCodeSize = B.PrevCodeSize;
BitstreamReader.h 416 unsigned CurCodeSize = 2;
441 CurCodeSize = 2;
459 unsigned getAbbrevIDWidth() const { return CurCodeSize; }
514 return Read(CurCodeSize);
563 CurCodeSize = BlockScope.back().PrevCodeSize;
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamWriter.h 33 /// CurCodeSize - This is the declared size of code values used for the
35 unsigned CurCodeSize;
64 : Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {}
164 Emit(Val, CurCodeSize);
203 unsigned OldCodeSize = CurCodeSize;
208 CurCodeSize = CodeLen;
249 CurCodeSize = B.PrevCodeSize;
BitstreamReader.h 135 // CurCodeSize - This is the declared size of code values used for the current
137 unsigned CurCodeSize;
163 CurCodeSize = 2;
174 CurCodeSize = 2;
188 CurCodeSize = RHS.CurCodeSize;
226 unsigned GetAbbrevIDWidth() const { return CurCodeSize; }
354 return Read(CurCodeSize);
392 BlockScope.push_back(Block(CurCodeSize));
406 CurCodeSize = ReadVBR(bitc::CodeLenWidth)
    [all...]

Completed in 59 milliseconds