Home
last modified time | relevance | path

Searched refs:cplen (Results 1 – 11 of 11) sorted by relevance

/kernel/linux/linux-5.10/drivers/macintosh/
Dmacio_sysfs.c11 int cplen; in compatible_show() local
15 compat = of_get_property(of->dev.of_node, "compatible", &cplen); in compatible_show()
20 while (cplen > 0) { in compatible_show()
26 cplen -= l; in compatible_show()
/kernel/linux/linux-5.10/sound/aoa/soundbus/
Dcore.c64 int cplen, seen = 0; in soundbus_uevent() local
88 compat = of_get_property(of->dev.of_node, "compatible", &cplen); in soundbus_uevent()
89 while (compat && cplen > 0) { in soundbus_uevent()
95 cplen -= env->buflen - tmp; in soundbus_uevent()
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
Dfirmware.c141 u32 cplen; in brcmf_nvram_handle_value() local
148 cplen = ekv - skv; in brcmf_nvram_handle_value()
149 if (nvp->nvram_len + cplen + 1 >= BRCMF_FW_MAX_NVRAM_SIZE) in brcmf_nvram_handle_value()
152 memcpy(&nvp->nvram[nvp->nvram_len], skv, cplen); in brcmf_nvram_handle_value()
153 nvp->nvram_len += cplen; in brcmf_nvram_handle_value()
/kernel/linux/linux-5.10/drivers/scsi/esas2r/
Desas2r_int.c706 u32 cplen = length; in esas2r_lun_event() local
709 if (cplen > sizeof(t->lu_event)) in esas2r_lun_event()
710 cplen = sizeof(t->lu_event); in esas2r_lun_event()
738 memcpy(&t->lu_event, &ae->lu, cplen); in esas2r_lun_event()
/kernel/linux/linux-5.10/drivers/of/
Dfdt.c726 int cplen; in of_fdt_is_compatible() local
729 cp = fdt_getprop(blob, node, "compatible", &cplen); in of_fdt_is_compatible()
732 while (cplen > 0) { in of_fdt_is_compatible()
738 cplen -= l; in of_fdt_is_compatible()
Dbase.c1178 int cplen; in of_modalias_node() local
1180 compatible = of_get_property(node, "compatible", &cplen); in of_modalias_node()
1181 if (!compatible || strlen(compatible) > cplen) in of_modalias_node()
/kernel/linux/linux-5.10/drivers/infiniband/hw/bnxt_re/
Dqplib_fp.c1592 int t_cplen, cplen; in bnxt_qplib_put_inline() local
1611 cplen = min_t(int, len, sizeof(struct sq_sge)); in bnxt_qplib_put_inline()
1612 cplen = min_t(int, cplen, in bnxt_qplib_put_inline()
1614 memcpy(il_dst, il_src, cplen); in bnxt_qplib_put_inline()
1615 t_cplen += cplen; in bnxt_qplib_put_inline()
1616 il_src += cplen; in bnxt_qplib_put_inline()
1617 il_dst += cplen; in bnxt_qplib_put_inline()
1618 offt += cplen; in bnxt_qplib_put_inline()
1619 len -= cplen; in bnxt_qplib_put_inline()
/kernel/linux/linux-5.10/net/sunrpc/
Dxdr.c1126 size_t cplen = (char *)xdr->end - (char *)xdr->p; in xdr_copy_to_scratch() local
1130 p = __xdr_inline_decode(xdr, cplen); in xdr_copy_to_scratch()
1133 memcpy(cpdest, p, cplen); in xdr_copy_to_scratch()
1136 cpdest += cplen; in xdr_copy_to_scratch()
1137 nbytes -= cplen; in xdr_copy_to_scratch()
/kernel/linux/linux-5.10/fs/nfsd/
Dnfs4xdr.c4815 u32 cplen; in nfsd4_vbuf_to_stream() local
4818 cplen = min_t(unsigned long, buflen, in nfsd4_vbuf_to_stream()
4820 p = xdr_reserve_space(xdr, cplen); in nfsd4_vbuf_to_stream()
4824 memcpy(p, buf, cplen); in nfsd4_vbuf_to_stream()
4825 buf += cplen; in nfsd4_vbuf_to_stream()
4826 buflen -= cplen; in nfsd4_vbuf_to_stream()
4829 cplen = min_t(u32, buflen, PAGE_SIZE); in nfsd4_vbuf_to_stream()
4830 p = xdr_reserve_space(xdr, cplen); in nfsd4_vbuf_to_stream()
4834 memcpy(p, buf, cplen); in nfsd4_vbuf_to_stream()
4836 if (cplen < PAGE_SIZE) { in nfsd4_vbuf_to_stream()
[all …]
/kernel/linux/linux-5.10/drivers/infiniband/sw/rdmavt/
Dqp.c2027 size_t cplen; in rvt_post_one_wr() local
2040 cplen = ret; in rvt_post_one_wr()
2094 memcpy(&wqe->wr, wr, cplen); in rvt_post_one_wr()
/kernel/linux/linux-5.10/fs/ocfs2/
Dxattr.c1109 size_t cplen, blocksize; in ocfs2_xattr_get_value_outside() local
1137 cplen = len >= blocksize ? blocksize : len; in ocfs2_xattr_get_value_outside()
1138 memcpy(buffer, bh->b_data, cplen); in ocfs2_xattr_get_value_outside()
1139 len -= cplen; in ocfs2_xattr_get_value_outside()
1140 buffer += cplen; in ocfs2_xattr_get_value_outside()