Lines Matching refs:pixbuf
27 GdkPixbuf *pixbuf, *tmp; in LLVMFuzzerTestOneInput() local
30 pixbuf = g_object_new(GDK_TYPE_PIXBUF, in LLVMFuzzerTestOneInput()
38 if (pixbuf == NULL) { in LLVMFuzzerTestOneInput()
41 gdk_pixbuf_scale(pixbuf, pixbuf, in LLVMFuzzerTestOneInput()
43 gdk_pixbuf_get_width(pixbuf) / 4, in LLVMFuzzerTestOneInput()
44 gdk_pixbuf_get_height(pixbuf) / 4, in LLVMFuzzerTestOneInput()
48 tmp = gdk_pixbuf_rotate_simple(pixbuf, rot_amount * 90); in LLVMFuzzerTestOneInput()
49 tmp = gdk_pixbuf_flip(pixbuf, TRUE); in LLVMFuzzerTestOneInput()
50 tmp = gdk_pixbuf_composite_color_simple(pixbuf, in LLVMFuzzerTestOneInput()
51 gdk_pixbuf_get_width(pixbuf) / 4, in LLVMFuzzerTestOneInput()
52 gdk_pixbuf_get_height(pixbuf) / 4, in LLVMFuzzerTestOneInput()
63 gdk_pixbuf_set_option(pixbuf, buf, buf); in LLVMFuzzerTestOneInput()
64 profile = gdk_pixbuf_get_option(pixbuf, buf); in LLVMFuzzerTestOneInput()
65 tmp = gdk_pixbuf_new_from_data(gdk_pixbuf_get_pixels(pixbuf), in LLVMFuzzerTestOneInput()
68 gdk_pixbuf_get_bits_per_sample(pixbuf), in LLVMFuzzerTestOneInput()
69 gdk_pixbuf_get_width(pixbuf), in LLVMFuzzerTestOneInput()
70 gdk_pixbuf_get_height(pixbuf), in LLVMFuzzerTestOneInput()
71 gdk_pixbuf_get_rowstride(pixbuf), in LLVMFuzzerTestOneInput()
77 g_object_unref(pixbuf); in LLVMFuzzerTestOneInput()