Searched defs:saplen (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libdlpi/common/
H A Dlibdlpi.c1690 * by writing saplen bytes, so that the sap value is left aligned.
1693 i_dlpi_buildsap(uint8_t *sapp, uint_t saplen) argument
1699 for (i = saplen - 1; i >= 0; i--) {
1701 for (i = 0; i < saplen; i++) {
1711 * Copy sap value to a buffer in host byte order. saplen is the number of
1715 i_dlpi_writesap(void *dstbuf, uint_t sap, uint_t saplen) argument
1722 sapp = (uint8_t *)&sap + (sizeof (sap) - saplen);
1725 (void) memcpy(dstbuf, sapp, saplen);

Completed in 80 milliseconds