Lines Matching refs:BWmap
222 if (img->BWmap) { in TIFFRGBAImageEnd()
223 _TIFFfree(img->BWmap); in TIFFRGBAImageEnd()
224 img->BWmap = NULL; in TIFFRGBAImageEnd()
472 img->BWmap = NULL; in TIFFRGBAImageBegin()
1282 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1288 *cp++ = BWmap[*pp][0]; in DECLAREContigPutFunc()
1302 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1308 *cp++ = BWmap[*pp][0] & (*(pp+1) << 24 | ~A1); in DECLAREContigPutFunc()
1322 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1332 *cp++ = BWmap[*wp >> 8][0]; in DECLAREContigPutFunc()
1346 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1352 UNROLL8(w, bw = BWmap[*pp++], *cp++ = *bw++); in DECLAREContigPutFunc()
1363 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1369 UNROLL4(w, bw = BWmap[*pp++], *cp++ = *bw++); in DECLAREContigPutFunc()
1380 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1386 UNROLL2(w, bw = BWmap[*pp++], *cp++ = *bw++); in DECLAREContigPutFunc()
2322 img->BWmap = (uint32**) _TIFFmalloc( in makebwmap()
2324 if (img->BWmap == NULL) { in makebwmap()
2328 p = (uint32*)(img->BWmap + 256); in makebwmap()
2331 img->BWmap[i] = p; in makebwmap()