Parallel
allen.lst
Associated article: A Pixel Ordering Algorithm
Tags: Parallel
_A PIXEL ORDERING ALGORITHM_
by Norton T. Allen
[LISTING ONE]
/* points.c Copyright (c) 1989 by Norton T. Allen */
#include "points.h"
int nbits(int i) {
int nb;
for (nb = 0; i != 0; nb++) i >>= 1;
return(nb);
}
static int ...


