/hardware/intel/common/wrs_omxil_core/core/src/ |
D | intel_video_config_parser.cpp | 25 #define GetUnalignedWord( pb, w ) \ argument 26 (w) = ((uint16) *(pb + 1) << 8) + *pb; 28 #define GetUnalignedDword( pb, dw ) \ argument 29 (dw) = ((uint32) *(pb + 3) << 24) + \ 30 ((uint32) *(pb + 2) << 16) + \ 31 ((uint16) *(pb + 1) << 8) + *pb; 33 #define GetUnalignedWordEx( pb, w ) GetUnalignedWord( pb, w ); (pb) += sizeof(uint16); argument 34 #define GetUnalignedDwordEx( pb, dw ) GetUnalignedDword( pb, dw ); (pb) += sizeof(uint32); argument 35 #define GetUnalignedQwordEx( pb, qw ) GetUnalignedQword( pb, qw ); (pb) += sizeof(uint64); argument
|
/hardware/ti/omap3/omx/ti_omx_config_parser/src/ |
D | ti_video_config_parser.cpp | 25 #define GetUnalignedWord( pb, w ) \ argument 26 (w) = ((uint16) *(pb + 1) << 8) + *pb; 28 #define GetUnalignedDword( pb, dw ) \ argument 29 (dw) = ((uint32) *(pb + 3) << 24) + \ 30 ((uint32) *(pb + 2) << 16) + \ 31 ((uint16) *(pb + 1) << 8) + *pb; 33 #define GetUnalignedWordEx( pb, w ) GetUnalignedWord( pb, w ); (pb) += sizeof(uint16); argument 34 #define GetUnalignedDwordEx( pb, dw ) GetUnalignedDword( pb, dw ); (pb) += sizeof(uint32); argument 35 #define GetUnalignedQwordEx( pb, qw ) GetUnalignedQword( pb, qw ); (pb) += sizeof(uint64); argument
|
/hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/inc/ |
D | OMX_WmaDec_Utils.h | 237 #define GetUnalignedWord( pb, w ) \ argument 238 (w) = ((OMX_U16) *(pb + 1) << 8) + *pb; 240 #define GetUnalignedDword( pb, dw ) \ argument 241 (dw) = ((OMX_U32) *(pb + 3) << 24) + \ 242 ((OMX_U32) *(pb + 2) << 16) + \ 243 ((OMX_U16) *(pb + 1) << 8) + *pb; 245 #define GetUnalignedWordEx( pb, w ) GetUnalignedWord( pb, w ); (pb) += sizeof(OMX_U16); argument 246 #define GetUnalignedDwordEx( pb, dw ) GetUnalignedDword( pb, dw ); (pb) += sizeof(OMX_U32); argument
|
/hardware/ti/omap4-aah/domx/omx_proxy_component/omx_video_dec/src/ |
D | omx_proxy_videodec_utils.c | 64 #define VIDDEC_GetUnalignedDword( pb, dw ) \ argument 65 (dw) = ((OMX_U32) *(pb + 3) << 24) + \ 66 ((OMX_U32) *(pb + 2) << 16) + \ 67 ((OMX_U16) *(pb + 1) << 8) + *pb; 69 #define VIDDEC_GetUnalignedDwordEx( pb, dw ) VIDDEC_GetUnalignedDword( pb, dw ); (pb) += sizeof(O… argument
|
/hardware/intel/img/libdrm/libdrm/nouveau/ |
D | nouveau_pushbuf.c | 124 struct nouveau_pushbuf_priv *nvpb = &nvchan->pb; in nouveau_pushbuf_space_call() 160 struct nouveau_pushbuf_priv *nvpb = &nvchan->pb; in nouveau_pushbuf_space() 184 struct nouveau_pushbuf_priv *nvpb = &nvchan->pb; in nouveau_pushbuf_fini_call() 198 struct nouveau_pushbuf_priv *nvpb = &nvchan->pb; in nouveau_pushbuf_init_call() 228 struct nouveau_pushbuf_priv *nvpb = &nvchan->pb; in nouveau_pushbuf_init() 258 struct nouveau_pushbuf_priv *nvpb = &nvchan->pb; in nouveau_pushbuf_flush()
|
D | nouveau_private.h | 71 struct nouveau_pushbuf_priv pb; member
|
/hardware/ti/omap3/omx/video/src/openmax_il/video_decode/inc/ |
D | OMX_VideoDec_Utils.h | 1356 #define VIDDEC_GetUnalignedDword( pb, dw ) \ argument 1357 (dw) = ((OMX_U32) *(pb + 3) << 24) + \ 1358 ((OMX_U32) *(pb + 2) << 16) + \ 1359 ((OMX_U16) *(pb + 1) << 8) + *pb; 1361 …#define VIDDEC_GetUnalignedDwordEx( pb, dw ) VIDDEC_GetUnalignedDword( pb, dw ); (pb) += sizeof(… argument
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_bitstream.c | 165 const unsigned char *pb = b->prob; in pack_mb_tokens() local 172 vp9_write(w, bb, pb[i >> 1]); in pack_mb_tokens()
|