Searched refs:ocode (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_compress.c244 output_code(struct archive_write_filter *f, int ocode) argument
249 clear_flg = ocode == CLEAR;
252 * Since ocode is always >= 8 bits, only need to mask the first
256 state->bit_buf |= (ocode << bit_offset) & 0xff;
260 ocode >>= 8 - bit_offset;
263 output_byte(f, ocode & 0xff);
264 ocode >>= 8;
269 state->bit_buf = ocode & rmask[bits];
274 * If the next entry is going to be too big for the ocode size,
/freebsd-current/usr.bin/compress/
H A Dzopen.c365 output(struct s_zstate *zs, code_int ocode) argument
374 if (ocode >= 0) {
379 * Since ocode is always >= 8 bits, only need to mask the first
382 *bp = (*bp & rmask[r_off]) | ((ocode << r_off) & lmask[r_off]);
385 ocode >>= 8 - r_off;
388 *bp++ = ocode;
389 ocode >>= 8;
394 *bp = ocode;
407 * If the next entry is going to be too big for the ocode size,
/freebsd-current/contrib/tnftp/src/
H A Dutil.c702 int overbose, ocode, r; local
706 ocode = code;
782 code = ocode;
819 int overbose, ocode; local
824 ocode = code;
849 code = ocode;

Completed in 72 milliseconds