Searched defs:ntohl (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/libs/utils/
H A DUnicode.cpp28 # define ntohl(x) ( ((x) << 24) | (((x) >> 24) & 255) | (((x) << 8) & 0xff0000) | (((x) >> 8) & 0xff00) ) macro
29 # define htonl(x) ntohl(x)
33 # define ntohl(x) (x) macro
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp54 #define ntohl(x) ( ((x) << 24) | (((x) >> 24) & 255) | (((x) << 8) & 0xff0000) | (((x) >> 8) & 0xff00) ) macro
55 #define htonl(x) ntohl(x)
59 #define ntohl(x) (x)
156 xDivs[i] = ntohl(xDivs[i]);
159 yDivs[i] = ntohl(yDivs[i]);
161 paddingLeft = ntohl(paddingLeft);
162 paddingRight = ntohl(paddingRight);
163 paddingTop = ntohl(paddingTop);
164 paddingBottom = ntohl(paddingBottom);
166 colors[i] = ntohl(color
[all...]

Completed in 330 milliseconds