Lines Matching refs:cache_methods
2079 MagickPrivate void GetPixelCacheMethods(CacheMethods *cache_methods) in GetPixelCacheMethods() argument
2081 assert(cache_methods != (CacheMethods *) NULL); in GetPixelCacheMethods()
2082 (void) ResetMagickMemory(cache_methods,0,sizeof(*cache_methods)); in GetPixelCacheMethods()
2083 cache_methods->get_virtual_pixel_handler=GetVirtualPixelCache; in GetPixelCacheMethods()
2084 cache_methods->get_virtual_pixels_handler=GetVirtualPixelsCache; in GetPixelCacheMethods()
2085 cache_methods->get_virtual_metacontent_from_handler= in GetPixelCacheMethods()
2087 cache_methods->get_one_virtual_pixel_from_handler=GetOneVirtualPixelFromCache; in GetPixelCacheMethods()
2088 cache_methods->get_authentic_pixels_handler=GetAuthenticPixelsCache; in GetPixelCacheMethods()
2089 cache_methods->get_authentic_metacontent_from_handler= in GetPixelCacheMethods()
2091 cache_methods->get_authentic_pixels_from_handler=GetAuthenticPixelsFromCache; in GetPixelCacheMethods()
2092 cache_methods->get_one_authentic_pixel_from_handler= in GetPixelCacheMethods()
2094 cache_methods->queue_authentic_pixels_handler=QueueAuthenticPixelsCache; in GetPixelCacheMethods()
2095 cache_methods->sync_authentic_pixels_handler=SyncAuthenticPixelsCache; in GetPixelCacheMethods()
2096 cache_methods->destroy_pixel_handler=DestroyImagePixelCache; in GetPixelCacheMethods()
4528 MagickPrivate void SetPixelCacheMethods(Cache cache,CacheMethods *cache_methods) in SetPixelCacheMethods() argument
4543 assert(cache_methods != (CacheMethods *) NULL); in SetPixelCacheMethods()
4549 if (cache_methods->get_virtual_pixel_handler != (GetVirtualPixelHandler) NULL) in SetPixelCacheMethods()
4551 cache_methods->get_virtual_pixel_handler; in SetPixelCacheMethods()
4552 if (cache_methods->destroy_pixel_handler != (DestroyPixelHandler) NULL) in SetPixelCacheMethods()
4554 cache_methods->destroy_pixel_handler; in SetPixelCacheMethods()
4555 if (cache_methods->get_virtual_metacontent_from_handler != in SetPixelCacheMethods()
4558 cache_methods->get_virtual_metacontent_from_handler; in SetPixelCacheMethods()
4559 if (cache_methods->get_authentic_pixels_handler != in SetPixelCacheMethods()
4562 cache_methods->get_authentic_pixels_handler; in SetPixelCacheMethods()
4563 if (cache_methods->queue_authentic_pixels_handler != in SetPixelCacheMethods()
4566 cache_methods->queue_authentic_pixels_handler; in SetPixelCacheMethods()
4567 if (cache_methods->sync_authentic_pixels_handler != in SetPixelCacheMethods()
4570 cache_methods->sync_authentic_pixels_handler; in SetPixelCacheMethods()
4571 if (cache_methods->get_authentic_pixels_from_handler != in SetPixelCacheMethods()
4574 cache_methods->get_authentic_pixels_from_handler; in SetPixelCacheMethods()
4575 if (cache_methods->get_authentic_metacontent_from_handler != in SetPixelCacheMethods()
4578 cache_methods->get_authentic_metacontent_from_handler; in SetPixelCacheMethods()
4584 cache_methods->get_one_virtual_pixel_from_handler; in SetPixelCacheMethods()
4586 cache_methods->get_one_authentic_pixel_from_handler; in SetPixelCacheMethods()
4590 cache_methods->get_one_authentic_pixel_from_handler; in SetPixelCacheMethods()