Searched refs:dataend (Results 1 – 6 of 6) sorted by relevance
4 Subject: [PATCH] mat4/mat5: fix int overflow in dataend calculation7 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. */
236 .dataend = uniphier_sd_external_dma_dataend,360 .dataend = uniphier_sd_internal_dma_dataend,
127 void (*dataend)(struct tmio_mmc_host *host); member
571 .dataend = renesas_sdhi_internal_dmac_dataend_dma,
449 .dataend = renesas_sdhi_sys_dmac_dataend_dma,
98 host->dma_ops->dataend(host); in tmio_mmc_dataend_dma()