Lines Matching refs:_new
41 #define __ANDROID_KABI_CHECK_SIZE_ALIGN(_orig, _new) \ argument
43 _Static_assert(sizeof(struct{_new;}) <= sizeof(struct{_orig;}), \
45 __stringify(_new) \
48 _Static_assert(__alignof__(struct{_new;}) <= __alignof__(struct{_orig;}), \
52 __stringify(_new) ); \
57 #define _ANDROID_KABI_REPLACE(_orig, _new) _orig argument
61 #define _ANDROID_KABI_REPLACE(_orig, _new) \ argument
63 _new; \
67 __ANDROID_KABI_CHECK_SIZE_ALIGN(_orig, _new); \
103 #define ANDROID_KABI_USE(number, _new) \ argument
104 _ANDROID_KABI_REPLACE(_ANDROID_KABI_RESERVE(number), _new)