Home
last modified time | relevance | path

Searched defs:DECLARE_ALIGNED (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/libvpx/vpx_ports/
H A Dmem.h18 #define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(n))) macro
20 #define DECLARE_ALIGNED(n, typ, val) __declspec(align(n)) typ val macro
23 #define DECLARE_ALIGNED(n, typ, val) typ val macro
/aosp_15_r20/external/libaom/aom_ports/
H A Dmem.h19 #define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(n))) macro
21 #define DECLARE_ALIGNED(n, typ, val) __declspec(align(n)) typ val macro
24 #define DECLARE_ALIGNED(n, typ, val) typ val macro
/aosp_15_r20/external/libopenapv/src/
H A Doapv_port.h193 #define DECLARE_ALIGNED(var, n) __declspec(align(n)) var macro
195 #define DECLARE_ALIGNED(var, n) var __attribute__((aligned(n))) macro