MCPcopy Index your code
hub / github.com/MapServer/MapServer / pam_freeacolorhash

Function pam_freeacolorhash

mapquantization.c:763–777  ·  view source on GitHub ↗
( acht )

Source from the content-addressed store, hash-verified

761
762
763static void
764pam_freeacolorhash( acht )
765acolorhash_table acht;
766{
767 int i;
768 acolorhist_list achl, achlnext;
769
770 for ( i = 0; i < HASH_SIZE; ++i )
771 for ( achl = acht[i]; achl != (acolorhist_list) 0; achl = achlnext )
772 {
773 achlnext = achl->next;
774 free( (char*) achl );
775 }
776 free( (char*) acht );
777}
778
779
780

Callers 3

msClassifyRasterBufferFunction · 0.85
pam_computeacolorhistFunction · 0.85
pam_computeacolorhashFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected