OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ALIGNED
(Results
1 - 6
of
6
) sorted by null
/external/boringssl/src/crypto/poly1305/
poly1305_test.cc
26
// |CRYPTO_poly1305_finish| requires a 16-byte-
aligned
output.
29
#define
ALIGNED
__declspec(align(16))
31
#define
ALIGNED
alignas(16)
50
ALIGNED
uint8_t out[16];
/external/clang/test/Sema/
align-x86.c
35
#define
ALIGNED
(x) __attribute__((
aligned
(x)))
37
typedef
ALIGNED
(2) struct {
47
typedef struct
ALIGNED
(2) {
/external/libunwind/include/
compiler.h
34
# define
ALIGNED
(x) __attribute__((
aligned
(x)))
58
# define
ALIGNED
(x)
/external/boringssl/src/crypto/cipher/
e_chacha20poly1305.c
83
#define
ALIGNED
__attribute__((
aligned
(16)))
85
#define
ALIGNED
101
uint8_t poly1305_key[32]
ALIGNED
;
142
uint8_t tag[POLY1305_TAG_LEN]
ALIGNED
;
176
uint8_t tag[POLY1305_TAG_LEN]
ALIGNED
;
/external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h
130
# define
ALIGNED
(x) __declspec(align(x))
141
// Please only use the
ALIGNED
macro before the type.
142
// Using
ALIGNED
after the variable declaration is not portable!
143
# define
ALIGNED
(x) __attribute__((
aligned
(x)))
173
typedef
ALIGNED
(1) u16 uu16;
174
typedef
ALIGNED
(1) u32 uu32;
175
typedef
ALIGNED
(1) u64 uu64;
176
typedef
ALIGNED
(1) s16 us16;
177
typedef
ALIGNED
(1) s32 us32
[
all
...]
/external/ImageMagick/MagickCore/
accelerate.c
91
#define
ALIGNED
(pointer,type) ((((size_t)(pointer)) & (sizeof(type)-1)) == 0)
853
/* If the host pointer is
aligned
to the size of CLPixelPacket,
856
if (
ALIGNED
(inputPixels,CLPixelPacket))
903
if (
ALIGNED
(inputPixels,CLPixelPacket))
[
all
...]
Completed in 295 milliseconds