Searched refs:zmemcpy (Results 1 – 7 of 7) sorted by relevance
| /src/sys/contrib/zlib/ |
| H A D | deflate.c | 227 zmemcpy(buf, strm->next_in, len); in read_buf() 287 zmemcpy(s->window, s->window + wsize, (unsigned)wsize - more); in fill_window() 637 zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len); in deflateGetDictionary() 959 zmemcpy(strm->next_out, s->pending_out, len); in flush_pending() 1123 zmemcpy(s->pending_buf + s->pending, in deflate() 1136 zmemcpy(s->pending_buf + s->pending, in deflate() 1333 zmemcpy(dest, source, sizeof(z_stream)); in deflateCopy() 1339 zmemcpy(ds, ss, sizeof(deflate_state)); in deflateCopy() 1353 zmemcpy(ds->window, ss->window, ss->high_water); in deflateCopy() 1354 zmemcpy(ds->prev, ss->prev, in deflateCopy() [all …]
|
| H A D | zutil.h | 212 # define zmemcpy _fmemcpy macro 216 # define zmemcpy memcpy macro 221 void ZLIB_INTERNAL zmemcpy(void FAR *, const void FAR *, z_size_t);
|
| H A D | inflate.c | 275 zmemcpy(state->window, end - state->wsize, state->wsize); in updatewindow() 282 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow() 285 zmemcpy(state->window, end - copy, copy); in updatewindow() 618 zmemcpy(state->head->extra + len, next, in inflate() 771 zmemcpy(put, next, copy); in inflate() 1177 zmemcpy(dictionary, state->window + state->wnext, in inflateGetDictionary() 1179 zmemcpy(dictionary + state->whave - state->wnext, in inflateGetDictionary() 1354 zmemcpy(dest, source, sizeof(z_stream)); in inflateCopy() 1355 zmemcpy(copy, state, sizeof(struct inflate_state)); in inflateCopy() 1364 zmemcpy(window, state->window, state->whave); in inflateCopy()
|
| H A D | zutil.c | 153 void ZLIB_INTERNAL zmemcpy(void FAR *dst, const void FAR *src, z_size_t n) { in zmemcpy() function
|
| H A D | infback.c | 283 zmemcpy(put, next, copy); in inflateBack()
|
| H A D | trees.c | 867 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len); in _tr_stored_block()
|
| H A D | ChangeLog | 869 - Replace structure assignments in deflate.c and inflate.c with zmemcpy to 1308 - zmemcpy parameters are of type Bytef*, not charf* (Joseph Strout)
|