Home
last modified time | relevance | path

Searched refs:lo32 (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/samples/seccomp/
Dbpf-helper.h97 __u32 ENDIAN(lo32, hi32);
103 JEQ64(((union arg64){.u64 = (x)}).lo32, \
107 JGT64(((union arg64){.u64 = (x)}).lo32, \
111 JGE64(((union arg64){.u64 = (x)}).lo32, \
115 JNE64(((union arg64){.u64 = (x)}).lo32, \
119 JLT64(((union arg64){.u64 = (x)}).lo32, \
123 JLE64(((union arg64){.u64 = (x)}).lo32, \
128 JA64(((union arg64){.u64 = (x)}).lo32, \
/linux-4.4.14/drivers/nvdimm/
Dcore.c62 u32 lo32 = 0; in nd_fletcher64() local
67 lo32 += le ? le32_to_cpu((__le32) buf[i]) : buf[i]; in nd_fletcher64()
68 hi32 += lo32; in nd_fletcher64()
71 return hi32 << 32 | lo32; in nd_fletcher64()
/linux-4.4.14/drivers/staging/rtl8188eu/core/
Drtw_efuse.c229 u32 lo32 = 0, hi32 = 0; in efuse_read_phymap_from_txpktbuf() local
256 lo32 = usb_read32(adapter, REG_PKTBUF_DBG_DATA_L); in efuse_read_phymap_from_txpktbuf()
268 aaa = le16_to_cpup((__le16 *)&lo32); in efuse_read_phymap_from_txpktbuf()
269 len = le16_to_cpu(*((__le16 *)&lo32)); in efuse_read_phymap_from_txpktbuf()
275 memcpy(pos, ((u8 *)&lo32)+2, (limit >= count+2) ? 2 : limit-count); in efuse_read_phymap_from_txpktbuf()
280 memcpy(pos, ((u8 *)&lo32), (limit >= count+4) ? 4 : limit-count); in efuse_read_phymap_from_txpktbuf()
/linux-4.4.14/drivers/misc/mei/
Dhw-txe.c1212 u32 lo32 = lower_32_bits(addr); in mei_txe_setup_satt2() local
1221 if (lo32 & 0xF) in mei_txe_setup_satt2()
1236 mei_txe_br_reg_write(hw, SATT2_BRG_BA_LSB_REG, lo32); in mei_txe_setup_satt2()
1239 range, lo32, ctrl); in mei_txe_setup_satt2()
/linux-4.4.14/drivers/staging/skein/
Dskein_base.h207 #define SKEIN_MK_64(hi32, lo32) ((lo32) + (((u64) (hi32)) << 32)) argument