Symbol: SCTP_ALIGN
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_sctp.c
1078
if (!IS_P2ALIGNED(sctp, SCTP_ALIGN)) {
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_sctp.c
568
if ((pad = (uintptr_t)hdr % SCTP_ALIGN) != 0) {
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_sctp.c
569
pad = SCTP_ALIGN - pad;
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_sctp.c
977
if ((pad = (uintptr_t)cp % SCTP_ALIGN) != 0) {
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_sctp.c
978
pad = SCTP_ALIGN - pad;
usr/src/uts/common/inet/sctp/sctp.c
1019
fp->sf_pmss = mss & ~(SCTP_ALIGN - 1);
usr/src/uts/common/inet/sctp/sctp.c
815
sctp->sctp_pad_mp = allocb_wait(SCTP_ALIGN, BPRI_MED,
usr/src/uts/common/inet/sctp/sctp.c
818
sctp->sctp_pad_mp = allocb(SCTP_ALIGN, BPRI_MED);
usr/src/uts/common/inet/sctp/sctp.c
822
bzero(sctp->sctp_pad_mp->b_rptr, SCTP_ALIGN);
usr/src/uts/common/inet/sctp/sctp_common.c
1149
if ((pad = len % SCTP_ALIGN) != 0) {
usr/src/uts/common/inet/sctp/sctp_common.c
1150
pad = SCTP_ALIGN - pad;
usr/src/uts/common/inet/sctp/sctp_common.c
1203
if ((pad = len & (SCTP_ALIGN - 1)) != 0) {
usr/src/uts/common/inet/sctp/sctp_common.c
1204
pad = SCTP_ALIGN - pad;
usr/src/uts/common/inet/sctp/sctp_common.c
1793
~(SCTP_ALIGN - 1);
usr/src/uts/common/inet/sctp/sctp_common.c
1799
~(SCTP_ALIGN - 1);
usr/src/uts/common/inet/sctp/sctp_common.c
215
fp->sf_pmss = (pmtu - hdrlen) & ~(SCTP_ALIGN - 1);
usr/src/uts/common/inet/sctp/sctp_cookie.c
596
if ((pad = ipsctplen % SCTP_ALIGN) != 0) {
usr/src/uts/common/inet/sctp/sctp_cookie.c
597
pad = SCTP_ALIGN - pad;
usr/src/uts/common/inet/sctp/sctp_cookie.c
967
if ((pad = ceclen & (SCTP_ALIGN - 1)) != 0)
usr/src/uts/common/inet/sctp/sctp_cookie.c
968
pad = SCTP_ALIGN - pad;
usr/src/uts/common/inet/sctp/sctp_error.c
478
if ((pad = len % SCTP_ALIGN) != 0) {
usr/src/uts/common/inet/sctp/sctp_error.c
479
pad = SCTP_ALIGN - pad;
usr/src/uts/common/inet/sctp/sctp_input.c
303
if ((pad = ch_len & (SCTP_ALIGN - 1)) != 0) {
usr/src/uts/common/inet/sctp/sctp_input.c
304
pad = SCTP_ALIGN - pad;
usr/src/uts/common/inet/sctp/sctp_output.c
1084
if ((extra = seglen & (SCTP_ALIGN - 1)) != 0)
usr/src/uts/common/inet/sctp/sctp_output.c
1085
extra = SCTP_ALIGN - extra;
usr/src/uts/common/inet/sctp/sctp_output.c
1234
if ((extra = chunklen & (SCTP_ALIGN - 1)) != 0)
usr/src/uts/common/inet/sctp/sctp_output.c
1235
extra = SCTP_ALIGN - extra;
usr/src/uts/common/inet/sctp/sctp_output.c
1863
if ((extra = seglen & (SCTP_ALIGN - 1)) != 0)
usr/src/uts/common/inet/sctp/sctp_output.c
1864
extra = SCTP_ALIGN - extra;
usr/src/uts/common/inet/sctp/sctp_output.c
1982
if ((extra = new_len & (SCTP_ALIGN - 1)) != 0)
usr/src/uts/common/inet/sctp/sctp_output.c
1983
extra = SCTP_ALIGN - extra;
usr/src/uts/common/inet/sctp/sctp_output.c
2091
if ((extra = seglen & (SCTP_ALIGN - 1)) != 0)
usr/src/uts/common/inet/sctp/sctp_output.c
2092
extra = SCTP_ALIGN - extra;
usr/src/uts/common/inet/sctp/sctp_output.c
2163
if ((extra = new_len & (SCTP_ALIGN - 1)) != 0)
usr/src/uts/common/inet/sctp/sctp_output.c
2164
extra = SCTP_ALIGN - extra;
usr/src/uts/common/inet/sctp/sctp_output.c
450
((intptr_t)chunk_head->b_rptr) & (SCTP_ALIGN - 1) ||
usr/src/uts/common/inet/sctp/sctp_output.c
670
ASSERT(pad < SCTP_ALIGN);
usr/src/uts/common/inet/sctp/sctp_output.c
683
if ((fill = allocb(SCTP_ALIGN, BPRI_MED)) != NULL) {
usr/src/uts/common/inet/sctp/sctp_output.c
740
if ((extra = msglen & (SCTP_ALIGN - 1)) != 0) {
usr/src/uts/common/inet/sctp/sctp_output.c
741
extra = SCTP_ALIGN - extra;