Home
last modified time | relevance | path

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

/linux-6.1.9/samples/seccomp/
Dbpf-helper.h98 __u32 ENDIAN(lo32, hi32);
104 JEQ64(((union arg64){.u64 = (x)}).lo32, \
108 JGT64(((union arg64){.u64 = (x)}).lo32, \
112 JGE64(((union arg64){.u64 = (x)}).lo32, \
116 JNE64(((union arg64){.u64 = (x)}).lo32, \
120 JLT64(((union arg64){.u64 = (x)}).lo32, \
124 JLE64(((union arg64){.u64 = (x)}).lo32, \
129 JA64(((union arg64){.u64 = (x)}).lo32, \
/linux-6.1.9/drivers/nvdimm/
Dcore.c183 u32 lo32 = 0; in nd_fletcher64() local
188 lo32 += le ? le32_to_cpu((__le32) buf[i]) : buf[i]; in nd_fletcher64()
189 hi32 += lo32; in nd_fletcher64()
192 return hi32 << 32 | lo32; in nd_fletcher64()
/linux-6.1.9/drivers/misc/mei/
Dhw-txe.c1226 u32 lo32 = lower_32_bits(addr); in mei_txe_setup_satt2() local
1235 if (lo32 & 0xF) in mei_txe_setup_satt2()
1250 mei_txe_br_reg_write(hw, SATT2_BRG_BA_LSB_REG, lo32); in mei_txe_setup_satt2()
1253 range, lo32, ctrl); in mei_txe_setup_satt2()
/linux-6.1.9/drivers/staging/r8188eu/hal/
Drtl8188e_hal_init.c201 __le32 lo32 = 0, hi32 = 0; in efuse_read_phymap_from_txpktbuf() local
232 lo32 = cpu_to_le32(reg32); in efuse_read_phymap_from_txpktbuf()
251 len = le32_to_cpu(lo32) & 0x0000ffff; in efuse_read_phymap_from_txpktbuf()
255 memcpy(pos, ((u8 *)&lo32) + 2, (limit >= count + 2) ? 2 : limit - count); in efuse_read_phymap_from_txpktbuf()
259 memcpy(pos, ((u8 *)&lo32), (limit >= count + 4) ? 4 : limit - count); in efuse_read_phymap_from_txpktbuf()
/linux-6.1.9/drivers/i3c/master/mipi-i3c-hci/
Ddma.c150 static inline u32 lo32(dma_addr_t physaddr) in lo32() function
265 rh_reg_write(CMD_RING_BASE_LO, lo32(rh->xfer_dma)); in hci_dma_init()
267 rh_reg_write(RESP_RING_BASE_LO, lo32(rh->resp_dma)); in hci_dma_init()
401 *ring_data++ = lo32(xfer->data_dma); in hci_dma_queue_xfer()