Searched refs:lz (Results 1 - 25 of 45) sorted by relevance

12

/freebsd-13-stable/usr.bin/gzip/
H A Dunlz.c292 lz_flush(struct lz_decoder *lz) argument
294 off_t offs = lz->pos - lz->spos;
299 lz_crc_update(&lz->crc, lz->obuf + lz->spos, size);
300 if (fwrite(lz->obuf + lz->spos, 1, size, lz->fout) != size)
303 lz
313 lz_destroy(struct lz_decoder *lz) argument
323 lz_create(struct lz_decoder *lz, int fin, int fdout, int dict_size) argument
353 lz_peek(const struct lz_decoder *lz, unsigned ahead) argument
367 lz_put(struct lz_decoder *lz, uint8_t b) argument
375 lz_get_data_position(const struct lz_decoder *lz) argument
381 lz_get_crc(const struct lz_decoder *lz) argument
409 lz_decode_member(struct lz_decoder *lz) argument
544 struct lz_decoder lz; local
[all...]
/freebsd-13-stable/lib/libiconv_modules/mapper_std/
H A Dcitrus_mapper_std.c83 struct _citrus_mapper_std_linear_zone *lz; local
93 lz = &rc->rc_src_rowcol[0]; i > 0; ++lz) {
96 if (n < lz->begin || n > lz->end) {
107 idx = idx * lz->width + n - lz->begin;
136 set_linear_zone(struct _citrus_mapper_std_linear_zone *lz, argument
143 lz->begin = begin;
144 lz
155 struct _citrus_mapper_std_linear_zone *lz; local
184 ++rc->rc_src_rowcol_len, ++lz; local
197 struct _citrus_mapper_std_linear_zone *lz; local
246 struct _citrus_mapper_std_linear_zone *lz; local
[all...]
/freebsd-13-stable/sys/dev/random/
H A Dbuild.sh46 -lz \
56 -lz \
/freebsd-13-stable/contrib/sqlite3/
H A DMakefile.fallback10 LIBS = -lz
/freebsd-13-stable/lib/msun/src/
H A De_fmod.c34 u_int32_t lx,ly,lz; local
99 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
102 if((hz|lz)==0) /* return sign(x)*0 */
104 hx = hz+hz+(lz>>31); lx = lz+lz;
107 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
108 if(hz>=0) {hx=hz;lx=lz;}
H A De_fmodl.c70 manl_t lx,ly,lz; local
121 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
124 if ((hz|lz)==0) /* return sign(x)*0 */
126 hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz;
129 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
130 if(hz>=0) {hx=hz;lx=lz;}
H A Ds_remquo.c35 u_int32_t lx,ly,lz,q,sxy; local
107 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
109 else {hx = hz+hz+(lz>>31); lx = lz+lz; q++;}
112 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
113 if(hz>=0) {hx=hz;lx=lz;q++;}
H A Ds_remquol.c73 manl_t lx,ly,lz; local
129 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
131 else {hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz; q++;}
134 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
135 if(hz>=0) {hx=hz;lx=lz;q++;}
/freebsd-13-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_decoder.h44 lzma_lz_decoder *lz, const lzma_allocator *allocator,
H A Dlzma2_decoder.c228 lzma2_decoder_init(lzma_lz_decoder *lz, const lzma_allocator *allocator, argument
231 lzma_lzma2_coder *coder = lz->coder;
237 lz->coder = coder;
238 lz->code = &lzma2_decode;
239 lz->end = &lzma2_decoder_end;
H A Dlzma2_encoder.c312 lzma2_encoder_init(lzma_lz_encoder *lz, const lzma_allocator *allocator, argument
318 lzma_lzma2_coder *coder = lz->coder;
324 lz->coder = coder;
325 lz->code = &lzma2_encode;
326 lz->end = &lzma2_encoder_end;
327 lz->options_update = &lzma2_encoder_options_update;
H A Dlzma_decoder.c942 lzma_lzma_decoder_create(lzma_lz_decoder *lz, const lzma_allocator *allocator, argument
945 if (lz->coder == NULL) {
946 lz->coder = lzma_alloc(sizeof(lzma_lzma1_decoder), allocator);
947 if (lz->coder == NULL)
950 lz->code = &lzma_decode;
951 lz->reset = &lzma_decoder_reset;
952 lz->set_uncompressed = &lzma_decoder_uncompressed;
970 lzma_decoder_init(lzma_lz_decoder *lz, const lzma_allocator *allocator, argument
977 lz, allocator, options, lz_options));
979 lzma_decoder_reset(lz
[all...]
/freebsd-13-stable/contrib/xz/src/liblzma/lz/
H A Dlz_decoder.c28 lzma_lz_decoder lz; member in struct:__anon6640
80 // Calculate how much we allow coder->lz.code() to decode.
88 // Call the coder->lz.code() to do the actual decoding.
89 const lzma_ret ret = coder->lz.code(
90 coder->lz.coder, &coder->dict,
107 // Reset the dictionary if so requested by coder->lz.code().
201 if (coder->lz.end != NULL)
202 coder->lz.end(coder->lz.coder, allocator);
204 lzma_free(coder->lz
212 lzma_lz_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, lzma_ret (*lz_init)(lzma_lz_decoder *lz, const lzma_allocator *allocator, const void *options, lzma_lz_options *lz_options)) argument
[all...]
H A Dlz_encoder.c28 lzma_lz_encoder lz; member in struct:__anon6645
177 const lzma_ret ret = coder->lz.code(coder->lz.coder,
496 if (coder->lz.end != NULL)
497 coder->lz.end(coder->lz.coder, allocator);
499 lzma_free(coder->lz.coder, allocator);
513 if (coder->lz.options_update == NULL)
516 return_if_error(coder->lz.options_update(
517 coder->lz
525 lzma_lz_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, lzma_ret (*lz_init)(lzma_lz_encoder *lz, const lzma_allocator *allocator, const void *options, lzma_lz_options *lz_options)) argument
[all...]
H A Dlz_decoder.h87 lzma_ret (*lz_init)(lzma_lz_decoder *lz,
/freebsd-13-stable/tools/bsdbox/
H A DMakefile.base22 CRUNCH_LIBS+= -larchive -lbz2 -lz -llzma -lbsdxml -lssl -lcrypto
58 CRUNCH_LIBS+= -lz -llzma -lbz2
H A DMakefile108 CRUNCH_LIBS+= -lcrypto -lssl -lz
/freebsd-13-stable/contrib/elftoolchain/ar/
H A DMakefile13 LDADD= -larchive -lelftc -lelf -lz
/freebsd-13-stable/lib/libz/
H A DMakefile68 $(CC) -o minigzip minigzip.o -L. -lz
71 $(CC) -o example example.o -L. -lz
/freebsd-13-stable/usr.bin/grep/
H A Dzgrep.sh63 lz*)
/freebsd-13-stable/crypto/openssh/regress/unittests/kex/
H A DMakefile29 LDADD+=-lz
/freebsd-13-stable/usr.bin/mkcsmapper/
H A Dyacc.y581 store(const linear_zone_t *lz, u_int32_t dst, int inc)
590 n = ((lz->begin >> i) & rowcol_mask) - p->begin;
593 n = lz->width;
622 set_src(linear_zone_t *lz, u_int32_t begin, u_int32_t end)
628 lz->begin = begin, lz->end = end;
629 lz->width = end - begin + 1;
/freebsd-13-stable/sys/dev/sound/macio/
H A Daoa.c153 int err, lz; local
161 __asm volatile ("cntlzw %0,%1" : "=r"(lz) : "r"(blocksz));
162 blocksz = 1 << (31 - lz);
/freebsd-13-stable/lib/liblzma/
H A DMakefile91 .PATH: ${LZMADIR}/lz
142 -I${LZMADIR}/lz \
/freebsd-13-stable/contrib/bzip2/
H A Dblocksort.c80 #define fpush(lz,hz) { stackLo[sp] = lz; \
84 #define fpop(lz,hz) { sp--; \
85 lz = stackLo[sp]; \
596 #define mpush(lz,hz,dz) { stackLo[sp] = lz; \
601 #define mpop(lz,hz,dz) { sp--; \
602 lz = stackLo[sp]; \

Completed in 224 milliseconds

12