| /freebsd-12.1/sys/sys/ |
| H A D | zutil.h | 181 # define zmemcpy _fmemcpy macro 185 # define zmemcpy memcpy macro 190 extern void zmemcpy OF((Bytef* dest, Bytef* source, uInt len));
|
| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| H A D | zutil.h | 231 # define zmemcpy _fmemcpy macro 235 # define zmemcpy memcpy macro 240 extern void zmemcpy OF((void* dest, const void* source, uInt len));
|
| H A D | inflate.c | 357 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize); 364 zmemcpy(state->window + state->write, strm->next_out - copy, dist); 367 zmemcpy(state->window, strm->next_out - copy, copy); 699 zmemcpy(state->head->extra + len, next, 844 zmemcpy(put, next, copy); 1224 zmemcpy(state->window, dictionary + dictLength - state->wsize, 1229 zmemcpy(state->window + state->wsize - dictLength, dictionary, 1380 zmemcpy(dest, source, sizeof(z_stream)); 1381 zmemcpy(copy, state, sizeof(struct inflate_state)); 1390 zmemcpy(window, state->window, wsize);
|
| H A D | deflate.c | 345 (void) zmemcpy(s->window, dictionary, length); 546 zmemcpy(strm->next_out, strm->state->pending_out, len); 918 zmemcpy(dest, source, sizeof(z_stream)); 923 zmemcpy(ds, ss, sizeof(deflate_state)); 938 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte)); 939 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof(Pos)); 940 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos)); 941 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size); 982 zmemcpy(buf, strm->next_in, len); 1301 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
|
| H A D | zmod_subr.c | 69 zmemcpy(void *dest, const void *source, uint_t len) in zmemcpy() function
|
| H A D | zutil.c | 155 void zmemcpy(dest, source, len) in zmemcpy() function
|
| /freebsd-12.1/sys/contrib/zlib/ |
| H A D | zutil.h | 222 # define zmemcpy _fmemcpy macro 226 # define zmemcpy memcpy macro 231 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
|
| H A D | deflate.c | 741 zmemcpy(strm->next_out, s->pending_out, len); 906 zmemcpy(s->pending_buf + s->pending, 919 zmemcpy(s->pending_buf + s->pending, 1120 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream)); 1125 zmemcpy((voidpf)ds, (voidpf)ss, sizeof(deflate_state)); 1140 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte)); 1176 zmemcpy(buf, strm->next_in, len); 1512 zmemcpy(s->window, s->window+wsize, (unsigned)wsize - more); 1743 zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size); 1750 zmemcpy(s->window, s->window + s->w_size, s->strstart); [all …]
|
| H A D | inflate.c | 423 zmemcpy(state->window, end - state->wsize, state->wsize); 430 zmemcpy(state->window + state->wnext, end - copy, dist); 433 zmemcpy(state->window, end - copy, copy); 764 zmemcpy(state->head->extra + len, next, 909 zmemcpy(put, next, copy); 1304 zmemcpy(dictionary, state->window + state->wnext, 1306 zmemcpy(dictionary + state->whave - state->wnext, 1490 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream)); 1491 zmemcpy((voidpf)copy, (voidpf)state, sizeof(struct inflate_state)); 1501 zmemcpy(window, state->window, wsize);
|
| H A D | zutil.c | 149 void ZLIB_INTERNAL zmemcpy(dest, source, len) in zmemcpy() function
|
| H A D | infback.c | 347 zmemcpy(put, next, copy);
|
| H A D | trees.c | 873 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
|
| H A D | ChangeLog | 715 - Replace structure assignments in deflate.c and inflate.c with zmemcpy to 1154 - zmemcpy parameters are of type Bytef*, not charf* (Joseph Strout)
|
| /freebsd-12.1/sys/libkern/ |
| H A D | zlib.c | 220 # define zmemcpy _fmemcpy macro 224 # define zmemcpy memcpy macro 1162 zmemcpy(dest, source, sizeof(*dest)); 1167 zmemcpy(ds, ss, sizeof(*ds)); 1232 zmemcpy(buf, strm->next_in, len); 3825 zmemcpy(q, p, t); 4031 zmemcpy((charf *)s->window, d, n); 4072 zmemcpy(q, p, t); 4909 zmemcpy(p, q, n); 4937 zmemcpy(p, q, n); [all …]
|