Searched refs:imgdata (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Lib/plat-irix5/ |
D | jpeg.py | 19 def compress(imgdata, width, height, bytesperpixel): argument 39 jpegdata = comp.Compress(1, imgdata) 61 imgdata = decomp.Decompress(1, jpegdata) 62 return imgdata, width, height, bytesperpixel 86 imgdata, width, height, bytesperpixel = decompress(jpegdata) 104 gl.lrectwrite(0, 0, width-1, height-1, imgdata) 110 gl.lrectwrite(0, 0, width-1, height-1, imgdata) 113 newjpegdata = compress(imgdata, width, height, bytesperpixel)
|
/external/python/cpython2/Lib/plat-irix6/ |
D | jpeg.py | 19 def compress(imgdata, width, height, bytesperpixel): argument 39 jpegdata = comp.Compress(1, imgdata) 61 imgdata = decomp.Decompress(1, jpegdata) 62 return imgdata, width, height, bytesperpixel 86 imgdata, width, height, bytesperpixel = decompress(jpegdata) 104 gl.lrectwrite(0, 0, width-1, height-1, imgdata) 110 gl.lrectwrite(0, 0, width-1, height-1, imgdata) 113 newjpegdata = compress(imgdata, width, height, bytesperpixel)
|
/external/vboot_reference/utility/ |
D | bmpblk_font.c | 171 void *imgdata = 0; in main() local 180 imgdata = read_entire_file(imgfile, &imgsize); in main() 181 if (!imgdata) in main() 184 if (FORMAT_BMP != identify_image_type(imgdata, imgsize, &entry.info)) { in main() 208 if (1 != fwrite(imgdata, imgsize, 1, ofp)) { in main() 218 discard_file(imgdata, imgsize); in main()
|