Lines Matching refs:ulg
117 static int rpng_x_msb(ulg u32val);
133 static ulg image_width, image_height, image_rowbytes;
145 static ulg RMask, GMask, BMask;
434 ulg bg_pixel = 0L; in rpng_x_create_window()
435 ulg attrmask; in rpng_x_create_window()
614 bg_pixel = ((ulg)bg_red << RShift) | in rpng_x_create_window()
615 ((ulg)bg_green << GShift) | in rpng_x_create_window()
616 ((ulg)bg_blue << BShift); in rpng_x_create_window()
618 bg_pixel = ((((ulg)bg_red << 8) >> RShift) & RMask) | in rpng_x_create_window()
619 ((((ulg)bg_green << 8) >> GShift) & GMask) | in rpng_x_create_window()
620 ((((ulg)bg_blue << 8) >> BShift) & BMask); in rpng_x_create_window()
691 ulg i, row, lastrow = 0; in rpng_x_display_image()
692 ulg pixel; in rpng_x_display_image()
706 ulg red, green, blue; in rpng_x_display_image()
894 static int rpng_x_msb(ulg u32val) in rpng_x_msb()