Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_Image.cpp175 uint32_t wTmp; in subImage() local
215 wTmp = (JBIG2_GETDWORD(pSrc) << n) | in subImage()
218 wTmp = JBIG2_GETDWORD(pSrc) << n; in subImage()
220 pDst[0] = (uint8_t)(wTmp >> 24); in subImage()
221 pDst[1] = (uint8_t)(wTmp >> 16); in subImage()
222 pDst[2] = (uint8_t)(wTmp >> 8); in subImage()
223 pDst[3] = (uint8_t)wTmp; in subImage()
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTTexture.cpp123 unsigned int wTmp = w, hTmp = h; in PVRTTextureCreate() local
128 len += PVRT_MAX(wTmp, wMin) * PVRT_MAX(hTmp, hMin); in PVRTTextureCreate()
129 wTmp >>= 1; in PVRTTextureCreate()
132 while(bMIPMap && (wTmp || hTmp)); in PVRTTextureCreate()