* Junio C. Hamano: > static int hashtable_index(const unsigned char *sha1) > { > - unsigned int i = *(unsigned int *)sha1; > - return (int)(i % obj_allocs); > + int cnt; > + unsigned int ix = *sha1++; > + > + for (cnt = 1; cnt < sizeof(unsigned int); cnt++) { > + ix <<= 8; > + ix |= *sha1++; > + } memcpy(&ix, sha1, sizeof(ix)); (GCC should do the rest.) > + return (int)(ix % obj_allocs); > } return (int)(ix & (obj_allocs - 1)); AFAICS, obj_allocs is a power of two. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sun Feb 12 22:20:00 2006
This archive was generated by hypermail 2.1.8 : 2006-02-12 22:20:12 EST