HomeSort by: relevance | last modified time | path
    Searched refs:ocode (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/arch/sh3/sh3/
syscall.c 115 register_t code, args[8], rval[2], ocode; local
120 ocode = code = tf->tf_r0;
158 if (ocode == SYS_syscall) {
172 else if (ocode == SYS___syscall) {
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_add_filter_compress.c 244 output_code(struct archive_write_filter *f, int ocode)
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,
  /src/usr.bin/compress/
zopen.c 369 output(struct s_zstate *zs, code_int ocode)
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,
  /src/sys/arch/sgimips/dev/
scnvar.h 94 u_char icode, ocode; member in struct:duart::chan
scn.c 479 csr = (dp->chan[chan].icode<<4) | dp->chan[chan].ocode;
486 (dp->chan[0].icode == USE_CT || dp->chan[0].ocode == USE_CT ||
487 dp->chan[1].icode == USE_CT || dp->chan[1].ocode == USE_CT)) {
573 bothgroups[other->icode] && bothgroups[other->ocode])) {
715 dp->chan[other].ocode = ooc;
732 dp->chan[chan].ocode = oc;
997 duart->chan[0].icode = duart->chan[0].ocode = 0x2f;
998 duart->chan[1].icode = duart->chan[1].ocode = 0x2f;
  /src/usr.bin/ftp/
util.c 696 int overbose, ocode, r; local
700 ocode = code;
776 code = ocode;
839 int overbose, ocode; local
845 ocode = code;
870 code = ocode;
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-parser.cc 7929 enum tree_code ocode;
7937 ocode = MULT_EXPR;
7941 ocode = TRUNC_DIV_EXPR;
7945 ocode = TRUNC_MOD_EXPR;
7949 ocode = PLUS_EXPR;
7953 ocode = MINUS_EXPR;
7957 ocode = LSHIFT_EXPR;
7961 ocode = RSHIFT_EXPR;
7965 ocode = LT_EXPR;
7969 ocode = GT_EXPR
7927 enum tree_code ocode; local
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
elf32-or1k.c 1048 unsigned int ocode = or1k_reloc_map[i].or1k_reloc_val; local
1049 if (ocode < (unsigned int) R_OR1K_max)
1050 return &or1k_elf_howto_table[ocode];
  /src/external/gpl3/binutils.old/dist/bfd/
elf32-or1k.c 1048 unsigned int ocode = or1k_reloc_map[i].or1k_reloc_val; local
1049 if (ocode < (unsigned int) R_OR1K_max)
1050 return &or1k_elf_howto_table[ocode];
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vect-slp.cc 2451 enum tree_code ocode = ERROR_MARK; local
2460 ocode = gimple_assign_rhs_code (ostmt);
2467 SLP_TREE_CODE (two) = ocode;
gimplify.cc 5958 enum tree_code code, ocode;
5966 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
5967 other = build1 (ocode, TREE_TYPE (rhs), lhs);
5955 enum tree_code code, ocode; local

Completed in 70 milliseconds