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

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_compression_compress.c240 output_code(struct archive_write *a, int ocode) argument
245 clear_flg = ocode == CLEAR;
248 * Since ocode is always >= 8 bits, only need to mask the first
252 state->bit_buf |= (ocode << bit_offset) & 0xff;
256 ocode >>= 8 - bit_offset;
259 output_byte(a, ocode & 0xff);
260 ocode >>= 8;
265 state->bit_buf = ocode & rmask[bits];
270 * If the next entry is going to be too big for the ocode size,
/freebsd-9.3-release/usr.bin/compress/
H A Dzopen.c368 output(struct s_zstate *zs, code_int ocode) argument
377 if (ocode >= 0) {
382 * Since ocode is always >= 8 bits, only need to mask the first
385 *bp = (*bp & rmask[r_off]) | ((ocode << r_off) & lmask[r_off]);
388 ocode >>= 8 - r_off;
391 *bp++ = ocode;
392 ocode >>= 8;
397 *bp = ocode;
410 * If the next entry is going to be too big for the ocode size,
/freebsd-9.3-release/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;
/freebsd-9.3-release/contrib/gcc/
H A Dc-parser.c4617 enum tree_code ocode;
4624 ocode = MULT_EXPR;
4628 ocode = TRUNC_DIV_EXPR;
4632 ocode = TRUNC_MOD_EXPR;
4636 ocode = PLUS_EXPR;
4640 ocode = MINUS_EXPR;
4644 ocode = LSHIFT_EXPR;
4648 ocode = RSHIFT_EXPR;
4652 ocode = LT_EXPR;
4656 ocode
4615 enum tree_code ocode; local
[all...]
H A Dgimplify.c3477 enum tree_code code, ocode;
3485 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
3486 other = build1 (ocode, TREE_TYPE (rhs), lhs);
3476 enum tree_code code, ocode; local

Completed in 231 milliseconds