Symbol: aligned
crypto/krb5/src/lib/crypto/builtin/aes/aes.h
107
#define ALIGNED_(x) __attribute__ ((aligned(x)))
crypto/openssl/crypto/ec/ecp_nistz256_table.c
25
__attribute((aligned(4096)))
crypto/openssl/crypto/ec/ecp_sm2p256_table.c
27
__attribute((aligned(4096)))
crypto/openssl/crypto/hashtable/hashtable.c
85
#define ALIGN __attribute__((aligned(8)))
crypto/openssl/crypto/mem_sec.c
430
size_t aligned;
crypto/openssl/crypto/mem_sec.c
556
aligned = (pgsize + sh.arena_size + (pgsize - 1)) & ~(pgsize - 1);
crypto/openssl/crypto/mem_sec.c
558
if (mprotect(sh.map_result + aligned, pgsize, PROT_NONE) < 0)
crypto/openssl/crypto/mem_sec.c
561
if (VirtualProtect(sh.map_result + aligned, pgsize, PAGE_NOACCESS, &flOldProtect) == FALSE)
crypto/openssl/include/internal/common.h
30
#define ALIGN32 __attribute((aligned(32)))
crypto/openssl/include/internal/common.h
31
#define ALIGN64 __attribute((aligned(64)))
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
186
# define JEMALLOC_ALIGNED(s) JEMALLOC_ATTR(aligned(s))
lib/libnetmap/libnetmap.h
579
} __attribute__((aligned(16)));
stand/ficl/words.c
4912
dictAppendWord(dp, "aligned", aligned, FW_DEFAULT);
stand/libsa/zalloc.c
114
char *aligned;
stand/libsa/zalloc.c
118
aligned = (char *)(roundup2(dptr, align) - MALLOCALIGN);
stand/libsa/zalloc.c
119
extra = aligned - ptr;
stand/libsa/zalloc.c
132
new = (MemNode *)aligned;
sys/bsm/audit.h
183
typedef u_int64_t au_asflgs_t __attribute__ ((aligned (8)));
sys/compat/linux/linux_rseq.c
70
} __attribute__((aligned(4 * sizeof(uint64_t))));
sys/compat/linux/linux_rseq.c
77
} __attribute__((aligned(4 * sizeof(uint64_t))));
sys/dev/hpt27xx/os_bsd.h
181
unsigned long vbus[0] __attribute__((aligned(sizeof(unsigned long))));
sys/dev/hptnr/os_bsd.h
185
unsigned long vbus[0] __attribute__((aligned(sizeof(unsigned long))));
sys/dev/hptrr/os_bsd.h
186
unsigned long vbus[0] __attribute__((aligned(sizeof(unsigned long))));
sys/dev/mxge/if_mxge.c
600
int aligned = 0;
sys/dev/mxge/if_mxge.c
608
aligned = 1;
sys/dev/mxge/if_mxge.c
610
aligned = 0;
sys/dev/mxge/if_mxge.c
614
aligned ? "aligned" : "unaligned");
sys/dev/mxge/if_mxge.c
624
aligned = 1;
sys/dev/mxge/if_mxge.c
632
if (aligned) {
sys/dev/rtwn/if_rtwnreg.h
50
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/if_rtwnreg.h
86
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/if_rtwnreg.h
99
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/if_rtwnvar.h
75
} __attribute__((aligned(4)));
sys/dev/rtwn/rtl8188e/r88e_fw_cmd.h
33
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/rtl8192c/pci/r92ce_rx_desc.h
38
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/rtl8192c/pci/r92ce_tx_desc.h
52
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/rtl8192c/r92c_fw_cmd.h
37
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/rtl8192c/r92c_rx_desc.h
66
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/rtl8192c/r92c_tx_desc.h
108
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/rtl8192c/usb/r92cu_tx_desc.h
42
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/rtl8812a/r12a_tx_desc.h
129
} __packed __attribute__((aligned(4)));
sys/dev/rtwn/rtl8812a/usb/r12au_tx_desc.h
52
} __packed __attribute__((aligned(4)));
sys/dev/smartpqi/smartpqi_defines.h
905
#define OS_ATTRIBUTE_ALIGNED(n) __attribute__((aligned(n)))
sys/kern/imgact_elf.c
1143
if (!aligned(phdr, Elf_Addr)) {
sys/kern/imgact_elf.c
2828
if (!aligned(note, Elf32_Addr)) {
sys/kern/imgact_elf.c
861
if (!aligned(phdr, Elf_Addr)) {
sys/ofed/include/uapi/rdma/ib_user_mad.h
166
typedef unsigned long __attribute__((aligned(4))) packed_ulong;
sys/x86/xen/hvm.c
181
} shared_page __attribute__((aligned(PAGE_SIZE)));
sys/xen/xen_common.c
61
__attribute__((aligned(64)));
tools/tools/netmap/lb.c
203
int status __attribute__((aligned(64)));
tools/tools/netmap/nmreplay.c
537
#define ALIGN_CACHE __attribute__ ((aligned (MY_CACHELINE)))