/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | xtlv.c | 44 u8 *idp = (u8 *)xtlv; in brcmf_xtlv_pack_header() local 45 u8 *lenp = idp + sizeof(xtlv->id); in brcmf_xtlv_pack_header() 47 put_unaligned_le16(id, idp); in brcmf_xtlv_pack_header() 51 u8 *idp = (u8 *)xtlv; in brcmf_xtlv_pack_header() local 52 u8 *lenp = idp + 1; in brcmf_xtlv_pack_header() 54 *idp = (u8)id; in brcmf_xtlv_pack_header() 58 u8 *idp = (u8 *)xtlv; in brcmf_xtlv_pack_header() local 59 u8 *lenp = idp + 1; in brcmf_xtlv_pack_header() 61 *idp = (u8)id; in brcmf_xtlv_pack_header() 65 u8 *idp = (u8 *)xtlv; in brcmf_xtlv_pack_header() local [all …]
|
/openbmc/linux/drivers/accel/habanalabs/common/ |
H A D | context.c | 63 struct idr *idp; in hl_encaps_sig_mgr_fini() local 66 idp = &mgr->handles; in hl_encaps_sig_mgr_fini() 71 if (!idr_is_empty(idp)) { in hl_encaps_sig_mgr_fini() 74 idr_for_each_entry(idp, handle, id) in hl_encaps_sig_mgr_fini() 435 struct idr *idp; in hl_ctx_mgr_fini() local 438 idp = &ctx_mgr->handles; in hl_ctx_mgr_fini() 440 idr_for_each_entry(idp, ctx, id) in hl_ctx_mgr_fini()
|
H A D | memory_mgr.c | 331 struct idr *idp; local 335 idp = &mmg->handles; 337 idr_for_each_entry(idp, buf, id) {
|
H A D | command_submission.c | 2277 struct idr *idp; in cs_ioctl_signal_wait() local 2281 idp = &ctx->sig_mgr.handles; in cs_ioctl_signal_wait() 2282 idr_for_each_entry(idp, encaps_sig_hdl, id) { in cs_ioctl_signal_wait()
|
/openbmc/linux/arch/arm64/boot/dts/qcom/ |
H A D | sc7280-idp2.dts | 10 #include "sc7280-idp.dtsi" 11 #include "sc7280-idp-ec-h1.dtsi"
|
H A D | sc7280-idp.dts | 11 #include "sc7280-idp.dtsi" 16 compatible = "qcom,sc7280-idp", "google,senor", "qcom,sc7280";
|
H A D | sc7280-crd-r3.dts | 10 #include "sc7280-idp.dtsi" 11 #include "sc7280-idp-ec-h1.dtsi"
|
H A D | Makefile | 86 dtb-$(CONFIG_ARCH_QCOM) += qdu1000-idp.dtb 91 dtb-$(CONFIG_ARCH_QCOM) += qru1000-idp.dtb 97 dtb-$(CONFIG_ARCH_QCOM) += sc7180-idp.dtb 152 dtb-$(CONFIG_ARCH_QCOM) += sc7280-idp.dtb 193 dtb-$(CONFIG_ARCH_QCOM) += sdx75-idp.dtb
|
H A D | sdx75-idp.dts | 16 compatible = "qcom,sdx75-idp", "qcom,sdx75";
|
H A D | qru1000-idp.dts | 14 compatible = "qcom,qru1000-idp", "qcom,qru1000";
|
H A D | qdu1000-idp.dts | 14 compatible = "qcom,qdu1000-idp", "qcom,qdu1000";
|
H A D | sc7180-idp.dts | 20 compatible = "qcom,sc7180-idp", "qcom,sc7180";
|
/openbmc/u-boot/drivers/mtd/ |
H A D | mtdcore.c | 95 void idr_remove(struct idr *idp, int id) in idr_remove() argument 97 if (idp->id[id].used) { in idr_remove() 98 idp->id[id].used = 0; in idr_remove() 99 idp->updated = true; in idr_remove() 104 void *idr_find(struct idr *idp, int id) in idr_find() argument 106 if (idp->id[id].used) in idr_find() 107 return idp->id[id].ptr; in idr_find() 112 void *idr_get_next(struct idr *idp, int *next) in idr_get_next() argument 117 ret = idr_find(idp, id); in idr_get_next() 120 if (!idp->id[id].used) in idr_get_next() [all …]
|
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_ctx.c | 898 struct idr *idp; in amdgpu_ctx_mgr_entity_flush() local 901 idp = &mgr->ctx_handles; in amdgpu_ctx_mgr_entity_flush() 904 idr_for_each_entry(idp, ctx, id) { in amdgpu_ctx_mgr_entity_flush() 924 struct idr *idp; in amdgpu_ctx_mgr_entity_fini() local 927 idp = &mgr->ctx_handles; in amdgpu_ctx_mgr_entity_fini() 929 idr_for_each_entry(idp, ctx, id) { in amdgpu_ctx_mgr_entity_fini() 952 struct idr *idp; in amdgpu_ctx_mgr_fini() local 957 idp = &mgr->ctx_handles; in amdgpu_ctx_mgr_fini() 959 idr_for_each_entry(idp, ctx, id) { in amdgpu_ctx_mgr_fini()
|
H A D | amdgpu_mes.c | 453 struct idr *idp; in amdgpu_mes_suspend() local 465 idp = &adev->mes.pasid_idr; in amdgpu_mes_suspend() 467 idr_for_each_entry(idp, process, pasid) { in amdgpu_mes_suspend() 482 struct idr *idp; in amdgpu_mes_resume() local 494 idp = &adev->mes.pasid_idr; in amdgpu_mes_resume() 496 idr_for_each_entry(idp, process, pasid) { in amdgpu_mes_resume()
|
/openbmc/u-boot/drivers/power/pmic/ |
H A D | as3722.c | 42 static int as3722_read_id(struct udevice *dev, uint *idp, uint *revisionp) in as3722_read_id() argument 51 *idp = ret; in as3722_read_id()
|
/openbmc/linux/arch/sparc/kernel/ |
H A D | mdesc.c | 343 const u64 *idp; in get_vdev_port_node_info() local 351 idp = mdesc_get_property(md, node, "id", NULL); in get_vdev_port_node_info() 355 if (!idp || !name || !parent_cfg_hdlp) in get_vdev_port_node_info() 358 node_info->vdev_port.id = *idp; in get_vdev_port_node_info() 395 const u64 *idp; in get_ds_port_node_info() local 398 idp = mdesc_get_property(md, node, "id", NULL); in get_ds_port_node_info() 399 if (!idp) in get_ds_port_node_info() 402 node_info->ds_port.id = *idp; in get_ds_port_node_info()
|
/openbmc/linux/drivers/media/pci/saa7134/ |
H A D | saa7134-tvaudio.c | 368 __u32 idp, nicam, nicam_status; in tvaudio_getstereo() local 376 idp = (saa_readb(SAA7134_IDENT_SIF) & 0xe0) >> 5; in tvaudio_getstereo() 377 audio_dbg(1, "getstereo: fm/stereo: idp=0x%x\n", idp); in tvaudio_getstereo() 378 if (0x03 == (idp & 0x03)) in tvaudio_getstereo() 380 else if (0x05 == (idp & 0x05)) in tvaudio_getstereo() 382 else if (0x01 == (idp & 0x01)) in tvaudio_getstereo()
|
/openbmc/qemu/include/hw/ide/ |
H A D | ahci.h | 45 MemoryRegion idp; /* Index-Data Pair I/O port space */ member
|
/openbmc/qemu/hw/ide/ |
H A D | ich.c | 131 &d->ahci.idp); in pci_ich9_ahci_realize()
|
H A D | ahci.c | 1615 memory_region_init_io(&s->idp, OBJECT(qdev), &ahci_idp_ops, s, in ahci_init()
|
/openbmc/linux/drivers/fsi/ |
H A D | fsi-core.c | 172 uint8_t *idp) in fsi_slave_calc_addr() argument 175 uint8_t id = *idp; in fsi_slave_calc_addr() 191 *idp = id; in fsi_slave_calc_addr()
|
/openbmc/linux/drivers/iommu/ |
H A D | tegra-smmu.c | 256 static int tegra_smmu_alloc_asid(struct tegra_smmu *smmu, unsigned int *idp) in tegra_smmu_alloc_asid() argument 265 *idp = id; in tegra_smmu_alloc_asid()
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | devices.txt | 652 40 = /dev/inet/idp 665 /dev/idp -> /dev/inet/idp
|
/openbmc/linux/tools/power/pm-graph/ |
H A D | sleepgraph.py | 1028 idv, idp = props[dev].altname.strip(), '' 1031 idp = ascii(fp.read()).strip() 1035 props[dev].altname = '%s:%s' % (idv, idp)
|