/illumos-gate/usr/src/contrib/zlib/ |
H A D | zutil.h | 223 # define zmemcpy _fmemcpy macro 227 # define zmemcpy memcpy macro 232 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
|
H A D | deflate.c | 498 zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len); 780 zmemcpy(strm->next_out, s->pending_out, len); 947 zmemcpy(s->pending_buf + s->pending, 960 zmemcpy(s->pending_buf + s->pending, 1160 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream)); 1165 zmemcpy((voidpf)ds, (voidpf)ss, sizeof(deflate_state)); 1179 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte)); 1180 zmemcpy((voidpf)ds->prev, (voidpf)ss->prev, ds->w_size * sizeof(Pos)); 1181 zmemcpy((voidpf)ds->head, (voidpf)ss->head, ds->hash_size * sizeof(Pos)); 1182 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size); [all …]
|
H A D | inflate.c | 406 zmemcpy(state->window, end - state->wsize, state->wsize); in updatewindow() 413 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow() 416 zmemcpy(state->window, end - copy, copy); in updatewindow() 750 zmemcpy(state->head->extra + len, next, in inflate() 903 zmemcpy(put, next, copy); in inflate() 1306 zmemcpy(dictionary, state->window + state->wnext, in inflateGetDictionary() 1308 zmemcpy(dictionary + state->whave - state->wnext, in inflateGetDictionary() 1489 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream)); in inflateCopy() 1490 zmemcpy((voidpf)copy, (voidpf)state, sizeof(struct inflate_state)); in inflateCopy() 1500 zmemcpy(window, state->window, wsize); in inflateCopy()
|
H A D | zutil.c | 146 void ZLIB_INTERNAL zmemcpy(dest, source, len) in zmemcpy() function
|
H A D | infback.c | 338 zmemcpy(put, next, copy); in inflateBack()
|
H A D | trees.c | 874 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
|
H A D | ChangeLog | 778 - Replace structure assignments in deflate.c and inflate.c with zmemcpy to 1217 - zmemcpy parameters are of type Bytef*, not charf* (Joseph Strout)
|
/illumos-gate/usr/src/uts/common/zmod/ |
H A D | zmod_subr.c | 69 zmemcpy(void *dest, const void *source, uint_t len) in zmemcpy() function
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 220 #define zmemcpy _fmemcpy macro 224 #define zmemcpy (void) memcpy macro 229 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 974 zmemcpy(s->window, dictionary, length); 1099 zmemcpy(strm->next_out, s->pending_out, len); 1319 zmemcpy(dest, source, sizeof (*dest)); 1325 zmemcpy(ds, ss, sizeof (*ds)); 1341 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof (Byte)); 1342 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof (Pos)); 1343 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof (Pos)); [all …]
|
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | ratz.c | 766 # define zmemcpy _fmemcpy macro 770 # define zmemcpy memcpy macro 775 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 819 void zmemcpy(dest, source, len) in zmemcpy() function 2569 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize); 2576 zmemcpy(state->window + state->write, strm->next_out - copy, dist); 2579 zmemcpy(state->window, strm->next_out - copy, copy); 2907 zmemcpy(state->head->extra + len, next, 3045 zmemcpy(put, next, copy); 3416 zmemcpy(state->window, dictionary + dictLength - state->wsize, [all …]
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 92 # define zmemcpy memcpy macro 95 # define zmemcpy(d, s, n) bcopy((s), (d), (n)) macro 718 zmemcpy(strm->next_out, state->pending_out, len); 892 zmemcpy(buf, strm->next_in, len); 1137 zmemcpy((charf *)s->window, (charf *)s->window+wsize, 3352 zmemcpy(q, p, t); 3579 zmemcpy(q, p, t); 4359 zmemcpy(p, q, n); 4387 zmemcpy(p, q, n);
|