Release 4.7 include/linux/unaligned/be_byteshift.h
#ifndef _LINUX_UNALIGNED_BE_BYTESHIFT_H
#define _LINUX_UNALIGNED_BE_BYTESHIFT_H
#include <linux/types.h>
static inline u16 __get_unaligned_be16(const u8 *p)
{
return p[0] << 8 | p[1];
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 25 | 100.00% | 1 | 100.00% |
| Total | 25 | 100.00% | 1 | 100.00% |
static inline u32 __get_unaligned_be32(const u8 *p)
{
return p[0] << 24 | p[1] << 16 | p[2] << 8 | p[3];
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 39 | 100.00% | 1 | 100.00% |
| Total | 39 | 100.00% | 1 | 100.00% |
static inline u64 __get_unaligned_be64(const u8 *p)
{
return (u64)__get_unaligned_be32(p) << 32 |
__get_unaligned_be32(p + 4);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 30 | 100.00% | 1 | 100.00% |
| Total | 30 | 100.00% | 1 | 100.00% |
static inline void __put_unaligned_be16(u16 val, u8 *p)
{
*p++ = val >> 8;
*p++ = val;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 28 | 100.00% | 1 | 100.00% |
| Total | 28 | 100.00% | 1 | 100.00% |
static inline void __put_unaligned_be32(u32 val, u8 *p)
{
__put_unaligned_be16(val >> 16, p);
__put_unaligned_be16(val, p + 2);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 32 | 100.00% | 1 | 100.00% |
| Total | 32 | 100.00% | 1 | 100.00% |
static inline void __put_unaligned_be64(u64 val, u8 *p)
{
__put_unaligned_be32(val >> 32, p);
__put_unaligned_be32(val, p + 4);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 32 | 100.00% | 1 | 100.00% |
| Total | 32 | 100.00% | 1 | 100.00% |
static inline u16 get_unaligned_be16(const void *p)
{
return __get_unaligned_be16((const u8 *)p);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 23 | 100.00% | 1 | 100.00% |
| Total | 23 | 100.00% | 1 | 100.00% |
static inline u32 get_unaligned_be32(const void *p)
{
return __get_unaligned_be32((const u8 *)p);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 23 | 100.00% | 1 | 100.00% |
| Total | 23 | 100.00% | 1 | 100.00% |
static inline u64 get_unaligned_be64(const void *p)
{
return __get_unaligned_be64((const u8 *)p);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 23 | 100.00% | 1 | 100.00% |
| Total | 23 | 100.00% | 1 | 100.00% |
static inline void put_unaligned_be16(u16 val, void *p)
{
__put_unaligned_be16(val, p);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 21 | 100.00% | 1 | 100.00% |
| Total | 21 | 100.00% | 1 | 100.00% |
static inline void put_unaligned_be32(u32 val, void *p)
{
__put_unaligned_be32(val, p);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 21 | 100.00% | 1 | 100.00% |
| Total | 21 | 100.00% | 1 | 100.00% |
static inline void put_unaligned_be64(u64 val, void *p)
{
__put_unaligned_be64(val, p);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 21 | 100.00% | 1 | 100.00% |
| Total | 21 | 100.00% | 1 | 100.00% |
#endif /* _LINUX_UNALIGNED_BE_BYTESHIFT_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
harvey harrison | harvey harrison | 329 | 99.70% | 1 | 50.00% |
albin tonnerre | albin tonnerre | 1 | 0.30% | 1 | 50.00% |
| Total | 330 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.