Symbol: mbc_marshal_fetch_byte
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1387
*data = mbc_marshal_fetch_byte(mbc);
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1411
tmp = (uint16_t)mbc_marshal_fetch_byte(mbc);
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1412
tmp |= ((uint16_t)mbc_marshal_fetch_byte(mbc)) << 8;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1437
tmp = (uint32_t)mbc_marshal_fetch_byte(mbc);
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1438
tmp |= ((uint32_t)mbc_marshal_fetch_byte(mbc)) << 8;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1439
tmp |= ((uint32_t)mbc_marshal_fetch_byte(mbc)) << 16;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1440
tmp |= ((uint32_t)mbc_marshal_fetch_byte(mbc)) << 24;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1477
tmp = (uint64_t)mbc_marshal_fetch_byte(mbc) << 32;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1478
tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc) << 40;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1479
tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc) << 48;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1480
tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc) << 56;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1481
tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc);
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1482
tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc) << 8;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1483
tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc) << 16;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1484
tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc) << 24;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1510
tmp = (uint32_t)mbc_marshal_fetch_byte(mbc);
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1511
tmp |= ((uint64_t)mbc_marshal_fetch_byte(mbc)) << 8;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1512
tmp |= ((uint64_t)mbc_marshal_fetch_byte(mbc)) << 16;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1513
tmp |= ((uint64_t)mbc_marshal_fetch_byte(mbc)) << 24;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1514
tmp |= ((uint64_t)mbc_marshal_fetch_byte(mbc)) << 32;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1515
tmp |= ((uint64_t)mbc_marshal_fetch_byte(mbc)) << 40;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1516
tmp |= ((uint64_t)mbc_marshal_fetch_byte(mbc)) << 48;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
1517
tmp |= ((uint64_t)mbc_marshal_fetch_byte(mbc)) << 56;
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
227
*cvalp++ = mbc_marshal_fetch_byte(mbc);
usr/src/uts/common/fs/smbsrv/smb_mbuf_marshaling.c
53
static uint8_t mbc_marshal_fetch_byte(mbuf_chain_t *mbc);