Lines Matching refs:nc

604 PhotoshopBanner(FILE* fd, uint32 w, uint32 h, int bs, int nc, char* startline)  in PhotoshopBanner()  argument
607 (long) w, (long) h, bitspersample, nc, bs); in PhotoshopBanner()
608 fprintf(fd, startline, nc); in PhotoshopBanner()
2395 PSColorContigPreamble(FILE* fd, uint32 w, uint32 h, int nc) in PSColorContigPreamble() argument
2397 ps_bytesperrow = nc * (tf_bytesperrow / samplesperpixel); in PSColorContigPreamble()
2398 PhotoshopBanner(fd, w, h, 1, nc, "false %d colorimage"); in PSColorContigPreamble()
2405 fprintf(fd, "false %d colorimage\n", nc); in PSColorContigPreamble()
2409 PSColorSeparatePreamble(FILE* fd, uint32 w, uint32 h, int nc) in PSColorSeparatePreamble() argument
2413 PhotoshopBanner(fd, w, h, ps_bytesperrow, nc, "true %d colorimage"); in PSColorSeparatePreamble()
2414 for (i = 0; i < nc; i++) in PSColorSeparatePreamble()
2421 for (i = 0; i < nc; i++) in PSColorSeparatePreamble()
2423 fprintf(fd, "true %d colorimage\n", nc); in PSColorSeparatePreamble()
2434 PSDataColorContig(FILE* fd, TIFF* tif, uint32 w, uint32 h, int nc) in PSDataColorContig() argument
2437 int breaklen = MAXLINE, es = samplesperpixel - nc; in PSDataColorContig()
2463 DOBREAK(breaklen, nc, fd); in PSDataColorContig()
2470 adjust = 255 - cp[nc]; in PSDataColorContig()
2471 switch (nc) { in PSDataColorContig()
2482 DOBREAK(breaklen, nc, fd); in PSDataColorContig()
2483 switch (nc) { in PSDataColorContig()
2497 PSDataColorSeparate(FILE* fd, TIFF* tif, uint32 w, uint32 h, int nc) in PSDataColorSeparate() argument
2512 maxs = (samplesperpixel > nc ? nc : samplesperpixel); in PSDataColorSeparate()
2535 int breaklen = MAXLINE, nc; in PSDataPalette() local
2552 nc = 3 * (8 / bitspersample); in PSDataPalette()
2572 DOBREAK(breaklen, nc, fd); in PSDataPalette()