Home
last modified time | relevance | path

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

/RevoEX-2.1/include/revolution/net/
DNETDigest.h63 inline static u16 NETSwapBytes16( u16 val ) in NETSwapBytes16() argument
65 return (u16)( (((val) >> 8UL) & 0x00FFUL) | in NETSwapBytes16()
66 (((val) << 8UL) & 0xFF00UL) ); in NETSwapBytes16()
69 inline static u32 NETSwapBytes32( u32 val ) in NETSwapBytes32() argument
71 return (u32)( (((val) >> 24UL) & 0x000000FFUL) | in NETSwapBytes32()
72 (((val) >> 8UL) & 0x0000FF00UL) | in NETSwapBytes32()
73 (((val) << 8UL) & 0x00FF0000UL) | in NETSwapBytes32()
74 (((val) << 24UL) & 0xFF000000UL) ); in NETSwapBytes32()
88 inline static void NETWriteSwappedBytes16( u16* dst, u16 val ) in NETWriteSwappedBytes16() argument
90 __sthbrx(val, (void*)(dst), 0); in NETWriteSwappedBytes16()
[all …]
/RevoEX-2.1/build/tools/makeChjp/
Dmain.c190 static void OutputIntForBin(unsigned int val, unsigned int byte, FILE *fp) in OutputIntForBin() argument
196 tmp = val >> i * 8; in OutputIntForBin()
198 val = val - (tmp << i * 8); in OutputIntForBin()