Lines Matching defs:guint32
28 delete [] reinterpret_cast<guint32*>(pixels);
48 operator guint32() const {
49 guint32 result = (static_cast<guint32>(v[0]) << 0)
50 | (static_cast<guint32>(v[1]) << 8)
51 | (static_cast<guint32>(v[2]) << 16)
52 | (static_cast<guint32>(v[3]) << 24);
57 GdkPixbuf *sp_cursor_pixbuf_from_xpm(char const *const *xpm, GdkColor const& black, GdkColor const& white, guint32 fill, guint32 stroke)
102 guint32 *pixmap_buffer = new guint32[width * height];
111 return gdk_pixbuf_new_from_data(reinterpret_cast<guchar*>(pixmap_buffer), GDK_COLORSPACE_RGB, TRUE, 8, width, height, width * sizeof(guint32), free_cursor_data, NULL);