Lines Matching refs:dst
176 char* dst; in LookupKey() local
178 dst = space_; in LookupKey()
180 dst = new char[needed]; in LookupKey()
182 start_ = dst; in LookupKey()
184 dst = EncodeVarint32(dst, static_cast<uint32_t>(usize + ts_sz + 8)); in LookupKey()
185 kstart_ = dst; in LookupKey()
186 memcpy(dst, _user_key.data(), usize); in LookupKey()
187 dst += usize; in LookupKey()
189 memcpy(dst, ts->data(), ts_sz); in LookupKey()
190 dst += ts_sz; in LookupKey()
192 EncodeFixed64(dst, PackSequenceAndType(s, kValueTypeForSeek)); in LookupKey()
193 dst += 8; in LookupKey()
194 end_ = dst; in LookupKey()