Searched refs:png (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/contrib/pnglite/
H A Dpnglite.c35 file_read(png_t *png, void *out, size_t size, size_t numel) argument
44 result = lseek(png->fd, offset, SEEK_CUR);
46 result = read(png->fd, out, size * numel);
53 file_read_ul(png_t *png, unsigned *out) argument
57 if (file_read(png, &buf, 1, 4) != 4)
72 png_get_bpp(png_t *png) argument
76 switch (png->color_type) {
91 bpp *= png->depth / 8;
97 png_read_ihdr(png_t *png) argument
104 if (file_read_ul(png,
144 png_print_info(png_t *png) argument
177 png_open(png_t *png, const char *filename) argument
230 png_close(png_t *png) argument
241 png_init_inflate(png_t *png) argument
264 png_end_inflate(png_t *png) argument
284 png_inflate(png_t *png, uint8_t *data, int len) argument
309 png_read_idat(png_t *png, unsigned length) argument
340 png_process_chunk(png_t *png) argument
484 png_unfilter(png_t *png, uint8_t *data) argument
556 png_get_data(png_t *png, uint8_t *data) argument
[all...]
H A Dpnglite.h95 * This function is used to open a png file with the internal file
99 * png - Empty png_t struct.
106 int png_open(png_t *png, const char *filename);
111 * This function prints some info about the opened png file to stdout.
114 * png - png struct to get info from.
117 void png_print_info(png_t *png);
136 * This function decodes the opened png file and stores the result in data.
137 * data should be big enough to hold the decoded png.
149 int png_get_data(png_t *png, uint8_
[all...]
/freebsd-current/contrib/bmake/PSD.doc/
H A DMakefile8 EXTRAHTMLFILES=make1.png make2.png
/freebsd-current/stand/images/
H A DMakefile4 FILES+= freebsd-brand-rev.png freebsd-brand.png freebsd-logo-rev.png
/freebsd-current/crypto/openssl/doc/life-cycles/
H A DMakefile4 all: png txt
5 png: $(subst .dot,.png,$(GRAPHS))
14 %.png: %.dot
16 @mv $<.png $@
25 rm -f $(wildcard *.png) $(wildcard *.txt)
/freebsd-current/usr.sbin/ntp/doc/icons/
H A DMakefile8 FILES= home.gif mail2.gif sitemap.png
/freebsd-current/stand/liblua/
H A Dgfx_utils.c49 png_t png; local
77 if ((error = png_open(&png, name)) != PNG_NO_ERROR) {
81 if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
83 (void) png_close(&png);
93 png_t png; local
110 if ((error = png_open(&png, name)) != PNG_NO_ERROR) {
114 if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
116 (void) png_close(&png);
/freebsd-current/stand/ficl/
H A Dgfx_loader.c67 png_t png; local
98 if ((error = png_open(&png, name)) != PNG_NO_ERROR) {
102 if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
104 (void) png_close(&png);
118 png_t png; local
138 if ((error = png_open(&png, name)) != PNG_NO_ERROR) {
142 if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
144 (void) png_close(&png);
/freebsd-current/stand/common/
H A Dgfx_fb.c1716 gfx_fb_putimage(png_t *png, uint32_t ux1, uint32_t uy1, uint32_t ux2, argument
1740 if (png->color_type != PNG_TRUECOLOR_ALPHA) {
1753 if (png->width > UINT16_MAX || png->height > UINT16_MAX) {
1759 if (png->width < 1 || png->height < 1) {
1772 ux2 = ux1 + png->width;
1773 uy2 = uy1 + png->height;
1777 ux2 = ux1 + (png->width * (uy2 - uy1)) / png
[all...]
/freebsd-current/contrib/wpa/wpa_supplicant/
H A Dhs20_supplicant.c465 int png; local
507 png = os_strncasecmp((char *) pos + 1, "image/png", 9) == 0;
535 png ? "png" : "icon");
/freebsd-current/stand/lua/
H A Ddrawer.lua449 image = "/boot/images/freebsd-brand-rev.png",

Completed in 183 milliseconds