Home
last modified time | relevance | path

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

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTVertex.cpp144 unsigned int dwVal = *(unsigned int*)pData; in PVRTVertexRead() local
147 v[0] = (unsigned char) (dwVal >> 24); in PVRTVertexRead()
148 v[1] = (unsigned char) (dwVal >> 16); in PVRTVertexRead()
149 v[2] = (unsigned char) (dwVal >> 8); in PVRTVertexRead()
150 v[3] = (unsigned char) (dwVal >> 0); in PVRTVertexRead()
159 unsigned int dwVal = *(unsigned int*)pData; in PVRTVertexRead() local
162 v[0] = (unsigned char) (dwVal >> 0); in PVRTVertexRead()
163 v[1] = (unsigned char) (dwVal >> 8); in PVRTVertexRead()
164 v[2] = (unsigned char) (dwVal >> 16); in PVRTVertexRead()
165 v[3] = (unsigned char) (dwVal >> 24); in PVRTVertexRead()
[all …]
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/include/
DAlaLib.h92 unsigned int dwVal; in FSCANF_BYTE() local
94 Result = fscanf(stream, format, &dwVal); in FSCANF_BYTE()
96 (*pTmp) = (unsigned char)(dwVal & 0x000000FF); in FSCANF_BYTE()