Home
last modified time | relevance | path

Searched refs:sectsize (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/libtiff/tiff/
H A D0003-add-checks-for-return-value-of-limitMalloc-392.patch18 @@ -7357,7 +7357,11 @@ createImageSection(uint32_t sectsize, unsigned char **sect_buff_ptr)
21 sect_buff = (unsigned char *)limitMalloc(sectsize);
28 _TIFFmemset(sect_buff, 0, sectsize);
31 @@ -7373,15 +7377,15 @@ createImageSection(uint32_t sectsize, unsigned char **sect_buff_ptr)
40 _TIFFmemset(sect_buff, 0, sectsize);
49 prev_sectsize = sectsize;
H A D0001-tiffcrop-subroutines-require-a-larger-buffer-fixes-2.patch398 @@ -7533,23 +7555,23 @@ createImageSection(uint32_t sectsize, unsigned char **sect_buff_ptr)
402 - sect_buff = (unsigned char *)limitMalloc(sectsize);
403 + sect_buff = (unsigned char *)limitMalloc(sectsize + NUM_BUFF_OVERSIZE_BYTES);
409 - _TIFFmemset(sect_buff, 0, sectsize);
410 + _TIFFmemset(sect_buff, 0, sectsize + NUM_BUFF_OVERSIZE_BYTES);
414 if (prev_sectsize < sectsize)
416 - new_buff = _TIFFrealloc(sect_buff, sectsize);
417 + new_buff = _TIFFrealloc(sect_buff, sectsize + NUM_BUFF_OVERSIZE_BYTES);
421 - sect_buff = (unsigned char *)limitMalloc(sectsize);
422 + sect_buff = (unsigned char *)limitMalloc(sectsize + NUM_BUFF_OVERSIZE_BYTES);
[all …]
H A D0002-tiffcrop-fix-issue-380-and-382-heap-buffer-overflow-.patch212 sectsize = (uint32_t)
216 if (createImageSection(sectsize, sect_buff_ptr))
/OK3568_Linux_fs/kernel/fs/xfs/libxfs/
H A Dxfs_fs.h133 __u32 sectsize; /* (data) sector size, bytes */ member
159 __u32 sectsize; /* (data) sector size, bytes */ member
186 __u32 sectsize; /* (data) sector size, bytes */ member
H A Dxfs_sb.c1126 geo->sectsize = sbp->sb_sectsize; in xfs_fs_geometry()
/OK3568_Linux_fs/kernel/fs/xfs/
H A Dxfs_ioctl32.h175 __u32 sectsize; /* (data) sector size, bytes */ member
/OK3568_Linux_fs/kernel/drivers/net/ethernet/alacritech/
H A Dslicoss.c1112 u32 sectsize[SLIC_FIRMWARE_MAX_SECTIONS]; in slic_load_firmware() local
1154 sectsize[i] = slic_read_dword_from_firmware(fw, &idx); in slic_load_firmware()
1155 datalen += sectsize[i]; in slic_load_firmware()
1174 unsigned int ssize = sectsize[sect] >> 3; in slic_load_firmware()
1193 unsigned int ssize = sectsize[sect] >> 3; in slic_load_firmware()
/OK3568_Linux_fs/kernel/fs/ocfs2/cluster/
H A Dheartbeat.c1766 int sectsize; in o2hb_region_dev_store() local
1808 sectsize = bdev_logical_block_size(reg->hr_bdev); in o2hb_region_dev_store()
1809 if (sectsize != reg->hr_block_bytes) { in o2hb_region_dev_store()
1812 reg->hr_block_bytes, sectsize); in o2hb_region_dev_store()
/OK3568_Linux_fs/kernel/fs/ocfs2/
H A Dsuper.c113 u32 sectsize,