Home
last modified time | relevance | path

Searched refs:SWAP_BE32 (Results 1 – 6 of 6) sorted by relevance

/busybox-1.35.0/networking/
Dtls_aesgcm.c34 *(uint32_t*)(buf + 4) = SWAP_BE32(sz); in FlattenSzInBits()
83 unsigned long ti = SWAP_BE32(l[i]); in RIGHTSHIFTX()
86 l[i] = SWAP_BE32(ti); in RIGHTSHIFTX()
193 P32(x)[1] ^= SWAP_BE32(aSz * 8); in aesgcm_GHASH()
195 P32(x)[3] ^= SWAP_BE32(cSz * 8); in aesgcm_GHASH()
Dtls_sp_c32.c105 move_to_unaligned32(a, SWAP_BE32(*r)); in sp_256_to_bin_8()
140 *--r = SWAP_BE32(v); in sp_256_from_bin_8()
/busybox-1.35.0/include/
Dplatform.h205 # define SWAP_BE32(x) (x) macro
214 # define SWAP_BE32(x) bswap_32(x) macro
271 #define get_unaligned_be32(buf) ({ uint32_t v; move_from_unaligned32(v, buf); SWAP_BE32(v); })
273 #define put_unaligned_be32(val, buf) move_to_unaligned32(buf, SWAP_BE32(val))
/busybox-1.35.0/modutils/
Dmodutils.c175 } else if (*(uint32_t*)image != SWAP_BE32(0x7f454C46)) { in try_to_mmap_module()
/busybox-1.35.0/libbb/
Dhash_md5_sha.c506 W[i] = W[i+16] = SWAP_BE32(((uint32_t*)ctx->wbuffer)[i]); in sha1_process_block64()
639 W[t] = SWAP_BE32(words[t]); in sha256_process_block64()
864 ctx->hash[i] = SWAP_BE32(ctx->hash[i]); in sha1_end()
/busybox-1.35.0/runit/
Drunsv.c253 status.time_nsec_be32 = SWAP_BE32(s->start.tv_nsec); in update_status()