Searched defs:xdata (Results 1 - 2 of 2) sorted by relevance

/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Drpng-x.c393 uch *xdata; local
599 xdata = (uch *)malloc(4*image_width*image_height);
602 xdata = (uch *)malloc(2*image_width*image_height);
605 xdata = (uch *)malloc(image_width*image_height);
609 if (!xdata) {
615 (char *)xdata, image_width, image_height, pad, 0);
619 free(xdata);
H A Drpng2-x.c617 uch *xdata; local
772 xdata = (uch *)malloc(4*rpng2_info.width*rpng2_info.height);
775 xdata = (uch *)malloc(2*rpng2_info.width*rpng2_info.height);
778 xdata = (uch *)malloc(rpng2_info.width*rpng2_info.height);
782 if (!xdata) {
788 (char *)xdata, rpng2_info.width, rpng2_info.height, pad, 0);
792 free(xdata);

Completed in 76 milliseconds