Home
last modified time | relevance | path

Searched refs:XNN_ALLOCATION_ALIGNMENT (Results 1 – 1 of 1) sorted by relevance

/external/XNNPACK/src/xnnpack/
Dallocator.h23 #define XNN_ALLOCATION_ALIGNMENT 4 macro
25 #define XNN_ALLOCATION_ALIGNMENT 64 macro
27 #define XNN_ALLOCATION_ALIGNMENT 16 macro
51 …params.allocator.aligned_allocate(xnn_params.allocator.context, XNN_ALLOCATION_ALIGNMENT, memory_s… in xnn_allocate_simd_memory()
56 xnn_params.allocator.context, XNN_ALLOCATION_ALIGNMENT, memory_size); in xnn_allocate_zero_simd_memory()
67 …(__GNUC__) && defined(__BIGGEST_ALIGNMENT__) && (__BIGGEST_ALIGNMENT__ >= XNN_ALLOCATION_ALIGNMENT)
71 #define XNN_SIMD_ALLOCA(size) __builtin_alloca_with_align((size), XNN_ALLOCATION_ALIGNMENT)
74 …(void*) ((((uintptr_t) __builtin_alloca((size) + XNN_ALLOCATION_ALIGNMENT)) | (XNN_ALLOCATION_ALIG…
77 …((void*) ((((uintptr_t) _alloca((size) + XNN_ALLOCATION_ALIGNMENT)) | (XNN_ALLOCATION_ALIGNMENT - …
80 …((void*) ((((uintptr_t) alloca((size) + XNN_ALLOCATION_ALIGNMENT)) | (XNN_ALLOCATION_ALIGNMENT - 1…