Lines Matching full:custom_code_table_
555 std::auto_ptr<VCDiffCodeTableData> custom_code_table_;
633 custom_code_table_.reset();
759 custom_code_table_.reset(new struct VCDiffCodeTableData);
760 memset(custom_code_table_.get(), 0, sizeof(struct VCDiffCodeTableData));
778 sizeof(*custom_code_table_));
787 if (!custom_code_table_.get()) {
789 " but custom_code_table_ is NULL" << VCD_ENDL;
798 if (custom_code_table_string_.length() < sizeof(*custom_code_table_)) {
806 if (custom_code_table_string_.length() != sizeof(*custom_code_table_)) {
810 << sizeof(*custom_code_table_) << ")" << VCD_ENDL;
813 memcpy(custom_code_table_.get(),
815 sizeof(*custom_code_table_));
820 delta_window_.UseCodeTable(*custom_code_table_, addr_cache_->LastMode());