Searched refs:_p_ (Results 1 – 4 of 4) sorted by relevance
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/inc/ |
D | OMX_VideoEnc_Utils.h | 369 #define VIDENC_MALLOC(_p_, _s_, _c_, _h_, dbg) \ argument 371 _p_ = (_c_*)malloc(_s_); \ 372 if (_p_ == NULL) { \ 378 OMX_TRACE1(dbg, "malloc() -> %p\n", _p_); \ 380 memset((_p_), 0x0, _s_); \ 381 if ((_p_) == NULL) { \ 386 eError = OMX_VIDENC_ListAdd(&(dbg), _h_, _p_); \ 393 #define VIDENC_FREE(_p_, _h_, dbg) \ argument 395 OMX_VIDENC_ListRemove((&dbg), _h_, _p_); \ 396 _p_ = NULL; \
|
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/test/ |
D | VideoEncTest.c | 88 #define VIDENCTEST_MALLOC(_p_, _s_, _c_, _h_) \ argument 89 _p_ = (_c_*)malloc(_s_); \ 90 if (_p_ == NULL) { \ 95 VIDENCTEST_MTRACE(": %d :malloc() -> %p\n", __LINE__, _p_); \ 96 memset((_p_), 0x0, _s_); \ 97 if ((_p_) == NULL) { \ 102 eError = VIDENCTEST_ListAdd(_h_, _p_); \ 110 #define VIDENCTEST_FREE(_p_, _h_) \ argument 111 VIDENCTEST_ListRemove(_h_, _p_); \ 112 _p_ = NULL; \ [all …]
|
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/inc/ |
D | OMX_JpegEnc_Utils.h | 185 #define OMX_MEMCPY_CHECK(_p_)\ argument 187 if (_p_ == NULL) { \
|
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/ |
D | OMX_VideoEncoder.c | 156 #define OMX_CONVERT_STATE(_s_, _p_) \ argument 157 if (_p_ == 0) { \ 160 else if (_p_ == 1) { \ 163 else if (_p_ == 2) { \ 166 else if (_p_ == 3) { \ 169 else if (_p_ == 4) { \ 172 else if (_p_ == 5) { \ 179 #define OMX_CONVERT_CMD(_s_, _p_) \ argument 180 if (_p_ == 0) { \ 183 else if (_p_ == 1) { \ [all …]
|