Lines Matching refs:ppf
930 store_freefile(png_store_file **ppf) in store_freefile() argument
932 if (*ppf != NULL) in store_freefile()
934 store_freefile(&(*ppf)->next); in store_freefile()
936 store_freebuffer(&(*ppf)->data); in store_freefile()
937 (*ppf)->datacount = 0; in store_freefile()
938 if ((*ppf)->palette != NULL) in store_freefile()
940 free((*ppf)->palette); in store_freefile()
941 (*ppf)->palette = NULL; in store_freefile()
942 (*ppf)->npalette = 0; in store_freefile()
944 free(*ppf); in store_freefile()
945 *ppf = NULL; in store_freefile()