Lines Matching refs:address
357 // if the address and data sections are both zero-length.
664 // Initializes the code table and address cache objects. Returns RESULT_ERROR
1156 LOG(ERROR) << "Unable to decode address for COPY" << LOG_ENDL;
1162 address " << decoded_address
1169 size_t address = static_cast<size_t>(decoded_address);
1170 if ((address + size) <= source_segment_length_) {
1172 CopyBytes(&source_segment_ptr_[address], size);
1176 if (address < source_segment_length_) {
1178 const size_t partial_copy_size = source_segment_length_ - address;
1179 CopyBytes(&source_segment_ptr_[address], partial_copy_size);
1181 address += partial_copy_size;
1184 address -= source_segment_length_;
1185 // address is now based at start of target window
1188 while (size > (target_bytes_decoded - address)) {
1190 const size_t partial_copy_size = target_bytes_decoded - address;
1191 CopyBytes(&target_segment_ptr[address], partial_copy_size);
1193 address += partial_copy_size;
1196 CopyBytes(&target_segment_ptr[address], size);
1321 // Reset address cache between windows (RFC section 5.1)
1323 LOG(DFATAL) << "Error initializing address cache" << LOG_ENDL;