Home
last modified time | relevance | path

Searched refs:obp (Results 1 – 11 of 11) sorted by relevance

/dragonfly/sys/bus/cam/scsi/
H A Dscsi_ses.c1027 int i = (int)obp->obj_id; in ses_get_objstat()
1766 int i = (int)obp->obj_id; in safte_get_objstat()
1791 (int)obp->obj_id, obp->cstat[0], obp->cstat[1], obp->cstat[2], in safte_set_objstat()
1792 obp->cstat[3]); in safte_set_objstat()
1815 idx = (int)obp->obj_id; in safte_set_objstat()
1896 if (obp->cstat[3] & 0x1) { in safte_set_objstat()
1907 obp->cstat[3] &= ~0xa; in safte_set_objstat()
1908 if (obp->cstat[3] & 0x40) { in safte_set_objstat()
1910 } else if (obp->cstat[3] != 0) { in safte_set_objstat()
1915 ep->priv = obp->cstat[3]; in safte_set_objstat()
[all …]
/dragonfly/contrib/nvi2/ex/
H A Dex_print.c272 exp->obp_len += n = vsnprintf(exp->obp + exp->obp_len, in ex_printf()
273 sizeof(exp->obp) - exp->obp_len, fmt, ap); in ex_printf()
277 if (exp->obp[exp->obp_len - 1] == '\n' || in ex_printf()
278 exp->obp_len > sizeof(exp->obp) / 2) in ex_printf()
299 if (exp->obp_len > sizeof(exp->obp)) in ex_puts()
301 if ((exp->obp[exp->obp_len++] = *str++) == '\n') in ex_puts()
323 sp->gp->scr_msg(sp, M_NONE, exp->obp, exp->obp_len); in ex_fflush()
H A Dex.h187 char obp[1024]; /* Ex output buffer. */ member
/dragonfly/games/sail/
H A Ddr_3.c294 int obp = 0; in is_toughmelee() local
302 obp += bp->mensent / 100 in is_toughmelee()
304 obp += (bp->mensent % 100)/10 in is_toughmelee()
306 obp += bp->mensent % 10 in is_toughmelee()
311 return obp; in is_toughmelee()
315 if (OBP > obp + 10 || OBP + DBP >= obp + dbp + 10) in is_toughmelee()
H A Dpl_7.c84 static bool obp[3]; variable
653 waddch(slot_w, obp[i] ? '1'+i : ' '); in draw_slot()
769 obp[which] = show; in display_set_obp()
/dragonfly/contrib/tcsh-6/
H A Dsh.dol.c1013 Char *lbp, *obp, *mbp; in heredoc() local
1065 obp = obuf; in heredoc()
1107 *obp++ = (Char) c; in heredoc()
1108 if (obp == OBUF_END) { in heredoc()
1111 obp = obuf; in heredoc()
1166 *obp++ = *mbp & TRIM; in heredoc()
1167 if (obp == OBUF_END) { in heredoc()
1170 obp = obuf; in heredoc()
1173 *obp++ = '\n'; in heredoc()
1177 obp = obuf; in heredoc()
[all …]
/dragonfly/sys/vfs/hammer/
H A Dhammer_io.c1625 struct buf *obp; in hammer_indirect_callback() local
1649 obp = obio->bio_buf; in hammer_indirect_callback()
1656 obp->b_flags |= B_ERROR; in hammer_indirect_callback()
1657 obp->b_error = bp->b_error; in hammer_indirect_callback()
1661 bp->b_data, obp->b_bufsize) && in hammer_indirect_callback()
1664 bp->b_data, obp->b_bufsize)) { in hammer_indirect_callback()
1670 obp->b_flags |= B_ERROR; in hammer_indirect_callback()
1671 obp->b_error = EIO; in hammer_indirect_callback()
1677 bcopy(bp->b_data, obp->b_data, obp->b_bufsize); in hammer_indirect_callback()
1678 obp->b_resid = 0; in hammer_indirect_callback()
[all …]
/dragonfly/sys/dev/disk/ccd/
H A Dccd.c1163 struct buf *obp = obio->bio_buf; in ccdiodone() local
1181 obp, obp->b_bcount, obp->b_resid); in ccdiodone()
1211 obp->b_flags |= B_ERROR; in ccdiodone()
1212 obp->b_error = cbp->cb_buf.b_error ? in ccdiodone()
1217 unit, obp->b_error, cbp->cb_comp, in ccdiodone()
1279 obp->b_resid -= count; in ccdiodone()
1280 if (obp->b_resid < 0) in ccdiodone()
1285 if (obp->b_resid == 0) in ccdiodone()
/dragonfly/games/hunt/huntd/
H A Dshots.c1071 zapshot(BULLET *blist, BULLET *obp) in zapshot() argument
1077 if (bp->b_face != obp->b_face in zapshot()
1078 && bp->b_x == obp->b_x && bp->b_y == obp->b_y) in zapshot()
1081 explshot(blist, obp->b_y, obp->b_x); in zapshot()
/dragonfly/sys/dev/smbus/atmel_mxt/
H A DMakefile2 SRCS= atmel_mxt.c obp-utils.c
/dragonfly/contrib/nvi2/common/
H A Dconv.c225 char *obp = cw->bp1.c + offset; \ in default_int2char()
232 ret = iconv(id, (iconv_src_t)&bp, lenp, &obp, \ in default_int2char()