HomeSort by: relevance | last modified time | path
    Searched refs:BSWAP_32 (Results 1 - 16 of 16) sorted by relevancy

  /src/external/cddl/osnet/sys/sys/
byteorder.h 53 #define BSWAP_32(x) ((BSWAP_16(x) << 16) | BSWAP_16((x) >> 16))
54 #define BSWAP_64(x) ((BSWAP_32(x) << 32) | BSWAP_32((x) >> 32))
71 #define LE_32(x) BSWAP_32(x)
80 #define BE_32(x) BSWAP_32(x)
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zfs_byteswap.c 39 ace->a_who = BSWAP_32(ace->a_who);
40 ace->a_access_mask = BSWAP_32(ace->a_access_mask);
81 BSWAP_32(zacep->z_hdr.z_access_mask);
92 acep->a_access_mask = BSWAP_32(acep->a_access_mask);
95 acep->a_who = BSWAP_32(acep->a_who);
189 zp->zp_acl.z_acl_size = BSWAP_32(zp->zp_acl.z_acl_size);
zap_leaf.c 118 buf->l_hdr.lh_magic = BSWAP_32(buf->l_hdr.lh_magic);
142 le->le_cd = BSWAP_32(le->le_cd);
sa.c 1253 sa_hdr_phys->sa_magic = BSWAP_32(sa_hdr_phys->sa_magic);
1292 VERIFY(BSWAP_32(sa_hdr_phys->sa_magic) == SA_MAGIC);
dmu_send.c 1930 #define DO32(X) (drr->drr_u.X = BSWAP_32(drr->drr_u.X))
1931 drr->drr_type = BSWAP_32(drr->drr_type);
1932 drr->drr_payloadlen = BSWAP_32(drr->drr_payloadlen);
zap_micro.c 236 BSWAP_32(buf->mz_chunk[i].mze_cd);
dmu.c 2268 buf[i] = BSWAP_32(buf[i]);
zfs_vfsops.c 854 if (sa.sa_magic == BSWAP_32(SA_MAGIC)) {
  /src/external/cddl/osnet/dist/cmd/zstreamdump/
zstreamdump.c 294 drr->drr_type = BSWAP_32(drr->drr_type);
296 BSWAP_32(drr->drr_payloadlen);
324 drrb->drr_type = BSWAP_32(drrb->drr_type);
325 drrb->drr_flags = BSWAP_32(drrb->drr_flags);
408 drro->drr_type = BSWAP_32(drro->drr_type);
410 BSWAP_32(drro->drr_bonustype);
411 drro->drr_blksz = BSWAP_32(drro->drr_blksz);
413 BSWAP_32(drro->drr_bonuslen);
454 drrw->drr_type = BSWAP_32(drrw->drr_type);
567 BSWAP_32(drrwe->drr_lsize)
    [all...]
  /src/external/cddl/osnet/dist/common/zfs/
zfs_fletcher.c 204 a += BSWAP_32(ip[0]);
250 a += BSWAP_32(ip[0]);
  /src/external/cddl/osnet/dist/lib/libuutil/common/
libuutil_impl.h 65 #define UU_PTR_ENCODE(ptr) BSWAP_32((uintptr_t)(void *)(ptr))
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
endian.h 94 #define bswap_32(x) BSWAP_32(x) macro
120 #ifndef bswap_32
121 #define bswap_32(x) \ macro
126 #endif /* !bswap_32 */
162 #define htole32(x) bswap_32(x)
164 #define le32toh(x) bswap_32(x)
168 #define htobe32(x) bswap_32(x)
170 #define be32toh(x) bswap_32(x)
  /src/external/mpl/bind/dist/lib/isc/include/isc/
endian.h 72 #define bswap_32(x) BSWAP_32(x) macro
98 #ifndef bswap_32
99 #define bswap_32(x) \ macro
104 #endif /* !bswap_32 */
140 #define htole32(x) bswap_32(x)
142 #define le32toh(x) bswap_32(x)
146 #define htobe32(x) bswap_32(x)
148 #define be32toh(x) bswap_32(x)
  /src/external/public-domain/xz/dist/src/common/
tuklib_integer.h 80 # define byteswap32(num) bswap_32(num)
105 # ifdef BSWAP_32
106 # define byteswap32(num) BSWAP_32(num)
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_sendrecv.c 2757 drre.drr_type = BSWAP_32(drre.drr_type);
2936 drr->drr_type = BSWAP_32(drr->drr_type);
2953 BSWAP_32(drr->drr_u.drr_object.
2980 BSWAP_32(drr->drr_u.drr_write_embedded.
3659 if (drr.drr_type == DRR_END || drr.drr_type == BSWAP_32(DRR_END)) {
3677 drr.drr_type = BSWAP_32(drr.drr_type);
3678 drr.drr_payloadlen = BSWAP_32(drr.drr_payloadlen);
3682 drrb->drr_type = BSWAP_32(drrb->drr_type);
3683 drrb->drr_flags = BSWAP_32(drrb->drr_flags);
  /src/external/cddl/osnet/dist/tools/ctf/cvt/
ctf.c 74 #define BSWAP_32(x) ((BSWAP_16(x) << 16) | BSWAP_16((x) >> 16))
77 #define SWAP_32(x) (x) = BSWAP_32(x)

Completed in 104 milliseconds