Searched refs:val (Results 1 – 3 of 3) sorted by relevance
69 inline static u16 NETSwapBytes16( u16 val ) in NETSwapBytes16() argument71 return (u16)( (((val) >> 8UL) & 0x00FFUL) | in NETSwapBytes16()72 (((val) << 8UL) & 0xFF00UL) ); in NETSwapBytes16()75 inline static u32 NETSwapBytes32( u32 val ) in NETSwapBytes32() argument77 return (u32)( (((val) >> 24UL) & 0x000000FFUL) | in NETSwapBytes32()78 (((val) >> 8UL) & 0x0000FF00UL) | in NETSwapBytes32()79 (((val) << 8UL) & 0x00FF0000UL) | in NETSwapBytes32()80 (((val) << 24UL) & 0xFF000000UL) ); in NETSwapBytes32()94 inline static void NETWriteSwappedBytes16( u16* dst, u16 val ) in NETWriteSwappedBytes16() argument96 __sthbrx(val, (void*)(dst), 0); in NETWriteSwappedBytes16()[all …]
190 static void OutputIntForBin(unsigned int val, unsigned int byte, FILE *fp) in OutputIntForBin() argument196 tmp = val >> i * 8; in OutputIntForBin()198 val = val - (tmp << i * 8); in OutputIntForBin()
115 ; <Priority>="<File Name>",<laypout val>118 ; <layout val> value.119 ; If the <layout val> value is negative, the files are laid out from the inside of the disk, …