Lines Matching refs:dst_pos
68 size_t dst_pos = 0;
99 if (memmove_s(zdata + dst_pos, zdlen - dst_pos, buffOut, have) != 0) {
102 dst_pos += have;
103 if (unlikely(zdlen < dst_pos)) { // zdataBuf is not long enough, shoudn't happen
111 MAX_PERSISTER_BUFFER_SIZE - compressedBuffer.offset, zdata, dst_pos) != 0) {
114 compressedBuffer.offset += dst_pos;
138 auto dst_pos = 0;
163 if (memmove_s(zdata + dst_pos, zdlen, reinterpret_cast<Bytef*>(buffOut), output.pos) != 0) {
166 dst_pos += output.pos;
172 MAX_PERSISTER_BUFFER_SIZE - compressedBuffer.offset, zdata, dst_pos) != 0) {
175 compressedBuffer.offset += dst_pos;