Lines Matching refs:BWmap
223 if (img->BWmap) { in TIFFRGBAImageEnd()
224 _TIFFfree(img->BWmap); in TIFFRGBAImageEnd()
225 img->BWmap = NULL; in TIFFRGBAImageEnd()
288 img->BWmap = NULL; in TIFFRGBAImageBegin()
1344 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1350 *cp++ = BWmap[*pp][0]; in DECLAREContigPutFunc()
1364 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1370 *cp++ = BWmap[*pp][0] & ((uint32)*(pp+1) << 24 | ~A1); in DECLAREContigPutFunc()
1384 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1394 *cp++ = BWmap[*wp >> 8][0]; in DECLAREContigPutFunc()
1408 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1414 UNROLL8(w, bw = BWmap[*pp++], *cp++ = *bw++); in DECLAREContigPutFunc()
1425 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1431 UNROLL4(w, bw = BWmap[*pp++], *cp++ = *bw++); in DECLAREContigPutFunc()
1442 uint32** BWmap = img->BWmap; in DECLAREContigPutFunc() local
1448 UNROLL2(w, bw = BWmap[*pp++], *cp++ = *bw++); in DECLAREContigPutFunc()
2414 img->BWmap = (uint32**) _TIFFmalloc( in makebwmap()
2416 if (img->BWmap == NULL) { in makebwmap()
2420 p = (uint32*)(img->BWmap + 256); in makebwmap()
2423 img->BWmap[i] = p; in makebwmap()