Searched refs:vdsp (Results 1 – 3 of 3) sorted by relevance
/openbmc/openbmc/poky/meta/recipes-multimedia/libsndfile/libsndfile1/ |
H A D | CVE-2024-50612.patch | 179 vorbis_analysis_headerout (&vdata->vdsp, &vdata->vcomment, &header, &header_comm, &header_code) ; 208 - vorbis_analysis_wrote (&vdata->vdsp, 0) ; 209 - while (vorbis_analysis_blockout (&vdata->vdsp, &vdata->vblock) == 1) 217 - while (vorbis_bitrate_flushpacket (&vdata->vdsp, &odata->opacket)) 261 - vorbis_analysis_wrote (&vdata->vdsp, in_frames) ; 264 + if ((ret = vorbis_analysis_wrote (&vdata->vdsp, in_frames)) != 0) 272 - while (vorbis_analysis_blockout (&vdata->vdsp, &vdata->vblock) == 1) 273 + while ((ret = vorbis_analysis_blockout (&vdata->vdsp, &vdata->vblock)) == 1) 283 - while (vorbis_bitrate_flushpacket (&vdata->vdsp, &odata->opacket)) 284 + while ((ret = vorbis_bitrate_flushpacket (&vdata->vdsp, &odata->opacket)) == 1)
|
/openbmc/linux/drivers/scsi/ |
H A D | ncr53c8xx.c | 6076 u32 *vdsp; in ncr_int_ma() local 6157 vdsp = NULL; in ncr_int_ma() 6161 vdsp = (u32 *)((char*)np->script0 + (dsp-np->p_script-8)); in ncr_int_ma() 6166 vdsp = (u32 *)((char*)np->scripth0 + (dsp-np->p_scripth-8)); in ncr_int_ma() 6171 vdsp = &cp->patch[0]; in ncr_int_ma() 6172 nxtdsp = scr_to_cpu(vdsp[3]); in ncr_int_ma() 6175 vdsp = &cp->patch[4]; in ncr_int_ma() 6176 nxtdsp = scr_to_cpu(vdsp[3]); in ncr_int_ma() 6188 (unsigned)nxtdsp, vdsp, cmd); in ncr_int_ma() 6208 oadr = scr_to_cpu(vdsp[1]); in ncr_int_ma() [all …]
|
/openbmc/linux/drivers/scsi/sym53c8xx_2/ |
H A D | sym_hipd.c | 2393 u32 *vdsp; local 2482 vdsp = NULL; 2486 vdsp = (u32 *)((char*)np->scripta0 + (dsp-np->scripta_ba-8)); 2491 vdsp = (u32 *)((char*)np->scriptb0 + (dsp-np->scriptb_ba-8)); 2500 cp, (unsigned)dsp, (unsigned)nxtdsp, vdsp, cmd); 2503 if (!vdsp) { 2518 oadr = scr_to_cpu(vdsp[1]); 2526 olen = scr_to_cpu(vdsp[0]) & 0xffffff; 2531 (unsigned) (scr_to_cpu(vdsp[0]) >> 24), 2542 if (((cmd & 2) ? cmd : (cmd & ~4)) != (scr_to_cpu(vdsp[0]) >> 24)) { [all …]
|