Searched refs:filter_bytes (Results 1 – 3 of 3) sorted by relevance
4407 int filter_bytes = img_n*bytes; in stbi__create_png_image_raw() local4434 filter_bytes = 1; in stbi__create_png_image_raw()4443 for (k=0; k < filter_bytes; ++k) { in stbi__create_png_image_raw()4463 cur[filter_bytes] = 255; // first pixel top byte in stbi__create_png_image_raw()4464 cur[filter_bytes+1] = 255; // first pixel bottom byte in stbi__create_png_image_raw()4466 raw += filter_bytes; in stbi__create_png_image_raw()4477 int nk = (width - 1)*filter_bytes; in stbi__create_png_image_raw()4484 … STBI__CASE(STBI__F_sub) { cur[k] = STBI__BYTECAST(raw[k] + cur[k-filter_bytes]); } break; in stbi__create_png_image_raw()4486 …F_avg) { cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k-filter_bytes])>>1)); } break; in stbi__create_png_image_raw()4487 … { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes],prior[k],prior[k-filter_bytes… in stbi__create_png_image_raw()[all …]
2472 u64 filter_bytes = bytes; in __btrfs_add_free_space() local2509 filter_bytes = max(filter_bytes, info->bytes); in __btrfs_add_free_space()2524 btrfs_discard_check_filter(block_group, filter_bytes); in __btrfs_add_free_space()