Home | History | Annotate | Download | only in lib

Lines Matching refs:table

32 // Identifies stream data as an encode table (and its endianity)
153 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source;
193 // The Encode mapper stores the encoding in a local hash table (EncodeTable)
194 // This table is shared (and reference counted) between the encoder and
198 // EncodeTable is generated the same table may by used to decode the machine
203 // we will use the encoding table generated during the encode step in the
293 EncodeTable<A> *table = new EncodeTable<A>(0);
294 bool r = table->Read(strm, source);
295 return r ? new EncodeMapper(table->flags(), type, table) : 0;
313 explicit EncodeMapper(uint32 flags, EncodeType type, EncodeTable<A> *table)
314 : ref_count_(1), flags_(flags), type_(type), table_(table) {}