2006-06-08から1日間の記事一覧

各FNV hashの値

使用した値はMD5やRIPEMDでおなじみのあの値

FNV32 hash in C

This code is in the NYSL( public domain ). #define FNV_32_PRIME ((uint32)0x01000193) #define uint32 unsigned intuint32 dkcFNV32_INL(const void *buf,size_t len,uint32 hval) { unsigned char *bp = (unsigned char *)buf; /* start of buffer */ u…

FNV32 hash in assembly

http://www.isthe.com/chongo/tech/comp/fnv/#PowerBASIC に掲載されているの物をVCでコンパイル可能なインラインアセンブラで書き下しました。 移植するにあたって http://www.geocities.co.jp/SiliconValley-Cupertino/3384/ のアセンブラの話を参考にしま…

FNV hash implementation

このリンクをたどって買ってくれると研究費が入るので嬉しい by d金魚 アセンブリ アセンブラの教科書 をAmazonで調べる