Searched defs:U8TOU32 (Results 1 – 3 of 3) sorted by relevance
70 # define U8TOU32(p) (*(const u32 *)(p)) macro73 # define U8TOU32(p) ({u32 ret; asm ("lwbrx %0,0,%1":"=r"(ret):"b"(p)); ret; }) macro76 # define U8TOU32(p) ({u32 ret; asm ("lrv %0,%1":"=d"(ret):"m"(*(u32 *)(p))); ret; }) macro81 # define U8TOU32(p) ((u32)(p)[0] | (u32)(p)[1]<<8 | \ macro
22 static unsigned int U8TOU32(const unsigned char *p) in U8TOU32() function
24 static unsigned int U8TOU32(const unsigned char *p) in U8TOU32() function