Home
last modified time | relevance | path

Searched refs:caps1 (Results 1 – 13 of 13) sorted by relevance

/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0_1.20/
H A D0003-HACK-caps-Consider-dmabuf-subset-of-system-memory.patch62 @@ -1586,10 +1610,26 @@ gst_caps_can_intersect (const GstCaps * caps1, const GstCaps * caps2)
89 @@ -1612,6 +1652,7 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
97 @@ -1632,6 +1673,8 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
99 len1 = GST_CAPS_LEN (caps1);
104 /* caps1 index goes from 0 to GST_CAPS_LEN (caps1)-1 */
106 @@ -1649,6 +1692,15 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
122 @@ -1662,6 +1714,10 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
133 @@ -1669,6 +1725,13 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
147 @@ -1696,20 +1759,34 @@ gst_caps_intersect_first (GstCaps * caps1, GstCaps * caps2)
154 len1 = GST_CAPS_LEN (caps1);
[all …]
/OK3568_Linux_fs/buildroot/package/gstreamer1/gstreamer1/
H A D0003-HACK-caps-Consider-dmabuf-subset-of-system-memory.patch62 @@ -1596,10 +1620,26 @@ gst_caps_can_intersect (const GstCaps * caps1, const GstCaps * caps2)
89 @@ -1622,6 +1662,7 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
97 @@ -1642,6 +1683,8 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
99 len1 = GST_CAPS_LEN (caps1);
104 /* caps1 index goes from 0 to GST_CAPS_LEN (caps1)-1 */
106 @@ -1659,6 +1702,15 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
122 @@ -1672,6 +1724,10 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
133 @@ -1679,6 +1735,13 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
147 @@ -1706,20 +1769,34 @@ gst_caps_intersect_first (GstCaps * caps1, GstCaps * caps2)
154 len1 = GST_CAPS_LEN (caps1);
[all …]
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0_1.22/
H A D0003-HACK-caps-Consider-dmabuf-subset-of-system-memory.patch62 @@ -1596,10 +1620,26 @@ gst_caps_can_intersect (const GstCaps * caps1, const GstCaps * caps2)
89 @@ -1622,6 +1662,7 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
97 @@ -1642,6 +1683,8 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
99 len1 = GST_CAPS_LEN (caps1);
104 /* caps1 index goes from 0 to GST_CAPS_LEN (caps1)-1 */
106 @@ -1659,6 +1702,15 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
122 @@ -1672,6 +1724,10 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
133 @@ -1679,6 +1735,13 @@ gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
147 @@ -1706,20 +1769,34 @@ gst_caps_intersect_first (GstCaps * caps1, GstCaps * caps2)
154 len1 = GST_CAPS_LEN (caps1);
[all …]
/OK3568_Linux_fs/kernel/tools/perf/jvmti/
H A Dlibjvmti.c341 jvmtiCapabilities caps1; in Agent_OnLoad() local
365 memset(&caps1, 0, sizeof(caps1)); in Agent_OnLoad()
366 caps1.can_generate_compiled_method_load_events = 1; in Agent_OnLoad()
368 ret = (*jvmti)->AddCapabilities(jvmti, &caps1); in Agent_OnLoad()
375 memset(&caps1, 0, sizeof(caps1)); in Agent_OnLoad()
376 caps1.can_get_line_numbers = 1; in Agent_OnLoad()
377 caps1.can_get_source_file_name = 1; in Agent_OnLoad()
378 ret = (*jvmti)->AddCapabilities(jvmti, &caps1); in Agent_OnLoad()
/OK3568_Linux_fs/kernel/drivers/mmc/host/
H A Dsdhci-iproc.c29 u32 caps1; member
232 .caps1 = SDHCI_DRIVER_TYPE_C |
256 .caps1 = SDHCI_DRIVER_TYPE_C |
276 .caps1 = SDHCI_DRIVER_TYPE_A |
388 host->caps1 = iproc_host->data->caps1; in sdhci_iproc_probe()
H A Dsdhci-of-at91.c172 unsigned int caps0, caps1; in sdhci_at91_set_clks_presets() local
179 caps1 = readl(host->ioaddr + SDHCI_CAPABILITIES_1); in sdhci_at91_set_clks_presets()
192 caps1 &= ~SDHCI_CLOCK_MUL_MASK; in sdhci_at91_set_clks_presets()
193 caps1 |= FIELD_PREP(SDHCI_CLOCK_MUL_MASK, clk_mul); in sdhci_at91_set_clks_presets()
197 writel(caps1, host->ioaddr + SDHCI_CAPABILITIES_1); in sdhci_at91_set_clks_presets()
H A Dsdhci.c3822 if (host->v4_mode && (host->caps1 & SDHCI_CAN_DO_ADMA3)) in sdhci_cqe_enable()
3995 const u32 *caps, const u32 *caps1) in __sdhci_read_caps() argument
4039 if (caps1) { in __sdhci_read_caps()
4040 host->caps1 = *caps1; in __sdhci_read_caps()
4042 host->caps1 = sdhci_readl(host, SDHCI_CAPABILITIES_1); in __sdhci_read_caps()
4043 host->caps1 &= ~upper_32_bits(dt_caps_mask); in __sdhci_read_caps()
4044 host->caps1 |= upper_32_bits(dt_caps); in __sdhci_read_caps()
4301 host->clk_mul = FIELD_GET(SDHCI_CLOCK_MUL_MASK, host->caps1); in sdhci_setup_host()
4414 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | in sdhci_setup_host()
4432 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 | in sdhci_setup_host()
[all …]
H A Dsdhci-pxav3.c130 host->caps1 = sdhci_readl(host, SDHCI_CAPABILITIES_1); in armada_38x_quirks()
145 host->caps1 &= ~(SDHCI_SUPPORT_SDR50 | SDHCI_SUPPORT_DDR50); in armada_38x_quirks()
161 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_USE_SDR50_TUNING); in armada_38x_quirks()
H A Dsdhci-brcmstb.c326 host->caps1 = sdhci_readl(host, SDHCI_CAPABILITIES_1); in sdhci_brcmstb_probe()
327 host->caps1 &= ~(SDHCI_SUPPORT_SDR50 | SDHCI_SUPPORT_SDR104 | in sdhci_brcmstb_probe()
H A Dsdhci.h569 u32 caps1; /* CAPABILITY_1 */ member
757 const u32 *caps, const u32 *caps1);
H A Dsdhci-sprd.c660 host->caps1 = sdhci_readl(host, SDHCI_CAPABILITIES_1); in sdhci_sprd_probe()
661 host->caps1 &= ~(SDHCI_SUPPORT_SDR50 | SDHCI_SUPPORT_SDR104 | in sdhci_sprd_probe()
H A Dsdhci-acpi.c658 if (host->caps1 & SDHCI_SUPPORT_DDR50) in sdhci_acpi_emmc_amd_probe_slot()
661 if ((host->caps1 & SDHCI_SUPPORT_SDR104) && in sdhci_acpi_emmc_amd_probe_slot()
/OK3568_Linux_fs/kernel/drivers/mtd/nand/raw/
H A Dcadence-nand-controller.c458 const struct cadence_nand_dt_devdata *caps1; member
1884 if (!cdns_ctrl->caps1->has_dma) { in cadence_nand_read_buf()
1938 if (!cdns_ctrl->caps1->has_dma) { in cadence_nand_write_buf()
2322 u32 if_skew = cdns_ctrl->caps1->if_skew; in cadence_nand_setup_interface()
2868 if (cdns_ctrl->caps1->has_dma) { in cadence_nand_init()
2973 cdns_ctrl->caps1 = devdata; in cadence_nand_dt_probe()