Home
last modified time | relevance | path

Searched defs:ALIGN16 (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/mesa/math/
Dm_debug_util.h305 # define ALIGN16(type, array) type array __attribute__ ((aligned (16))) macro
307 # define ALIGN16(type, array) type array __declspec(align(16)) /* GH: Does this work? */ macro
309 # define ALIGN16(type, array) /* Watcom does not support this */ macro
311 # define ALIGN16(type, array) type __align (16) array macro
314 # define ALIGN16 macro
/external/chromium_org/third_party/mesa/src/src/mesa/math/
Dm_debug_util.h305 # define ALIGN16(type, array) type array __attribute__ ((aligned (16))) macro
307 # define ALIGN16(type, array) type array __declspec(align(16)) /* GH: Does this work? */ macro
309 # define ALIGN16(type, array) /* Watcom does not support this */ macro
311 # define ALIGN16(type, array) type __align (16) array macro
314 # define ALIGN16 macro
/external/chromium_org/third_party/libjingle/source/talk/session/media/
Dyuvscaler_unittest.cc39 #define ALIGN16(var) __declspec(align(16)) var macro
41 #define ALIGN16(var) var __attribute__((aligned(16))) macro
/external/libhevc/common/
Dihevc_macros.h50 #define ALIGN16(x) ((((x) + 15) >> 4) << 4) macro
/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dvideoframe_unittest.h47 #define ALIGN16(var) __declspec(align(16)) var macro
49 #define ALIGN16(var) var __attribute__((aligned(16))) macro
/external/libvpx/libvpx/third_party/libyuv/source/
Dscale.c30 #define ALIGN16(var) __declspec(align(16)) var macro