/Linux-v4.19/arch/powerpc/kernel/ |
D | vdso.c | 317 static int __init vdso_do_func_patch32(struct lib32_elfinfo *v32, in vdso_do_func_patch32() argument 323 sym32_gen = find_symbol32(v32, orig); in vdso_do_func_patch32() 332 sym32_fix = find_symbol32(v32, fix); in vdso_do_func_patch32() 352 static int __init vdso_do_func_patch32(struct lib32_elfinfo *v32, in vdso_do_func_patch32() argument 428 static int __init vdso_do_func_patch64(struct lib32_elfinfo *v32, in vdso_do_func_patch64() argument 460 static __init int vdso_do_find_sections(struct lib32_elfinfo *v32, in vdso_do_find_sections() argument 470 v32->dynsym = find_section32(v32->hdr, ".dynsym", &v32->dynsymsize); in vdso_do_find_sections() 471 v32->dynstr = find_section32(v32->hdr, ".dynstr", NULL); in vdso_do_find_sections() 472 if (v32->dynsym == NULL || v32->dynstr == NULL) { in vdso_do_find_sections() 476 sect = find_section32(v32->hdr, ".text", NULL); in vdso_do_find_sections() [all …]
|
/Linux-v4.19/arch/x86/include/asm/ |
D | div64.h | 47 u32 v32[2]; in div_u64_rem() member 51 upper = d.v32[1]; in div_u64_rem() 52 d.v32[1] = 0; in div_u64_rem() 54 d.v32[1] = upper / divisor; in div_u64_rem() 57 asm ("divl %2" : "=a" (d.v32[0]), "=d" (*remainder) : in div_u64_rem() 58 "rm" (divisor), "0" (d.v32[0]), "1" (upper)); in div_u64_rem()
|
/Linux-v4.19/kernel/ |
D | compat.c | 162 struct compat_itimerval v32; in get_compat_itimerval() local 164 if (copy_from_user(&v32, i, sizeof(struct compat_itimerval))) in get_compat_itimerval() 166 o->it_interval.tv_sec = v32.it_interval.tv_sec; in get_compat_itimerval() 167 o->it_interval.tv_usec = v32.it_interval.tv_usec; in get_compat_itimerval() 168 o->it_value.tv_sec = v32.it_value.tv_sec; in get_compat_itimerval() 169 o->it_value.tv_usec = v32.it_value.tv_usec; in get_compat_itimerval() 175 struct compat_itimerval v32; in put_compat_itimerval() local 177 v32.it_interval.tv_sec = i->it_interval.tv_sec; in put_compat_itimerval() 178 v32.it_interval.tv_usec = i->it_interval.tv_usec; in put_compat_itimerval() 179 v32.it_value.tv_sec = i->it_value.tv_sec; in put_compat_itimerval() [all …]
|
/Linux-v4.19/drivers/media/dvb-frontends/ |
D | lgs8gxx.c | 155 u32 v32; in lgs8gxx_set_if_freq() local 165 v32 = val & 0xFFFFFFFF; in lgs8gxx_set_if_freq() 168 v32 = 0; in lgs8gxx_set_if_freq() 171 dprintk("AFC_INIT_FREQ = 0x%08X\n", v32); in lgs8gxx_set_if_freq() 174 lgs8gxx_write_reg(priv, 0x08, 0xFF & (v32)); in lgs8gxx_set_if_freq() 175 lgs8gxx_write_reg(priv, 0x09, 0xFF & (v32 >> 8)); in lgs8gxx_set_if_freq() 176 lgs8gxx_write_reg(priv, 0x0A, 0xFF & (v32 >> 16)); in lgs8gxx_set_if_freq() 177 lgs8gxx_write_reg(priv, 0x0B, 0xFF & (v32 >> 24)); in lgs8gxx_set_if_freq() 179 lgs8gxx_write_reg(priv, 0x09, 0xFF & (v32)); in lgs8gxx_set_if_freq() 180 lgs8gxx_write_reg(priv, 0x0A, 0xFF & (v32 >> 8)); in lgs8gxx_set_if_freq() [all …]
|
/Linux-v4.19/drivers/gpu/drm/ |
D | drm_ioc32.c | 92 drm_version32_t v32; in compat_drm_version() local 96 if (copy_from_user(&v32, (void __user *)arg, sizeof(v32))) in compat_drm_version() 100 .name_len = v32.name_len, in compat_drm_version() 101 .name = compat_ptr(v32.name), in compat_drm_version() 102 .date_len = v32.date_len, in compat_drm_version() 103 .date = compat_ptr(v32.date), in compat_drm_version() 104 .desc_len = v32.desc_len, in compat_drm_version() 105 .desc = compat_ptr(v32.desc), in compat_drm_version() 112 v32.version_major = v.version_major; in compat_drm_version() 113 v32.version_minor = v.version_minor; in compat_drm_version() [all …]
|
/Linux-v4.19/net/netfilter/ |
D | nft_exthdr.c | 148 __be32 v32; in nft_exthdr_tcp_set_eval() member 191 new.v32 = src; in nft_exthdr_tcp_set_eval() 192 old.v32 = get_unaligned((u32 *)(opt + offset)); in nft_exthdr_tcp_set_eval() 194 if (old.v32 == new.v32) in nft_exthdr_tcp_set_eval() 197 put_unaligned(new.v32, (u32*)(opt + offset)); in nft_exthdr_tcp_set_eval() 199 old.v32, new.v32, false); in nft_exthdr_tcp_set_eval()
|
D | xt_HMARK.c | 74 uports->v32 = (dst << 16) | src; in hmark_swap_ports() 76 uports->v32 = (src << 16) | dst; in hmark_swap_ports() 128 hash = jhash_3words(src, dst, t->uports.v32, info->hashrnd); in hmark_hash()
|
/Linux-v4.19/arch/x86/mm/ |
D | testmmiotrace.c | 26 static unsigned v32(unsigned i) in v32() function 44 iowrite32(v32(i), p + i); in do_write_test() 63 if (ioread32(p + i) != v32(i)) in do_read_test()
|
/Linux-v4.19/drivers/char/ipmi/ |
D | ipmi_devintf.c | 705 struct compat_ipmi_recv v32; in copyout_recv32() local 706 memset(&v32, 0, sizeof(struct compat_ipmi_recv)); in copyout_recv32() 707 v32.recv_type = p64->recv_type; in copyout_recv32() 708 v32.addr = ptr_to_compat(p64->addr); in copyout_recv32() 709 v32.addr_len = p64->addr_len; in copyout_recv32() 710 v32.msgid = p64->msgid; in copyout_recv32() 711 v32.msg.netfn = p64->msg.netfn; in copyout_recv32() 712 v32.msg.cmd = p64->msg.cmd; in copyout_recv32() 713 v32.msg.data_len = p64->msg.data_len; in copyout_recv32() 714 v32.msg.data = ptr_to_compat(p64->msg.data); in copyout_recv32() [all …]
|
/Linux-v4.19/net/bridge/netfilter/ |
D | ebt_stp.c | 48 u32 v32; in ebt_filter_config() local 68 v32 = NR32(stpc->root_cost); in ebt_filter_config() 70 v32 < c->root_costl || v32 > c->root_costu)) in ebt_filter_config()
|
/Linux-v4.19/drivers/ntb/hw/intel/ |
D | ntb_hw_gen1.c | 501 union { u64 v64; u32 v32; u16 v16; u8 v8; } u; in ndev_ntb_debugfs_read() member 621 u.v32 = ioread32(mmio + bar2_off(ndev->xlat_reg->bar2_xlat, 4)); in ndev_ntb_debugfs_read() 623 "XLAT4 -\t\t\t%#06x\n", u.v32); in ndev_ntb_debugfs_read() 625 u.v32 = ioread32(mmio + bar2_off(ndev->xlat_reg->bar2_xlat, 5)); in ndev_ntb_debugfs_read() 627 "XLAT5 -\t\t\t%#06x\n", u.v32); in ndev_ntb_debugfs_read() 639 u.v32 = ioread32(mmio + bar2_off(ndev->xlat_reg->bar2_limit, 4)); in ndev_ntb_debugfs_read() 641 "LMT4 -\t\t\t%#06x\n", u.v32); in ndev_ntb_debugfs_read() 642 u.v32 = ioread32(mmio + bar2_off(ndev->xlat_reg->bar2_limit, 5)); in ndev_ntb_debugfs_read() 644 "LMT5 -\t\t\t%#06x\n", u.v32); in ndev_ntb_debugfs_read() 661 u.v32 = ioread32(mmio + XEON_PBAR4XLAT_OFFSET); in ndev_ntb_debugfs_read() [all …]
|
D | ntb_hw_gen3.c | 263 union { u64 v64; u32 v32; u16 v16; } u; in ndev_ntb3_debugfs_read() member 404 GEN3_UNCERRSTS_OFFSET, &u.v32)) in ndev_ntb3_debugfs_read() 406 "UNCERRSTS -\t\t%#06x\n", u.v32); in ndev_ntb3_debugfs_read() 409 GEN3_CORERRSTS_OFFSET, &u.v32)) in ndev_ntb3_debugfs_read() 411 "CORERRSTS -\t\t%#06x\n", u.v32); in ndev_ntb3_debugfs_read()
|
/Linux-v4.19/drivers/dma/ |
D | fsldma.h | 95 typedef u32 __bitwise v32; typedef 101 v32 count; 102 v32 reserve;
|
/Linux-v4.19/net/ipv6/ila/ |
D | ila.h | 31 __be32 v32[2]; member 54 __be32 v32[2]; member
|
/Linux-v4.19/drivers/block/ |
D | floppy.c | 3811 struct compat_floppy_fdc_state v32; in compat_getfdcstat() local 3818 memset(&v32, 0, sizeof(struct compat_floppy_fdc_state)); in compat_getfdcstat() 3819 v32.spec1 = v.spec1; in compat_getfdcstat() 3820 v32.spec2 = v.spec2; in compat_getfdcstat() 3821 v32.dtr = v.dtr; in compat_getfdcstat() 3822 v32.version = v.version; in compat_getfdcstat() 3823 v32.dor = v.dor; in compat_getfdcstat() 3824 v32.address = v.address; in compat_getfdcstat() 3825 v32.rawcmd = v.rawcmd; in compat_getfdcstat() 3826 v32.reset = v.reset; in compat_getfdcstat() [all …]
|
/Linux-v4.19/include/uapi/linux/netfilter/ |
D | xt_HMARK.h | 36 __u32 v32; member
|
/Linux-v4.19/drivers/ntb/hw/amd/ |
D | ntb_hw_amd.c | 719 union { u64 v64; u32 v32; u16 v16; } u; in ndev_debugfs_read() member 768 u.v32 = readl(ndev->self_mmio + AMD_DBMASK_OFFSET); in ndev_debugfs_read() 770 "Doorbell Mask -\t\t\t%#06x\n", u.v32); in ndev_debugfs_read() 772 u.v32 = readl(mmio + AMD_DBSTAT_OFFSET); in ndev_debugfs_read() 774 "Doorbell Bell -\t\t\t%#06x\n", u.v32); in ndev_debugfs_read() 791 u.v32 = readl(mmio + AMD_BAR1LMT_OFFSET); in ndev_debugfs_read() 793 "LMT1 -\t\t\t%#06x\n", u.v32); in ndev_debugfs_read()
|
/Linux-v4.19/fs/jffs2/ |
D | nodelist.h | 44 #define je32_to_cpu(x) ((x).v32) 55 #define je32_to_cpu(x) (be32_to_cpu(x.v32)) 66 #define je32_to_cpu(x) (le32_to_cpu(x.v32))
|
/Linux-v4.19/include/uapi/linux/ |
D | jffs2.h | 96 __u32 v32; member
|
/Linux-v4.19/drivers/staging/rtl8723bs/hal/ |
D | sdio_ops.c | 1150 u32 v32; in sd_int_hdl() local 1155 v32 = hal->sdio_hisr & MASK_SDIO_HISR_CLEAR; in sd_int_hdl() 1156 if (v32) { in sd_int_hdl() 1157 SdioLocalCmd52Write4Byte(adapter, SDIO_REG_HISR, v32); in sd_int_hdl()
|
/Linux-v4.19/arch/mips/kvm/ |
D | mips.c | 754 u32 v32 = (u32)v; in kvm_mips_get_reg() local 756 return put_user(v32, uaddr32); in kvm_mips_get_reg() 782 s32 v32; in kvm_mips_set_reg() local 784 if (get_user(v32, uaddr32) != 0) in kvm_mips_set_reg() 786 v = (s64)v32; in kvm_mips_set_reg()
|
/Linux-v4.19/arch/powerpc/lib/ |
D | sstep.c | 2890 unsigned int v32 = 0; in emulate_loadstore() local 2895 err = copy_mem_in((u8 *) &v32, ea, nb, regs); in emulate_loadstore() 2899 v32 = byterev_4(v32); in emulate_loadstore() 2900 regs->gpr[rd] = v32; in emulate_loadstore() 2961 unsigned int v32 = regs->gpr[rd]; in emulate_loadstore() local 2967 v32 = byterev_4(v32); in emulate_loadstore() 2968 err = copy_mem_out((u8 *) &v32, ea, nb, regs); in emulate_loadstore()
|
/Linux-v4.19/drivers/staging/rtl8188eu/core/ |
D | rtw_security.c | 381 #define Lo16(v32) ((u16)((v32) & 0xFFFF)) argument 382 #define Hi16(v32) ((u16)(((v32) >> 16) & 0xFFFF)) argument
|
/Linux-v4.19/arch/powerpc/platforms/powernv/ |
D | pci.c | 679 __be32 v32; in pnv_pci_cfg_read() local 680 rc = opal_pci_config_read_word(phb->opal_id, bdfn, where, &v32); in pnv_pci_cfg_read() 681 *val = (rc == OPAL_SUCCESS) ? be32_to_cpu(v32) : 0xffffffff; in pnv_pci_cfg_read()
|
/Linux-v4.19/drivers/staging/rtl8712/ |
D | rtl871x_security.c | 379 #define Lo16(v32) ((u16)((v32) & 0xFFFF)) argument 380 #define Hi16(v32) ((u16)(((v32) >> 16) & 0xFFFF)) argument
|