Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Entries

31 /// reusing entries.
56 // Entries in the final table, or 0 before layout was called.
57 unsigned Entries;
65 SequenceToOffsetTable() : Entries(0) {}
70 assert(Entries == 0 && "Cannot call add() after layout()");
88 assert(Entries && "Call layout() before size()");
89 return Entries;
94 assert(Entries == 0 && "Can only call layout() once");
98 I->second = Entries;
100 Entries += I->first.size() + 1;
106 assert(Entries && "Call layout() before get()");
118 assert(Entries && "Call layout() before emit()");