• Home
  • Raw
  • Download

Lines Matching refs:cache_methods

2231 MagickPrivate void GetPixelCacheMethods(CacheMethods *cache_methods)  in GetPixelCacheMethods()  argument
2233 assert(cache_methods != (CacheMethods *) NULL); in GetPixelCacheMethods()
2234 (void) memset(cache_methods,0,sizeof(*cache_methods)); in GetPixelCacheMethods()
2235 cache_methods->get_virtual_pixel_handler=GetVirtualPixelCache; in GetPixelCacheMethods()
2236 cache_methods->get_virtual_pixels_handler=GetVirtualPixelsCache; in GetPixelCacheMethods()
2237 cache_methods->get_virtual_metacontent_from_handler= in GetPixelCacheMethods()
2239 cache_methods->get_one_virtual_pixel_from_handler=GetOneVirtualPixelFromCache; in GetPixelCacheMethods()
2240 cache_methods->get_authentic_pixels_handler=GetAuthenticPixelsCache; in GetPixelCacheMethods()
2241 cache_methods->get_authentic_metacontent_from_handler= in GetPixelCacheMethods()
2243 cache_methods->get_authentic_pixels_from_handler=GetAuthenticPixelsFromCache; in GetPixelCacheMethods()
2244 cache_methods->get_one_authentic_pixel_from_handler= in GetPixelCacheMethods()
2246 cache_methods->queue_authentic_pixels_handler=QueueAuthenticPixelsCache; in GetPixelCacheMethods()
2247 cache_methods->sync_authentic_pixels_handler=SyncAuthenticPixelsCache; in GetPixelCacheMethods()
2248 cache_methods->destroy_pixel_handler=DestroyImagePixelCache; in GetPixelCacheMethods()
4864 MagickPrivate void SetPixelCacheMethods(Cache cache,CacheMethods *cache_methods) in SetPixelCacheMethods() argument
4879 assert(cache_methods != (CacheMethods *) NULL); in SetPixelCacheMethods()
4885 if (cache_methods->get_virtual_pixel_handler != (GetVirtualPixelHandler) NULL) in SetPixelCacheMethods()
4887 cache_methods->get_virtual_pixel_handler; in SetPixelCacheMethods()
4888 if (cache_methods->destroy_pixel_handler != (DestroyPixelHandler) NULL) in SetPixelCacheMethods()
4890 cache_methods->destroy_pixel_handler; in SetPixelCacheMethods()
4891 if (cache_methods->get_virtual_metacontent_from_handler != in SetPixelCacheMethods()
4894 cache_methods->get_virtual_metacontent_from_handler; in SetPixelCacheMethods()
4895 if (cache_methods->get_authentic_pixels_handler != in SetPixelCacheMethods()
4898 cache_methods->get_authentic_pixels_handler; in SetPixelCacheMethods()
4899 if (cache_methods->queue_authentic_pixels_handler != in SetPixelCacheMethods()
4902 cache_methods->queue_authentic_pixels_handler; in SetPixelCacheMethods()
4903 if (cache_methods->sync_authentic_pixels_handler != in SetPixelCacheMethods()
4906 cache_methods->sync_authentic_pixels_handler; in SetPixelCacheMethods()
4907 if (cache_methods->get_authentic_pixels_from_handler != in SetPixelCacheMethods()
4910 cache_methods->get_authentic_pixels_from_handler; in SetPixelCacheMethods()
4911 if (cache_methods->get_authentic_metacontent_from_handler != in SetPixelCacheMethods()
4914 cache_methods->get_authentic_metacontent_from_handler; in SetPixelCacheMethods()
4920 cache_methods->get_one_virtual_pixel_from_handler; in SetPixelCacheMethods()
4922 cache_methods->get_one_authentic_pixel_from_handler; in SetPixelCacheMethods()
4926 cache_methods->get_one_authentic_pixel_from_handler; in SetPixelCacheMethods()