Home
last modified time | relevance | path

Searched refs:dataend (Results 1 – 6 of 6) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-multimedia/libsndfile/libsndfile1/
H A Dcve-2022-33065.patch4 Subject: [PATCH] mat4/mat5: fix int overflow in dataend calculation
7 calculating the `dataend` value in `mat4_read_header()`.
17 `dataend` before performing the calculation, to avoid the issue.
38 - psf->dataend = psf->dataoffset + rows * cols * psf->bytewidth ;
39 + psf->dataend = psf->dataoffset + (sf_count_t) rows * (sf_count_t) cols * psf->bytewidth ;
41 psf->datalength = psf->filelength - psf->dataoffset - psf->dataend ;
239 sf_count_t dataend ; /* Offset to file tailer. */
/openbmc/linux/drivers/mmc/host/
H A Dtmio_mmc.h127 void (*dataend)(struct tmio_mmc_host *host); member
H A Duniphier-sd.c236 .dataend = uniphier_sd_external_dma_dataend,
360 .dataend = uniphier_sd_internal_dma_dataend,
H A Drenesas_sdhi_internal_dmac.c571 .dataend = renesas_sdhi_internal_dmac_dataend_dma,
H A Drenesas_sdhi_sys_dmac.c449 .dataend = renesas_sdhi_sys_dmac_dataend_dma,
H A Dtmio_mmc_core.c98 host->dma_ops->dataend(host); in tmio_mmc_dataend_dma()