Home
last modified time | relevance | path

Searched defs:ALIGN (Results 1 – 25 of 72) sorted by relevance

123

/external/python/cpython3/Modules/_sha3/kcp/
Dalign.h26 #define ALIGN(x) __attribute__ ((aligned(x))) macro
28 #define ALIGN(x) __declspec(align(x)) macro
30 #define ALIGN(x) __align(x) macro
32 #define ALIGN(x) macro
/external/libjpeg-turbo/simd/arm/
Dalign.h23 #define ALIGN(alignment) __declspec(align(alignment)) macro
25 #define ALIGN(alignment) __attribute__((aligned(alignment))) macro
/external/musl/src/string/
Dstrlen.c5 #define ALIGN (sizeof(size_t)) macro
Dstrchrnul.c5 #define ALIGN (sizeof(size_t)) macro
Dstpcpy.c5 #define ALIGN (sizeof(size_t)) macro
Dstpncpy.c5 #define ALIGN (sizeof(size_t)-1) macro
Dmemchr.c6 #define ALIGN (sizeof(size_t)-1) macro
Dstrlcpy.c6 #define ALIGN (sizeof(size_t)-1) macro
Dmemccpy.c5 #define ALIGN (sizeof(size_t)-1) macro
/external/rust/crates/buddy_system_allocator/benches/
Dmemory_allocator_benchmark.rs18 const ALIGN: usize = 8; constant
/external/zstd/contrib/linux-kernel/test/include/linux/
Dkernel.h16 #define ALIGN(x, a) ALIGN_MASK((x), (a) - 1) macro
/external/nanopb-c/tests/regression/issue_504/
Dtest.c9 #define ALIGN 0x100 macro
/external/musl/src/network/
Dgetservbyname_r.c11 #define ALIGN (sizeof(struct { char a; char *b; }) - sizeof(char *)) macro
/external/libdrm/
Dutil_math.h32 #define ALIGN(value, alignment) __align_mask(value, (__typeof__(value))((alignment) - 1)) macro
/external/minigbm/
Dutil.h13 #define ALIGN(A, B) (((A) + (B)-1) & ~((B)-1)) macro
/external/libopus/celt/
Dstack_alloc.h150 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
157 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
/external/igt-gpu-tools/lib/
Ddrmtest.h78 #define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1)) macro
/external/owasp/sanitizer/src/main/org/owasp/html/examples/
DEbayPolicyExample.java96 private static final Pattern ALIGN = Pattern.compile( field in EbayPolicyExample
/external/musl/src/malloc/
Dlite_malloc.c11 #define ALIGN 16 macro
/external/python/cpython2/Modules/_ctypes/libffi_msvc/
Dffi_common.h45 #define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1) macro
/external/python/cffi/c/libffi_x86_x64/
Dffi_common.h45 #define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1) macro
/external/python/cpython2/Modules/_ctypes/libffi_osx/include/
Dffi_common.h73 #define ALIGN(v, a) (((size_t)(v) + (a) - 1) & ~((a) - 1)) macro
/external/python/cpython3/Modules/_ctypes/libffi_osx/include/
Dffi_common.h73 #define ALIGN(v, a) (((size_t)(v) + (a) - 1) & ~((a) - 1)) macro
/external/arm-optimized-routines/string/test/
Dstrlen.c43 #define ALIGN 32 macro
/external/swiftshader/src/System/
DTypes.hpp45 # define ALIGN(bytes, type) __declspec(align(bytes)) type macro
48 # define ALIGN(bytes, type) type __attribute__((aligned(bytes))) macro

123