Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: third_party/yasm/patched-yasm/libyasm/phash.h

Issue 11364046: Update Yasm to 1.2.0 (Yasm Part 1/3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Modified for use with yasm by Peter Johnson. 1 /* Modified for use with yasm by Peter Johnson. */
2 * $Id: phash.h 2101 2008-05-23 06:46:51Z peter $
3 */
4 /* 2 /*
5 ------------------------------------------------------------------------------ 3 ------------------------------------------------------------------------------
6 By Bob Jenkins, September 1996. 4 By Bob Jenkins, September 1996.
7 lookupa.h, a hash function for table lookup, same function as lookup.c. 5 lookupa.h, a hash function for table lookup, same function as lookup.c.
8 Use this code in any way you wish. Public Domain. It has no warranty. 6 Use this code in any way you wish. Public Domain. It has no warranty.
9 Source is http://burtleburtle.net/bob/c/lookupa.h 7 Source is http://burtleburtle.net/bob/c/lookupa.h
10 ------------------------------------------------------------------------------ 8 ------------------------------------------------------------------------------
11 */ 9 */
12 10
13 #ifndef YASM_LIB_DECL 11 #ifndef YASM_LIB_DECL
14 #define YASM_LIB_DECL 12 #define YASM_LIB_DECL
15 #endif 13 #endif
16 14
17 YASM_LIB_DECL 15 YASM_LIB_DECL
18 unsigned long phash_lookup(const char *k, size_t length, 16 unsigned long phash_lookup(const char *k, size_t length,
19 unsigned long level); 17 unsigned long level);
20 YASM_LIB_DECL 18 YASM_LIB_DECL
21 void phash_checksum(const char *k, size_t length, unsigned long *state); 19 void phash_checksum(const char *k, size_t length, unsigned long *state);
OLDNEW
« no previous file with comments | « third_party/yasm/patched-yasm/libyasm/parser.h ('k') | third_party/yasm/patched-yasm/libyasm/phash.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698