Lines Matching refs:gd_GIF

26 static gd_GIF *  gif_open(gd_GIF * gif);
27 static bool f_gif_open(gd_GIF * gif, const void * path, bool is_file);
28 static void f_gif_read(gd_GIF * gif, void * buf, size_t len);
29 static int f_gif_seek(gd_GIF * gif, size_t pos, int k);
30 static void f_gif_close(gd_GIF * gif);
33 read_num(gd_GIF * gif) in read_num()
43 gd_GIF *
46 gd_GIF gif_base; in gd_open_gif_file()
56 gd_GIF *
59 gd_GIF gif_base; in gd_open_gif_data()
68 static gd_GIF * gif_open(gd_GIF * gif_base) in gif_open()
76 gd_GIF *gif = NULL; in gif_open()
111 gif = lv_mem_alloc(sizeof(gd_GIF) + 5 * width * height); in gif_open()
113 gif = lv_mem_alloc(sizeof(gd_GIF) + 4 * width * height); in gif_open()
115 gif = lv_mem_alloc(sizeof(gd_GIF) + 3 * width * height); in gif_open()
119 memcpy(gif, gif_base, sizeof(gd_GIF)); in gif_open()
172 discard_sub_blocks(gd_GIF *gif) in discard_sub_blocks()
183 read_plain_text_ext(gd_GIF *gif) in read_plain_text_ext()
210 read_graphic_control_ext(gd_GIF *gif) in read_graphic_control_ext()
227 read_comment_ext(gd_GIF *gif) in read_comment_ext()
239 read_application_ext(gd_GIF *gif) in read_application_ext()
276 read_ext(gd_GIF *gif) in read_ext()
338 get_key(gd_GIF *gif, int key_size, uint8_t *sub_len, uint8_t *shift, uint8_t *byte) in get_key()
391 read_image_data(gd_GIF *gif, int interlace) in read_image_data()
465 read_image(gd_GIF *gif) in read_image()
491 render_frame_rect(gd_GIF *gif, uint8_t *buffer) in render_frame_rect()
527 dispose(gd_GIF *gif) in dispose()
574 gd_get_frame(gd_GIF *gif) in gd_get_frame()
601 gd_render_frame(gd_GIF *gif, uint8_t *buffer) in gd_render_frame()
616 gd_rewind(gd_GIF *gif) in gd_rewind()
623 gd_close_gif(gd_GIF *gif) in gd_close_gif()
629 static bool f_gif_open(gd_GIF * gif, const void * path, bool is_file) in f_gif_open()
645 static void f_gif_read(gd_GIF * gif, void * buf, size_t len) in f_gif_read()
656 static int f_gif_seek(gd_GIF * gif, size_t pos, int k) in f_gif_seek()
670 static void f_gif_close(gd_GIF * gif) in f_gif_close()