OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BSWAP4
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/boringssl/src/crypto/modes/
internal.h
76
#define
BSWAP4
(x) \
89
#define
BSWAP4
(x) \
102
#define
BSWAP4
(x) \
115
#define
BSWAP4
(x) \
126
#define
BSWAP4
(x) _byteswap_ulong((uint32_t)(x))
132
#define
BSWAP4
(x) _bswap4(x)
137
#if defined(
BSWAP4
) && !defined(STRICT_ALIGNMENT)
138
#define GETU32(p)
BSWAP4
(*(const uint32_t *)(p))
139
#define PUTU32(p, v) *(uint32_t *)(p) =
BSWAP4
(v)
/external/openssl/crypto/modes/
modes_lcl.h
42
# define
BSWAP4
(x) ({ u32 ret=(x); \
50
# define
BSWAP4
(x) ({ u32 ret=(x); \
58
# define
BSWAP4
(x) ({ u32 ret; \
67
# define
BSWAP4
(x) _byteswap_ulong((u32)(x))
73
# define
BSWAP4
(x) _bswap4(x)
78
#if defined(
BSWAP4
) && !defined(STRICT_ALIGNMENT)
79
#define GETU32(p)
BSWAP4
(*(const u32 *)(p))
80
#define PUTU32(p,v) *(u32 *)(p) =
BSWAP4
(v)
Completed in 135 milliseconds