Home
last modified time | relevance | path

Searched refs:actbuf (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/sys/dev/iicbus/
H A Diichid.c262 uint8_t actbuf[2] = { 0, 0 }; in iichid_cmd_read() local
265 { sc->addr, IIC_M_RD | IIC_M_NOSTOP, sizeof(actbuf), actbuf }, in iichid_cmd_read()
274 actlen = actbuf[0] | actbuf[1] << 8; in iichid_cmd_read()
278 { sc->addr, IIC_M_RD | IIC_M_NOSTART, 1, actbuf }; in iichid_cmd_read()
297 "%*D - %*D\n", 2, actbuf, " ", msgs[0].len, msgs[0].buf, " "); in iichid_cmd_read()
425 uint8_t actbuf[2] = { 0, 0 }; in iichid_cmd_get_report() local
430 { sc->addr, IIC_M_RD | IIC_M_NOSTOP, 2, actbuf }, in iichid_cmd_get_report()
448 actlen = actbuf[0] | actbuf[1] << 8; in iichid_cmd_get_report()
468 DPRINTF(sc, "response: %*D %*D\n", 2, actbuf, " ", actlen, buf, " "); in iichid_cmd_get_report()
/freebsd-13.1/sbin/ipfw/
H A Dipfw2.c3803 static uint32_t actbuf[255], cmdbuf[255]; in compile_rule() local
3829 bzero(actbuf, sizeof(actbuf)); /* actions go here */ in compile_rule()
3835 action = (ipfw_insn *)actbuf; in compile_rule()
3839 ablen = sizeof(actbuf) / sizeof(actbuf[0]); in compile_rule()
5168 for (src = (ipfw_insn *)actbuf; src != action; src += i) { in compile_rule()