| .. | |||||
| access_ok.h | |||||
| be_byteshift.h | |||||
| be_memmove.h | |||||
| be_struct.h | |||||
| generic.h | |||||
| le_byteshift.h | |||||
| le_memmove.h | |||||
| le_struct.h | |||||
| memmove.h | |||||
| packed_struct.h |
| Server IP : 103.169.32.36 / Your IP : 216.73.217.13 Web Server : Apache System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : apache ( 48) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/modules/3.10.0-1160.119.1.el7.x86_64/build/include/linux/unaligned/ |
Upload File : |
#ifndef _LINUX_UNALIGNED_LE_STRUCT_H
#define _LINUX_UNALIGNED_LE_STRUCT_H
#include <linux/unaligned/packed_struct.h>
static inline u16 get_unaligned_le16(const void *p)
{
return __get_unaligned_cpu16((const u8 *)p);
}
static inline u32 get_unaligned_le32(const void *p)
{
return __get_unaligned_cpu32((const u8 *)p);
}
static inline u64 get_unaligned_le64(const void *p)
{
return __get_unaligned_cpu64((const u8 *)p);
}
static inline void put_unaligned_le16(u16 val, void *p)
{
__put_unaligned_cpu16(val, p);
}
static inline void put_unaligned_le32(u32 val, void *p)
{
__put_unaligned_cpu32(val, p);
}
static inline void put_unaligned_le64(u64 val, void *p)
{
__put_unaligned_cpu64(val, p);
}
#endif /* _LINUX_UNALIGNED_LE_STRUCT_H */
| .. | |||||
| access_ok.h | |||||
| be_byteshift.h | |||||
| be_memmove.h | |||||
| be_struct.h | |||||
| generic.h | |||||
| le_byteshift.h | |||||
| le_memmove.h | |||||
| le_struct.h | |||||
| memmove.h | |||||
| packed_struct.h |