Searched refs:buff2 (Results 1 – 3 of 3) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/libtiff/tiff/ |
| H A D | 0001-tiffcrop-subroutines-require-a-larger-buffer-fixes-2.patch | 175 - bytebuff1 = (buff2 >> 56); 176 + bytebuff1 = (uint8_t)(buff2 >> 56); 178 - bytebuff2 = (buff2 >> 48); 179 + bytebuff2 = (uint8_t)(buff2 >> 48); 181 - bytebuff3 = (buff2 >> 40); 182 + bytebuff3 = (uint8_t)(buff2 >> 40); 184 - bytebuff4 = (buff2 >> 32); 185 + bytebuff4 = (uint8_t)(buff2 >> 32); 193 - bytebuff1 = (buff2 >> 56); 194 + bytebuff1 = (uint8_t)(buff2 >> 56); [all …]
|
| H A D | 0001-tiffcrop-Fix-issue-330-and-some-more-from-320-to-349.patch | 124 uint8_t buff1 = 0, buff2 = 0; 148 buff1 = buff2 = 0; 156 uint16_t buff1 = 0, buff2 = 0; 186 uint32_t buff1 = 0, buff2 = 0; 217 uint64_t buff1 = 0, buff2 = 0, buff3 = 0; 246 uint8_t buff1 = 0, buff2 = 0; 276 uint16_t buff1 = 0, buff2 = 0; 306 uint32_t buff1 = 0, buff2 = 0; 336 buff2 = (buff2 << 8); 352 uint64_t buff1 = 0, buff2 = 0, buff3 = 0;
|
| /OK3568_Linux_fs/buildroot/dl/sox/git/test/ |
| H A D | corr.c | 43 static short buff2[BLEN]; variable 124 readin(fd2,buff2,bs); in main() 128 c12 += buff1[j]*buff2[j]; in main() 129 c22 += buff2[j]*buff2[j]; in main() 147 y=(buff1[j]+buff2[j]+1)/2; in main()
|