Home
last modified time | relevance | path

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

/external/epid-sdk/ext/ipp/sources/ippcp/
Downcp.h607 #define HSTRING_TO_U32(ptrByte) \ argument
608 ((((ptrByte)[0]) <<24) \
609 +(((ptrByte)[1]) <<16) \
610 +(((ptrByte)[2]) <<8) \
611 +((ptrByte)[3]))
612 #define U32_TO_HSTRING(ptrByte, x) \ argument
613 (ptrByte)[0] = (Ipp8u)((x)>>24); \
614 (ptrByte)[1] = (Ipp8u)((x)>>16); \
615 (ptrByte)[2] = (Ipp8u)((x)>>8); \
616 (ptrByte)[3] = (Ipp8u)(x)