Searched refs:bckt (Results 1 - 1 of 1) sorted by relevance
/ast/src/lib/libvcodex/ |
H A D | vcbcktsort.c | 23 ** Return the number of distinct bytes. The bckt[] argument returns 24 ** the cumulative counts of all bytes. Thus, bckt[0] is the count 25 ** of byte 0, bckt[1] is the cumulative count of 0 and 1, and so on. 31 ssize_t vcbcktsort(ssize_t* indx, ssize_t* list, ssize_t n, Vcchar_t* data, ssize_t* bckt) argument 33 ssize_t vcbcktsort(indx, list, n, data, bckt) 38 ssize_t* bckt; /* [256] buckets */ 45 memset(bckt, 0, 256*sizeof(ssize_t)); 48 bckt[data[list[p]]] += 1; 52 bckt[data[p]] += 1; 56 { if((c = bckt[ [all...] |
Completed in 14 milliseconds