Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/dev/iicbus/
HDiichid.c273 uint8_t actbuf[2] = { 0, 0 }; in iichid_cmd_read() local
276 { sc->addr, IIC_M_RD | IIC_M_NOSTOP, sizeof(actbuf), actbuf }, in iichid_cmd_read()
285 actlen = actbuf[0] | actbuf[1] << 8; in iichid_cmd_read()
289 { sc->addr, IIC_M_RD | IIC_M_NOSTART, 1, actbuf }; in iichid_cmd_read()
308 "%*D - %*D\n", 2, actbuf, " ", msgs[0].len, msgs[0].buf, " "); in iichid_cmd_read()
436 uint8_t actbuf[2] = { 0, 0 }; in iichid_cmd_get_report() local
441 { sc->addr, IIC_M_RD | IIC_M_NOSTOP, 2, actbuf }, in iichid_cmd_get_report()
459 actlen = actbuf[0] | actbuf[1] << 8; in iichid_cmd_get_report()
479 DPRINTF(sc, "response: %*D %*D\n", 2, actbuf, " ", actlen, buf, " "); in iichid_cmd_get_report()
/freebsd-14-stable/sbin/ipfw/
HDipfw2.c4009 static uint32_t actbuf[255], cmdbuf[255]; in compile_rule() local
4035 bzero(actbuf, sizeof(actbuf)); /* actions go here */ in compile_rule()
4041 action = (ipfw_insn *)actbuf; in compile_rule()
4045 ablen = sizeof(actbuf) / sizeof(actbuf[0]); in compile_rule()
5413 for (src = (ipfw_insn *)actbuf; src != action; src += i) { in compile_rule()