Home
last modified time | relevance | path

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

/freebsd/sys/dev/iicbus/
H A Diichid.c278 uint8_t actbuf[2] = { 0, 0 }; local
281 { sc->addr, IIC_M_RD | IIC_M_NOSTOP, sizeof(actbuf), actbuf },
290 actlen = actbuf[0] | actbuf[1] << 8;
313 { sc->addr, IIC_M_RD | IIC_M_NOSTART, 1, actbuf };
333 "%*D - %*D\n", 2, actbuf, " ", msgs[0].len, msgs[0].buf, " ");
461 uint8_t actbuf[2] = { 0, 0 }; local
466 { sc->addr, IIC_M_RD | IIC_M_NOSTOP, 2, actbuf },
484 actlen = actbuf[0] | actbuf[1] << 8;
504 DPRINTF(sc, "response: %*D %*D\n", 2, actbuf, " ", actlen, buf, " ");
/freebsd/sbin/ipfw/
H A Dipfw2.c4151 static uint32_t actbuf[255], cmdbuf[255]; in compile_rule() local
4177 bzero(actbuf, sizeof(actbuf)); /* actions go here */ in compile_rule()
4183 action = (ipfw_insn *)actbuf; in compile_rule()
4187 ablen = nitems(actbuf); in compile_rule()
5638 for (src = (ipfw_insn *)actbuf; src != action; src += i) { in compile_rule()