Searched refs:_al (Results 1 – 2 of 2) sorted by relevance
/third_party/openh264/codec/common/inc/ |
D | macros.h | 57 #define ENFORCE_STACK_ALIGN_1D(_tp, _nm, _sz, _al) \ argument 58 _tp _nm ## _tEmP[(_sz)+(_al)-1]; \ 59 …_tp *_nm = _nm ## _tEmP + ((_al)-1) - (((uintptr_t)(_nm ## _tEmP + ((_al)-1)) & ((_al)-1))/sizeof(… 62 #define ENFORCE_STACK_ALIGN_2D(_tp, _nm, _cx, _cy, _al) \ argument 63 …assert( ((_al) && !((_al) & ((_al) - 1))) && ((_al) >= sizeof(_tp)) ); /*_al should be power-of-2 … 64 _tp _nm ## _tEmP[(_cx)*(_cy)+(_al)/sizeof(_tp)-1]; \ 65 _tp *_nm ## _tEmP_al = _nm ## _tEmP + ((_al)/sizeof(_tp)-1); \ 66 _nm ## _tEmP_al -= (((uintptr_t)_nm ## _tEmP_al & ((_al)-1))/sizeof(_tp)); \
|
/third_party/openh264/test/encoder/ |
D | EncUT_SVC_me.cpp | 143 #define ENFORCE_NEW_ALIGN_1D(_tp, _nm, _nbuff, _sz, _al) \ argument 144 _tp *_nbuff = new _tp[(_sz)+(_al)-1]; \ 145 _tp *_nm = _nbuff + ((_al)-1) - (((uintptr_t)(_nbuff + ((_al)-1)) & ((_al)-1))/sizeof(_tp));
|