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

12

/freebsd-current/usr.bin/gzip/
H A Dunlz.c290 lz_flush(struct lz_decoder *lz) argument
292 off_t offs = lz->pos - lz->spos;
297 lz_crc_update(&lz->crc, lz->obuf + lz->spos, size);
298 if (fwrite(lz->obuf + lz->spos, 1, size, lz->fout) != size)
301 lz
311 lz_destroy(struct lz_decoder *lz) argument
321 lz_create(struct lz_decoder *lz, int fin, int fdout, int dict_size) argument
351 lz_peek(const struct lz_decoder *lz, unsigned ahead) argument
365 lz_put(struct lz_decoder *lz, uint8_t b) argument
373 lz_get_data_position(const struct lz_decoder *lz) argument
379 lz_get_crc(const struct lz_decoder *lz) argument
407 lz_decode_member(struct lz_decoder *lz) argument
542 struct lz_decoder lz; local
[all...]
/freebsd-current/lib/libiconv_modules/mapper_std/
H A Dcitrus_mapper_std.c82 struct _citrus_mapper_std_linear_zone *lz; local
92 lz = &rc->rc_src_rowcol[0]; i > 0; ++lz) {
95 if (n < lz->begin || n > lz->end) {
106 idx = idx * lz->width + n - lz->begin;
135 set_linear_zone(struct _citrus_mapper_std_linear_zone *lz, argument
142 lz->begin = begin;
143 lz
154 struct _citrus_mapper_std_linear_zone *lz; local
183 ++rc->rc_src_rowcol_len, ++lz; local
196 struct _citrus_mapper_std_linear_zone *lz; local
245 struct _citrus_mapper_std_linear_zone *lz; local
[all...]
/freebsd-current/sys/dev/random/
H A Dbuild.sh45 -lz \
55 -lz \
/freebsd-current/contrib/sqlite3/
H A DMakefile.fallback10 LIBS = -lz
/freebsd-current/lib/msun/src/
H A De_fmod.c30 u_int32_t lx,ly,lz; local
95 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
98 if((hz|lz)==0) /* return sign(x)*0 */
100 hx = hz+hz+(lz>>31); lx = lz+lz;
103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
104 if(hz>=0) {hx=hz;lx=lz;}
H A De_fmodl.c66 manl_t lx,ly,lz; local
117 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
120 if ((hz|lz)==0) /* return sign(x)*0 */
122 hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz;
125 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
126 if(hz>=0) {hx=hz;lx=lz;}
H A Ds_remquo.c31 u_int32_t lx,ly,lz,q,sxy; local
103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
105 else {hx = hz+hz+(lz>>31); lx = lz+lz; q++;}
108 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
109 if(hz>=0) {hx=hz;lx=lz;q++;}
H A Ds_remquol.c69 manl_t lx,ly,lz; local
125 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
127 else {hx = hz+hz+(lz>>MANL_SHIFT); lx = lz+lz; q++;}
130 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
131 if(hz>=0) {hx=hz;lx=lz;q++;}
/freebsd-current/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
232 lzma_lzma2_coder *coder = lz->coder;
238 lz->coder = coder;
239 lz->code = &lzma2_decode;
240 lz->end = &lzma2_decoder_end;
H A Dlzma2_encoder.c312 lzma2_encoder_init(lzma_lz_encoder *lz, const lzma_allocator *allocator, argument
319 lzma_lzma2_coder *coder = lz->coder;
325 lz->coder = coder;
326 lz->code = &lzma2_encode;
327 lz->end = &lzma2_encoder_end;
328 lz->options_update = &lzma2_encoder_options_update;
H A Dlzma_decoder.c988 lzma_lzma_decoder_create(lzma_lz_decoder *lz, const lzma_allocator *allocator, argument
991 if (lz->coder == NULL) {
992 lz->coder = lzma_alloc(sizeof(lzma_lzma1_decoder), allocator);
993 if (lz->coder == NULL)
996 lz->code = &lzma_decode;
997 lz->reset = &lzma_decoder_reset;
998 lz->set_uncompressed = &lzma_decoder_uncompressed;
1015 lzma_decoder_init(lzma_lz_decoder *lz, const lzma_allocator *allocator, argument
1046 lz, allocator, options, lz_options));
1048 lzma_decoder_reset(lz
[all...]
/freebsd-current/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.c28 lzma_lz_encoder lz; member in struct:__anon89
177 const lzma_ret ret = coder->lz.code(coder->lz.coder,
498 if (coder->lz.end != NULL)
499 coder->lz.end(coder->lz.coder, allocator);
501 lzma_free(coder->lz.coder, allocator);
515 if (coder->lz.options_update == NULL)
518 return_if_error(coder->lz.options_update(
519 coder->lz
542 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, lzma_vli id, const void *options, lzma_lz_options *lz_options)) argument
[all...]
H A Dlz_decoder.c28 lzma_lz_decoder lz; member in struct:__anon84
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, lzma_vli id, const void *options, lzma_lz_options *lz_options)) argument
[all...]
/freebsd-current/tools/bsdbox/
H A DMakefile.base21 CRUNCH_LIBS+= -larchive -lbz2 -lz -llzma -lbsdxml -lssl -lcrypto
57 CRUNCH_LIBS+= -lz -llzma -lbz2
H A DMakefile103 CRUNCH_LIBS+= -lcrypto -lssl -lz
/freebsd-current/contrib/elftoolchain/ar/
H A DMakefile13 LDADD= -larchive -lelftc -lelf -lz
/freebsd-current/lib/libz/
H A DMakefile71 $(CC) -o minigzip minigzip.o -L. -lz
74 $(CC) -o example example.o -L. -lz
/freebsd-current/contrib/libdiff/diff/
H A DMakefile26 LDFLAGS = -lutil -lz
/freebsd-current/usr.bin/grep/
H A Dzgrep.sh62 lz*)
/freebsd-current/crypto/openssh/regress/misc/fuzz-harness/
H A DMakefile44 $(CXX) -o $@ kex_fuzz.o $(SK_NULL_OBJS) $(LDFLAGS) $(LIBS) -lz
47 $(CXX) -o $@ agent_fuzz.o agent_fuzz_helper.o sk-dummy.o ../../../ssh-sk.o $(LDFLAGS) $(LIBS) -lz
/freebsd-current/usr.bin/mkcsmapper/
H A Dyacc.y579 store(const linear_zone_t *lz, u_int32_t dst, int inc)
588 n = ((lz->begin >> i) & rowcol_mask) - p->begin;
591 n = lz->width;
620 set_src(linear_zone_t *lz, u_int32_t begin, u_int32_t end)
626 lz->begin = begin, lz->end = end;
627 lz->width = end - begin + 1;
/freebsd-current/sys/dev/sound/macio/
H A Daoa.c151 int err, lz; local
159 __asm volatile ("cntlzw %0,%1" : "=r"(lz) : "r"(blocksz));
160 blocksz = 1 << (31 - lz);
/freebsd-current/crypto/openssh/regress/unittests/kex/
H A DMakefile40 LDADD+=-lz
/freebsd-current/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 300 milliseconds

12