C implementation for the linear extension generation algorithm as defined by
Valon-Rotem.
Based on Donald E. Knuth, "The Art of Computer Programming, volume 4, fascicle
2B: Algorithm V - All topological sorts".
bitrev
C implementation for a bit-reversal operation on unsigned chars.
bitunzip
C implementation of the bit-wise zip algorithm from "Algorithms for
programmers".
bitzip
C implementation of the bit-wise zip algorithm from "Algorithms for
programmers".
C implementation for a circle generation algorithm.
Original source: http://www.relicarium.org.
Uses streamed outputs.
cordic
ANSI C implementation for a fixed-point universal CORDIC. The arithmetic
representation used is signed fixed-point (Q2.14S). The implementation has
been generated by a modified version of the simple fixed-point CORDIC tools
from:
http://www.dcs.gla.ac.uk/~jhw/cordic/
Calculates string edit distance using dynamic programming.
epx
Scale image data by 2x using the EPX/Scale2x/AdvMAME2x algorithm.
EPX ("Eric's Pixel eXpansion") is an algorithm developed by Eric Johnston.
erosion
C implementation of the erosion morphological operator.
fastdivs
C implementation for signed integer division based on a modified version of
signed long division as found in "Hacker's Delight" and Ian Kaplan's
signed_divide routine.
fastdivu
C implementation for unsigned integer division based on a modified version of
unsigned long division as found in "Hacker's Delight".