Searched refs:sectsize (Results 1 – 9 of 9) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/libtiff/tiff/ |
| H A D | 0003-add-checks-for-return-value-of-limitMalloc-392.patch | 18 @@ -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 D | 0001-tiffcrop-subroutines-require-a-larger-buffer-fixes-2.patch | 398 @@ -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 D | 0002-tiffcrop-fix-issue-380-and-382-heap-buffer-overflow-.patch | 212 sectsize = (uint32_t) 216 if (createImageSection(sectsize, sect_buff_ptr))
|
| /OK3568_Linux_fs/kernel/fs/xfs/libxfs/ |
| H A D | xfs_fs.h | 133 __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 D | xfs_sb.c | 1126 geo->sectsize = sbp->sb_sectsize; in xfs_fs_geometry()
|
| /OK3568_Linux_fs/kernel/fs/xfs/ |
| H A D | xfs_ioctl32.h | 175 __u32 sectsize; /* (data) sector size, bytes */ member
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/alacritech/ |
| H A D | slicoss.c | 1112 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 D | heartbeat.c | 1766 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 D | super.c | 113 u32 sectsize,
|