HomeSort by: relevance | last modified time | path
    Searched defs:bswap32 (Results 1 - 12 of 12) sorted by relevancy

  /src/common/lib/libc/gen/
bswap32.c 1 /* $NetBSD: bswap32.c,v 1.3 2011/07/04 21:20:27 joerg Exp $ */
10 __RCSID("$NetBSD: bswap32.c,v 1.3 2011/07/04 21:20:27 joerg Exp $");
16 #undef bswap32 macro
19 bswap32(uint32_t x) function
  /src/lib/libc/gen/
Lint_bswap32.c 8 bswap32(u_int32_t b32) function
  /src/sys/lib/libkern/arch/sh3/
byte_swap_4.S 35 ENTRY(bswap32) function
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
bswap.c 59 bswap32 (unsigned int val) function
  /src/sys/sys/
bswap.h 17 uint32_t bswap32(uint32_t) __constfunc;
20 uint32_t bswap32(uint32_t) __RENAME(__bswap32) __constfunc;
86 #define __BYTE_SWAP_U32_VARIABLE bswap32
99 #define bswap32(x) \ macro
  /src/external/bsd/nsd/dist/simdzone/src/generic/
endian.h 144 static really_inline uint32_t bswap32(uint32_t x) function
146 // Copied from src/common/lib/libc/gen/bswap32.c in NetBSD
  /src/sys/crypto/aes/arch/x86/
aes_ni_64.S 1002 movdqa bswap32(%rip),%xmm4 /* xmm4 := bswap32 table */
1039 movdqa bswap32(%rip),%xmm4 /* xmm4 := bswap32 table */
1090 .type bswap32,@object
1091 bswap32: label
1093 END(bswap32)
  /src/external/public-domain/xz/dist/src/common/
tuklib_integer.h 58 # define bswap32(num) bswap_32(num) macro
75 # define bswap32(num) BSWAP_32(num) macro
121 #ifndef bswap32
122 # define bswap32(num) \ macro
156 # define conv32le(num) bswap32(num)
166 # define conv32be(num) bswap32(num)
  /src/crypto/external/apache2/openssl/dist/crypto/aria/
aria.c 35 #ifndef bswap32
36 #define bswap32(v) \ macro
383 (T3) = bswap32(T3); \
  /src/crypto/external/bsd/openssl/dist/crypto/aria/
aria.c 35 #define bswap32(v) \ macro
420 (T3) = bswap32(T3); \
  /src/crypto/external/bsd/openssl.old/dist/crypto/aria/
aria.c 35 #define bswap32(v) \ macro
420 (T3) = bswap32(T3); \
  /src/tools/compat/
compat_defs.h 429 #define __nbcompat_bswap64(x) (((u_int64_t)bswap32((x)) << 32) | \
430 ((u_int64_t)bswap32((x) >> 32)))
439 #ifdef bswap32
440 #undef bswap32 macro
442 #define bswap32(x) __nbcompat_bswap32(x) macro
1140 #define htole32(x) bswap32((u_int32_t)(x))
1150 #define htobe32(x) bswap32((u_int32_t)(x))

Completed in 36 milliseconds