Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_Image.cpp710 #define JBIG2_GETDWORD(buf) ((FX_DWORD)(((buf)[0] << 24) | ((buf)[1] << 16) | ((buf)[2] << 8) | (bu… macro
753 wTmp = (JBIG2_GETDWORD(pSrc) << n) | (JBIG2_GETDWORD(pSrc + 4) >> (32 - n)); in subImage()
755 wTmp = JBIG2_GETDWORD(pSrc) << n; in subImage()
850 tmp1 = JBIG2_GETDWORD(lineSrc) << shift; in composeTo_opt2()
851 tmp2 = JBIG2_GETDWORD(lineDst); in composeTo_opt2()
879 tmp1 = JBIG2_GETDWORD(lineSrc) >> shift; in composeTo_opt2()
880 tmp2 = JBIG2_GETDWORD(lineDst); in composeTo_opt2()
910 … tmp1 = (JBIG2_GETDWORD(lineSrc) << shift1) | (JBIG2_GETDWORD(lineSrc + 4) >> shift2); in composeTo_opt2()
911 tmp2 = JBIG2_GETDWORD(lineDst); in composeTo_opt2()
946 tmp1 = (JBIG2_GETDWORD(sp) << shift1) | (JBIG2_GETDWORD(sp + 4) >> shift2); in composeTo_opt2()
[all …]