Home
last modified time | relevance | path

Searched refs:ByteSwap16 (Results 1 – 5 of 5) sorted by relevance

/utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/include/
H A Ddatatype.h412 #define ByteSwap16(x) (((x) & 0x00ff) << 8 | ((x) & 0xff00) >> 8) macro
420 #define LE2ME16(x) ByteSwap16(x)
424 #define ME2LE16(x) ByteSwap16(x)
427 #define BE2ME16(x) ByteSwap16(x)
431 #define ME2BE16(x) ByteSwap16(x)
/utopia/UTPA2-700.0.x/modules/ojpd_vdec_v2/api/jpeg_ex/cmodel/inc/
H A Djpeg_cmodel_def.h324 #define LE2ME16(x) ByteSwap16(x)
329 #define BE2ME16(x) ByteSwap16(x)
342 #define ByteSwap16(x) (((x) & 0x00ff) << 8 | ((x) & 0xff00) >> 8) macro
/utopia/UTPA2-700.0.x/modules/ojpd_vdec_v1/api/jpeg/cmodel/inc/
H A Djpeg_cmodel_def.h324 #define LE2ME16(x) ByteSwap16(x)
329 #define BE2ME16(x) ByteSwap16(x)
342 #define ByteSwap16(x) (((x) & 0x00ff) << 8 | ((x) & 0xff00) >> 8) macro
/utopia/UTPA2-700.0.x/modules/graphic/drv/ge/
H A DdrvGE.c950 …GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_CLUT_H, ByteSwap16(pGECtxLocal->halLocalCtx.u32Palet… in GE_SetPalette()
951 …GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_CLUT_L, ByteSwap16(pGECtxLocal->halLocalCtx.u32Palet… in GE_SetPalette()
968 …GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_CLUT_H, ByteSwap16(pGECtxLocal->halLocalCtx.u32Palet… in GE_SetPalette()
969 …GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_CLUT_L, ByteSwap16(pGECtxLocal->halLocalCtx.u32Palet… in GE_SetPalette()
4935 STR_GE_REG(REG_GE_CLUT_H) = (ByteSwap16(GEPalette[i]) & 0xFFFF); in MDrv_GESTR_SetPalette()
4936 STR_GE_REG(REG_GE_CLUT_L) = (ByteSwap16(GEPalette[i]>>16)); in MDrv_GESTR_SetPalette()
H A DdrvGE.h194 #define ByteSwap16(x) (((x) & 0x00ffUL) << 8 | ((x) & 0xff00UL) >> 8) macro