/external/swiftshader/src/System/ |
D | Types.hpp | 39 #define ALIGN(bytes, type) __declspec(align(bytes)) type macro 42 #define ALIGN(bytes, type) type __attribute__((aligned(bytes))) macro 51 typedef ALIGN(16, uint64_t) qword2[2]; typedef 52 typedef ALIGN(4, uint8_t) byte4[4]; typedef 53 typedef ALIGN(8, uint8_t) byte8[8]; typedef 54 typedef ALIGN(16, uint8_t) byte16[16]; typedef 55 typedef ALIGN(8, uint16_t) word4[4]; typedef 56 typedef ALIGN(8, uint32_t) dword2[2]; typedef 57 typedef ALIGN(16, uint32_t) dword4[4]; typedef 58 typedef ALIGN(16, uint64_t) xword[2]; typedef [all …]
|
/external/swiftshader/src/Common/ |
D | Types.hpp | 40 #define ALIGN(bytes, type) __declspec(align(bytes)) type macro 43 #define ALIGN(bytes, type) type __attribute__((aligned(bytes))) macro 52 typedef ALIGN(16, uint64_t) qword2[2]; typedef 53 typedef ALIGN(4, uint8_t) byte4[4]; typedef 54 typedef ALIGN(8, uint8_t) byte8[8]; typedef 55 typedef ALIGN(16, uint8_t) byte16[16]; typedef 56 typedef ALIGN(8, uint16_t) word4[4]; typedef 57 typedef ALIGN(8, uint32_t) dword2[2]; typedef 58 typedef ALIGN(16, uint32_t) dword4[4]; typedef 59 typedef ALIGN(16, uint64_t) xword[2]; typedef [all …]
|
/external/python/cpython3/Modules/_sha3/kcp/ |
D | align.h | 26 #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/speex/libspeexdsp/ |
D | stack_alloc.h | 91 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro 97 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
|
/external/minigbm/ |
D | util.h | 13 #define ALIGN(A, B) (((A) + (B)-1) & ~((B)-1)) macro
|
/external/libdrm/ |
D | util_math.h | 32 #define ALIGN(value, alignment) __align_mask(value, (typeof(value))((alignment) - 1)) macro
|
/external/owasp/sanitizer/src/main/org/owasp/html/examples/ |
D | EbayPolicyExample.java | 96 private static final Pattern ALIGN = Pattern.compile( field in EbayPolicyExample
|
/external/libopus/celt/ |
D | stack_alloc.h | 136 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro 143 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) macro
|
/external/python/cpython3/Modules/_ctypes/libffi_msvc/ |
D | ffi_common.h | 45 #define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1) macro
|
/external/python/cpython2/Modules/_ctypes/libffi_msvc/ |
D | ffi_common.h | 45 #define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1) macro
|
/external/python/cpython3/Modules/_ctypes/libffi_osx/include/ |
D | ffi_common.h | 73 #define ALIGN(v, a) (((size_t)(v) + (a) - 1) & ~((a) - 1)) macro
|
/external/python/cpython2/Modules/_ctypes/libffi_osx/include/ |
D | ffi_common.h | 73 #define ALIGN(v, a) (((size_t)(v) + (a) - 1) & ~((a) - 1)) macro
|
/external/u-boot/tools/ |
D | mksunxiboot.c | 47 #define ALIGN(x, a) __ALIGN_MASK((x), (typeof(x))(a)-1) macro
|
/external/mesa3d/src/util/ |
D | build_id.c | 40 #define ALIGN(val, align) (((val) + (align) - 1) & ~((align) - 1)) macro
|
D | slab.c | 31 #define ALIGN(value, align) (((value) + (align) - 1) & ~((align) - 1)) macro
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
D | Attribute.java | 37 public static final Attribute ALIGN = new AttributeImpl ("ALIGN"); field in Attribute
|
/external/python/cpython2/Modules/_ctypes/libffi_arm_wince/ |
D | ffi_common.h | 62 #define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1) macro
|
/external/libyuv/files/unit_test/ |
D | convert_test.cc | 492 #define ALIGNINT(V, ALIGN) (((V) + (ALIGN)-1) / (ALIGN) * (ALIGN)) argument 494 #define TESTPLANARTOBI(FMT_PLANAR, SUBSAMP_X, SUBSAMP_Y, FMT_B, BPP_B, ALIGN, \ argument 553 #define TESTPLANARTOB(FMT_PLANAR, SUBSAMP_X, SUBSAMP_Y, FMT_B, BPP_B, ALIGN, \ argument 597 #define TESTQPLANARTOBI(FMT_PLANAR, SUBSAMP_X, SUBSAMP_Y, FMT_B, BPP_B, ALIGN, \ argument 650 #define TESTQPLANARTOB(FMT_PLANAR, SUBSAMP_X, SUBSAMP_Y, FMT_B, BPP_B, ALIGN, \ argument 1597 #define TESTPLANARTOBID(FMT_PLANAR, SUBSAMP_X, SUBSAMP_Y, FMT_B, BPP_B, ALIGN, \ argument 1656 #define TESTPLANARTOBD(FMT_PLANAR, SUBSAMP_X, SUBSAMP_Y, FMT_B, BPP_B, ALIGN, \ argument
|
/external/python/cpython2/Modules/_ctypes/libffi/include/ |
D | ffi_common.h | 77 #define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1) macro
|
/external/libffi/include/ |
D | ffi_common.h | 77 #define ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1) macro
|
/external/dtc/tests/ |
D | tests.h | 35 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) macro
|
/external/iproute2/tc/ |
D | m_xt.c | 49 #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) macro
|
/external/dtc/ |
D | fdtdump.c | 21 #define ALIGN(x, a) (((x) + ((a) - 1)) & ~((a) - 1)) macro
|
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/ |
D | sigsegv.c | 103 #define ALIGN(x,sz) ((typeof(x))_ALIGN((unsigned long)(x),(unsigned long)(sz))) macro
|
/external/libdrm/intel/ |
D | intel_bufmgr_priv.h | 321 #define ALIGN(value, alignment) ((value + alignment - 1) & ~(alignment - 1)) macro
|