Lines Matching refs:targaheader
332 U_CHAR targaheader[18]; in start_input_tga() local
338 ((unsigned int)UCH(targaheader[offset]) + \ in start_input_tga()
339 (((unsigned int)UCH(targaheader[offset + 1])) << 8)) in start_input_tga()
341 if (!ReadOK(source->pub.input_file, targaheader, 18)) in start_input_tga()
345 if (targaheader[16] == 15) in start_input_tga()
346 targaheader[16] = 16; in start_input_tga()
348 idlen = UCH(targaheader[0]); in start_input_tga()
349 cmaptype = UCH(targaheader[1]); in start_input_tga()
350 subtype = UCH(targaheader[2]); in start_input_tga()
354 source->pixel_size = UCH(targaheader[16]) >> 3; in start_input_tga()
355 flags = UCH(targaheader[17]); /* Image Descriptor byte */ in start_input_tga()
362 (UCH(targaheader[16]) & 7) != 0 || /* bits/pixel must be multiple of 8 */ in start_input_tga()
458 read_colormap(source, (int)maplen, UCH(targaheader[7])); in start_input_tga()