| /Linux-v4.19/crypto/ |
| D | speck.c | 56 u64 y = get_unaligned_le64(in); in crypto_speck128_encrypt() 57 u64 x = get_unaligned_le64(in + 8); in crypto_speck128_encrypt() 76 u64 y = get_unaligned_le64(in); in crypto_speck128_decrypt() 77 u64 x = get_unaligned_le64(in + 8); in crypto_speck128_decrypt() 102 k = get_unaligned_le64(key); in crypto_speck128_setkey() 103 l[0] = get_unaligned_le64(key + 8); in crypto_speck128_setkey() 111 k = get_unaligned_le64(key); in crypto_speck128_setkey() 112 l[0] = get_unaligned_le64(key + 8); in crypto_speck128_setkey() 113 l[1] = get_unaligned_le64(key + 16); in crypto_speck128_setkey() 121 k = get_unaligned_le64(key); in crypto_speck128_setkey() [all …]
|
| D | sha3_generic.c | 202 sctx->st[i] ^= get_unaligned_le64(src + 8 * i); in crypto_sha3_update() 230 sctx->st[i] ^= get_unaligned_le64(sctx->buf + 8 * i); in crypto_sha3_final()
|
| D | morus1280.c | 114 dst->words[i] = get_unaligned_le64(src); in crypto_morus1280_load_u()
|
| /Linux-v4.19/lib/ |
| D | xxhash.c | 186 v1 = xxh64_round(v1, get_unaligned_le64(p)); in xxh64() 188 v2 = xxh64_round(v2, get_unaligned_le64(p)); in xxh64() 190 v3 = xxh64_round(v3, get_unaligned_le64(p)); in xxh64() 192 v4 = xxh64_round(v4, get_unaligned_le64(p)); in xxh64() 210 const uint64_t k1 = xxh64_round(0, get_unaligned_le64(p)); in xxh64() 399 state->v1 = xxh64_round(state->v1, get_unaligned_le64(p64)); in xxh64_update() 401 state->v2 = xxh64_round(state->v2, get_unaligned_le64(p64)); in xxh64_update() 403 state->v3 = xxh64_round(state->v3, get_unaligned_le64(p64)); in xxh64_update() 405 state->v4 = xxh64_round(state->v4, get_unaligned_le64(p64)); in xxh64_update() 419 v1 = xxh64_round(v1, get_unaligned_le64(p)); in xxh64_update() [all …]
|
| D | siphash.c | 92 m = get_unaligned_le64(data); in __siphash_unaligned() 293 m = get_unaligned_le64(data); in __hsiphash_unaligned()
|
| /Linux-v4.19/arch/c6x/include/asm/ |
| D | unaligned.h | 81 #define get_unaligned_le64(p) __swab64(get_unaligned64(p)) macro 94 #define get_unaligned_le64(p) get_unaligned64(p) macro 116 (sizeof(*(ptr)) == 8 ? get_unaligned_le64((ptr)) : \
|
| /Linux-v4.19/include/linux/unaligned/ |
| D | le_memmove.h | 17 static inline u64 get_unaligned_le64(const void *p) in get_unaligned_le64() function
|
| D | le_struct.h | 17 static inline u64 get_unaligned_le64(const void *p) in get_unaligned_le64() function
|
| D | le_byteshift.h | 51 static inline u64 get_unaligned_le64(const void *p) in get_unaligned_le64() function
|
| D | access_ok.h | 18 static __always_inline u64 get_unaligned_le64(const void *p) in get_unaligned_le64() function
|
| D | generic.h | 15 __builtin_choose_expr(sizeof(*(ptr)) == 8, get_unaligned_le64((ptr)), \
|
| /Linux-v4.19/tools/include/tools/ |
| D | le_byteshift.h | 51 static inline uint64_t get_unaligned_le64(const void *p) in get_unaligned_le64() function
|
| /Linux-v4.19/arch/mips/crypto/ |
| D | crc32-mips.c | 76 u64 value = get_unaligned_le64(p); 116 u64 value = get_unaligned_le64(p);
|
| /Linux-v4.19/fs/btrfs/ |
| D | uuid-tree.c | 17 key->objectid = get_unaligned_le64(uuid); in btrfs_uuid_to_key() 18 key->offset = get_unaligned_le64(uuid + sizeof(u64)); in btrfs_uuid_to_key()
|
| /Linux-v4.19/drivers/nvme/host/ |
| D | trace.c | 66 u64 slba = get_unaligned_le64(cdw10); in nvme_trace_read_write()
|
| /Linux-v4.19/arch/sh/include/asm/ |
| D | unaligned-sh4a.h | 74 static inline u64 get_unaligned_le64(const void *p) in get_unaligned_le64() function
|
| /Linux-v4.19/lib/zstd/ |
| D | mem.h | 91 ZSTD_STATIC U64 ZSTD_readLE64(const void *memPtr) { return get_unaligned_le64(memPtr); } in ZSTD_readLE64()
|
| /Linux-v4.19/include/net/ |
| D | mac802154.h | 386 put_unaligned_be64(get_unaligned_le64(le64_src), be64_dst); in ieee802154_le64_to_be64()
|
| /Linux-v4.19/drivers/net/ethernet/netronome/nfp/nfpcore/ |
| D | nfp_cpplib.c | 123 *value = get_unaligned_le64(tmp); in nfp_cpp_readq()
|
| /Linux-v4.19/scripts/ |
| D | sortextable.c | 126 return get_unaligned_le64(x); in r8le()
|
| /Linux-v4.19/include/linux/ceph/ |
| D | decode.h | 21 u64 v = get_unaligned_le64(*p); in ceph_decode_64()
|
| /Linux-v4.19/drivers/net/wireless/quantenna/qtnfmac/ |
| D | event.c | 335 sr->bssid, get_unaligned_le64(&sr->tsf), in qtnf_event_handle_scan_results()
|
| /Linux-v4.19/sound/pci/hda/ |
| D | hda_eld.c | 263 e->port_id = get_unaligned_le64(buf + 8); in snd_hdmi_parse_eld()
|
| /Linux-v4.19/drivers/input/rmi4/ |
| D | rmi_f01.c | 235 props->package_id = get_unaligned_le64(queries); in rmi_f01_read_properties()
|
| /Linux-v4.19/drivers/ata/ |
| D | libata-scsi.c | 3651 max_lba = get_unaligned_le64(&hdr[8]); in ata_scsi_report_zones_complete() 3652 opt_lba = get_unaligned_le64(&hdr[16]); in ata_scsi_report_zones_complete() 3671 size = get_unaligned_le64(&rec[8]); in ata_scsi_report_zones_complete() 3672 start = get_unaligned_le64(&rec[16]); in ata_scsi_report_zones_complete() 3673 wp = get_unaligned_le64(&rec[24]); in ata_scsi_report_zones_complete()
|