fnv 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (10) hide show
  1. data/Gemfile +4 -0
  2. data/Gemfile.lock +15 -0
  3. data/LICENSE +20 -0
  4. data/README.md +16 -0
  5. data/Rakefile +29 -0
  6. data/VERSION +1 -0
  7. data/lib/fnv.rb +52 -0
  8. data/test/fnv_test.rb +624 -0
  9. data/test_fnv.c +2237 -0
  10. metadata +107 -0
@@ -0,0 +1,2237 @@
1
+ /*
2
+ * test_fnv - FNV test suite
3
+ *
4
+ * @(#) $Revision: 5.3 $
5
+ * @(#) $Id: test_fnv.c,v 5.3 2009/06/30 11:50:41 chongo Exp $
6
+ * @(#) $Source: /usr/local/src/cmd/fnv/RCS/test_fnv.c,v $
7
+ *
8
+ ***
9
+ *
10
+ * Fowler/Noll/Vo hash
11
+ *
12
+ * The basis of this hash algorithm was taken from an idea sent
13
+ * as reviewer comments to the IEEE POSIX P1003.2 committee by:
14
+ *
15
+ * Phong Vo (http://www.research.att.com/info/kpv/)
16
+ * Glenn Fowler (http://www.research.att.com/~gsf/)
17
+ *
18
+ * In a subsequent ballot round:
19
+ *
20
+ * Landon Curt Noll (http://www.isthe.com/chongo/)
21
+ *
22
+ * improved on their algorithm. Some people tried this hash
23
+ * and found that it worked rather well. In an EMail message
24
+ * to Landon, they named it the ``Fowler/Noll/Vo'' or FNV hash.
25
+ *
26
+ * FNV hashes are designed to be fast while maintaining a low
27
+ * collision rate. The FNV speed allows one to quickly hash lots
28
+ * of data while maintaining a reasonable collision rate. See:
29
+ *
30
+ * http://www.isthe.com/chongo/tech/comp/fnv/index.html
31
+ *
32
+ * for more details as well as other forms of the FNV hash.
33
+ *
34
+ ***
35
+ *
36
+ * Please do not copyright this code. This code is in the public domain.
37
+ *
38
+ * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
39
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
40
+ * EVENT SHALL LANDON CURT NOLL BE LIABLE FOR ANY SPECIAL, INDIRECT OR
41
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
42
+ * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
43
+ * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
44
+ * PERFORMANCE OF THIS SOFTWARE.
45
+ *
46
+ * By:
47
+ * chongo <Landon Curt Noll> /\oo/\
48
+ * http://www.isthe.com/chongo/
49
+ *
50
+ * Share and Enjoy! :-)
51
+ */
52
+
53
+ #include <stdio.h>
54
+ #include "longlong.h"
55
+ #include "fnv.h"
56
+
57
+ #define LEN(x) (sizeof(x)-1)
58
+ /* TEST macro does not include trailing NUL byte in the test vector */
59
+ #define TEST(x) {x, LEN(x)}
60
+ /* TEST0 macro includes the trailing NUL byte in the test vector */
61
+ #define TEST0(x) {x, sizeof(x)}
62
+ /* REPEAT500 - repeat a string 500 times */
63
+ #define R500(x) R100(x)R100(x)R100(x)R100(x)R100(x)
64
+ #define R100(x) R10(x)R10(x)R10(x)R10(x)R10(x)R10(x)R10(x)R10(x)R10(x)R10(x)
65
+ #define R10(x) x x x x x x x x x x
66
+
67
+ /*
68
+ * FNV test vectors
69
+ *
70
+ * NOTE: A NULL pointer marks beyond the end of the test vectors.
71
+ *
72
+ * NOTE: The order of the fnv_test_str[] test vectors is 1-to-1 with:
73
+ *
74
+ * struct fnv0_32_test_vector fnv0_32_vector[];
75
+ * struct fnv1_32_test_vector fnv1_32_vector[];
76
+ * struct fnv1a_32_test_vector fnv1a_32_vector[];
77
+ * struct fnv0_64_test_vector fnv0_64_vector[];
78
+ * struct fnv1_64_test_vector fnv1_64_vector[];
79
+ * struct fnv1a_64_test_vector fnv1a_64_vector[];
80
+ *
81
+ * IMPORTANT NOTE:
82
+ *
83
+ * If you change the fnv_test_str[] array, you need
84
+ * to also change ALL of the above fnv*_vector arrays!!!
85
+ *
86
+ * To rebuild, try:
87
+ *
88
+ * make vector.c
89
+ *
90
+ * and then fold the results into the source file.
91
+ * Of course, you better make sure that the vaules
92
+ * produced by the above command are valid, otherwise
93
+ * you will be testing against invalid vectors!
94
+ */
95
+ struct test_vector fnv_test_str[] = {
96
+ TEST(""),
97
+ TEST("a"),
98
+ TEST("b"),
99
+ TEST("c"),
100
+ TEST("d"),
101
+ TEST("e"),
102
+ TEST("f"),
103
+ TEST("fo"),
104
+ TEST("foo"),
105
+ TEST("foob"),
106
+ TEST("fooba"),
107
+ TEST("foobar"),
108
+ TEST0(""),
109
+ TEST0("a"),
110
+ TEST0("b"),
111
+ TEST0("c"),
112
+ TEST0("d"),
113
+ TEST0("e"),
114
+ TEST0("f"),
115
+ TEST0("fo"),
116
+ TEST0("foo"),
117
+ TEST0("foob"),
118
+ TEST0("fooba"),
119
+ TEST0("foobar"),
120
+ TEST("ch"),
121
+ TEST("cho"),
122
+ TEST("chon"),
123
+ TEST("chong"),
124
+ TEST("chongo"),
125
+ TEST("chongo "),
126
+ TEST("chongo w"),
127
+ TEST("chongo wa"),
128
+ TEST("chongo was"),
129
+ TEST("chongo was "),
130
+ TEST("chongo was h"),
131
+ TEST("chongo was he"),
132
+ TEST("chongo was her"),
133
+ TEST("chongo was here"),
134
+ TEST("chongo was here!"),
135
+ TEST("chongo was here!\n"),
136
+ TEST0("ch"),
137
+ TEST0("cho"),
138
+ TEST0("chon"),
139
+ TEST0("chong"),
140
+ TEST0("chongo"),
141
+ TEST0("chongo "),
142
+ TEST0("chongo w"),
143
+ TEST0("chongo wa"),
144
+ TEST0("chongo was"),
145
+ TEST0("chongo was "),
146
+ TEST0("chongo was h"),
147
+ TEST0("chongo was he"),
148
+ TEST0("chongo was her"),
149
+ TEST0("chongo was here"),
150
+ TEST0("chongo was here!"),
151
+ TEST0("chongo was here!\n"),
152
+ TEST("cu"),
153
+ TEST("cur"),
154
+ TEST("curd"),
155
+ TEST("curds"),
156
+ TEST("curds "),
157
+ TEST("curds a"),
158
+ TEST("curds an"),
159
+ TEST("curds and"),
160
+ TEST("curds and "),
161
+ TEST("curds and w"),
162
+ TEST("curds and wh"),
163
+ TEST("curds and whe"),
164
+ TEST("curds and whey"),
165
+ TEST("curds and whey\n"),
166
+ TEST0("cu"),
167
+ TEST0("cur"),
168
+ TEST0("curd"),
169
+ TEST0("curds"),
170
+ TEST0("curds "),
171
+ TEST0("curds a"),
172
+ TEST0("curds an"),
173
+ TEST0("curds and"),
174
+ TEST0("curds and "),
175
+ TEST0("curds and w"),
176
+ TEST0("curds and wh"),
177
+ TEST0("curds and whe"),
178
+ TEST0("curds and whey"),
179
+ TEST0("curds and whey\n"),
180
+ TEST("hi"), TEST0("hi"),
181
+ TEST("hello"), TEST0("hello"),
182
+ TEST("\xff\x00\x00\x01"), TEST("\x01\x00\x00\xff"),
183
+ TEST("\xff\x00\x00\x02"), TEST("\x02\x00\x00\xff"),
184
+ TEST("\xff\x00\x00\x03"), TEST("\x03\x00\x00\xff"),
185
+ TEST("\xff\x00\x00\x04"), TEST("\x04\x00\x00\xff"),
186
+ TEST("\x40\x51\x4e\x44"), TEST("\x44\x4e\x51\x40"),
187
+ TEST("\x40\x51\x4e\x4a"), TEST("\x4a\x4e\x51\x40"),
188
+ TEST("\x40\x51\x4e\x54"), TEST("\x54\x4e\x51\x40"),
189
+ TEST("127.0.0.1"), TEST0("127.0.0.1"),
190
+ TEST("127.0.0.2"), TEST0("127.0.0.2"),
191
+ TEST("127.0.0.3"), TEST0("127.0.0.3"),
192
+ TEST("64.81.78.68"), TEST0("64.81.78.68"),
193
+ TEST("64.81.78.74"), TEST0("64.81.78.74"),
194
+ TEST("64.81.78.84"), TEST0("64.81.78.84"),
195
+ TEST("feedface"), TEST0("feedface"),
196
+ TEST("feedfacedaffdeed"), TEST0("feedfacedaffdeed"),
197
+ TEST("feedfacedeadbeef"), TEST0("feedfacedeadbeef"),
198
+ TEST("line 1\nline 2\nline 3"),
199
+ TEST("chongo <Landon Curt Noll> /\\../\\"),
200
+ TEST0("chongo <Landon Curt Noll> /\\../\\"),
201
+ TEST("chongo (Landon Curt Noll) /\\../\\"),
202
+ TEST0("chongo (Landon Curt Noll) /\\../\\"),
203
+ TEST("http://antwrp.gsfc.nasa.gov/apod/astropix.html"),
204
+ TEST("http://en.wikipedia.org/wiki/Fowler_Noll_Vo_hash"),
205
+ TEST("http://epod.usra.edu/"),
206
+ TEST("http://exoplanet.eu/"),
207
+ TEST("http://hvo.wr.usgs.gov/cam3/"),
208
+ TEST("http://hvo.wr.usgs.gov/cams/HMcam/"),
209
+ TEST("http://hvo.wr.usgs.gov/kilauea/update/deformation.html"),
210
+ TEST("http://hvo.wr.usgs.gov/kilauea/update/images.html"),
211
+ TEST("http://hvo.wr.usgs.gov/kilauea/update/maps.html"),
212
+ TEST("http://hvo.wr.usgs.gov/volcanowatch/current_issue.html"),
213
+ TEST("http://neo.jpl.nasa.gov/risk/"),
214
+ TEST("http://norvig.com/21-days.html"),
215
+ TEST("http://primes.utm.edu/curios/home.php"),
216
+ TEST("http://slashdot.org/"),
217
+ TEST("http://tux.wr.usgs.gov/Maps/155.25-19.5.html"),
218
+ TEST("http://volcano.wr.usgs.gov/kilaueastatus.php"),
219
+ TEST("http://www.avo.alaska.edu/activity/Redoubt.php"),
220
+ TEST("http://www.dilbert.com/fast/"),
221
+ TEST("http://www.fourmilab.ch/gravitation/orbits/"),
222
+ TEST("http://www.fpoa.net/"),
223
+ TEST("http://www.ioccc.org/index.html"),
224
+ TEST("http://www.isthe.com/cgi-bin/number.cgi"),
225
+ TEST("http://www.isthe.com/chongo/bio.html"),
226
+ TEST("http://www.isthe.com/chongo/index.html"),
227
+ TEST("http://www.isthe.com/chongo/src/calc/lucas-calc"),
228
+ TEST("http://www.isthe.com/chongo/tech/astro/venus2004.html"),
229
+ TEST("http://www.isthe.com/chongo/tech/astro/vita.html"),
230
+ TEST("http://www.isthe.com/chongo/tech/comp/c/expert.html"),
231
+ TEST("http://www.isthe.com/chongo/tech/comp/calc/index.html"),
232
+ TEST("http://www.isthe.com/chongo/tech/comp/fnv/index.html"),
233
+ TEST("http://www.isthe.com/chongo/tech/math/number/howhigh.html"),
234
+ TEST("http://www.isthe.com/chongo/tech/math/number/number.html"),
235
+ TEST("http://www.isthe.com/chongo/tech/math/prime/mersenne.html"),
236
+ TEST("http://www.isthe.com/chongo/tech/math/prime/mersenne.html#largest"),
237
+ TEST("http://www.lavarnd.org/cgi-bin/corpspeak.cgi"),
238
+ TEST("http://www.lavarnd.org/cgi-bin/haiku.cgi"),
239
+ TEST("http://www.lavarnd.org/cgi-bin/rand-none.cgi"),
240
+ TEST("http://www.lavarnd.org/cgi-bin/randdist.cgi"),
241
+ TEST("http://www.lavarnd.org/index.html"),
242
+ TEST("http://www.lavarnd.org/what/nist-test.html"),
243
+ TEST("http://www.macosxhints.com/"),
244
+ TEST("http://www.mellis.com/"),
245
+ TEST("http://www.nature.nps.gov/air/webcams/parks/havoso2alert/havoalert.cfm"),
246
+ TEST("http://www.nature.nps.gov/air/webcams/parks/havoso2alert/timelines_24.cfm"),
247
+ TEST("http://www.paulnoll.com/"),
248
+ TEST("http://www.pepysdiary.com/"),
249
+ TEST("http://www.sciencenews.org/index/home/activity/view"),
250
+ TEST("http://www.skyandtelescope.com/"),
251
+ TEST("http://www.sput.nl/~rob/sirius.html"),
252
+ TEST("http://www.systemexperts.com/"),
253
+ TEST("http://www.tq-international.com/phpBB3/index.php"),
254
+ TEST("http://www.travelquesttours.com/index.htm"),
255
+ TEST("http://www.wunderground.com/global/stations/89606.html"),
256
+ TEST(R10("21701")),
257
+ TEST(R10("M21701")),
258
+ TEST(R10("2^21701-1")),
259
+ TEST(R10("\x54\xc5")),
260
+ TEST(R10("\xc5\x54")),
261
+ TEST(R10("23209")),
262
+ TEST(R10("M23209")),
263
+ TEST(R10("2^23209-1")),
264
+ TEST(R10("\x5a\xa9")),
265
+ TEST(R10("\xa9\x5a")),
266
+ TEST(R10("391581216093")),
267
+ TEST(R10("391581*2^216093-1")),
268
+ TEST(R10("\x05\xf9\x9d\x03\x4c\x81")),
269
+ TEST(R10("FEDCBA9876543210")),
270
+ TEST(R10("\xfe\xdc\xba\x98\x76\x54\x32\x10")),
271
+ TEST(R10("EFCDAB8967452301")),
272
+ TEST(R10("\xef\xcd\xab\x89\x67\x45\x23\x01")),
273
+ TEST(R10("0123456789ABCDEF")),
274
+ TEST(R10("\x01\x23\x45\x67\x89\xab\xcd\xef")),
275
+ TEST(R10("1032547698BADCFE")),
276
+ TEST(R10("\x10\x32\x54\x76\x98\xba\xdc\xfe")),
277
+ TEST(R500("\x00")),
278
+ TEST(R500("\x07")),
279
+ TEST(R500("~")),
280
+ TEST(R500("\x7f")),
281
+ {NULL, 0} /* MUST BE LAST */
282
+ };
283
+
284
+
285
+ /*
286
+ * insert the contents of vector.c below
287
+ *
288
+ * make vector.c
289
+ * :r vector.c
290
+ */
291
+ /* start of output generated by make vector.c */
292
+
293
+ /* FNV-0 32 bit test vectors */
294
+ struct fnv0_32_test_vector fnv0_32_vector[] = {
295
+ { &fnv_test_str[0], (Fnv32_t) 0x00000000UL },
296
+ { &fnv_test_str[1], (Fnv32_t) 0x00000061UL },
297
+ { &fnv_test_str[2], (Fnv32_t) 0x00000062UL },
298
+ { &fnv_test_str[3], (Fnv32_t) 0x00000063UL },
299
+ { &fnv_test_str[4], (Fnv32_t) 0x00000064UL },
300
+ { &fnv_test_str[5], (Fnv32_t) 0x00000065UL },
301
+ { &fnv_test_str[6], (Fnv32_t) 0x00000066UL },
302
+ { &fnv_test_str[7], (Fnv32_t) 0x6600a0fdUL },
303
+ { &fnv_test_str[8], (Fnv32_t) 0x8ffd6e28UL },
304
+ { &fnv_test_str[9], (Fnv32_t) 0xd3f4689aUL },
305
+ { &fnv_test_str[10], (Fnv32_t) 0x43c0aa0fUL },
306
+ { &fnv_test_str[11], (Fnv32_t) 0xb74bb5efUL },
307
+ { &fnv_test_str[12], (Fnv32_t) 0x00000000UL },
308
+ { &fnv_test_str[13], (Fnv32_t) 0x610098b3UL },
309
+ { &fnv_test_str[14], (Fnv32_t) 0x62009a46UL },
310
+ { &fnv_test_str[15], (Fnv32_t) 0x63009bd9UL },
311
+ { &fnv_test_str[16], (Fnv32_t) 0x64009d6cUL },
312
+ { &fnv_test_str[17], (Fnv32_t) 0x65009effUL },
313
+ { &fnv_test_str[18], (Fnv32_t) 0x6600a092UL },
314
+ { &fnv_test_str[19], (Fnv32_t) 0x8ffd6e47UL },
315
+ { &fnv_test_str[20], (Fnv32_t) 0xd3f468f8UL },
316
+ { &fnv_test_str[21], (Fnv32_t) 0x43c0aa6eUL },
317
+ { &fnv_test_str[22], (Fnv32_t) 0xb74bb59dUL },
318
+ { &fnv_test_str[23], (Fnv32_t) 0x7b2f673dUL },
319
+ { &fnv_test_str[24], (Fnv32_t) 0x63009bb1UL },
320
+ { &fnv_test_str[25], (Fnv32_t) 0x8af517ccUL },
321
+ { &fnv_test_str[26], (Fnv32_t) 0x8bd4764aUL },
322
+ { &fnv_test_str[27], (Fnv32_t) 0x69763619UL },
323
+ { &fnv_test_str[28], (Fnv32_t) 0x1e172934UL },
324
+ { &fnv_test_str[29], (Fnv32_t) 0x9275dcfcUL },
325
+ { &fnv_test_str[30], (Fnv32_t) 0x8b8ae0c3UL },
326
+ { &fnv_test_str[31], (Fnv32_t) 0x6e9fd298UL },
327
+ { &fnv_test_str[32], (Fnv32_t) 0xbd98853bUL },
328
+ { &fnv_test_str[33], (Fnv32_t) 0xb219bbc1UL },
329
+ { &fnv_test_str[34], (Fnv32_t) 0x1f8290bbUL },
330
+ { &fnv_test_str[35], (Fnv32_t) 0x5589d604UL },
331
+ { &fnv_test_str[36], (Fnv32_t) 0xabfbe83eUL },
332
+ { &fnv_test_str[37], (Fnv32_t) 0xfb8e99ffUL },
333
+ { &fnv_test_str[38], (Fnv32_t) 0x007c6c4cUL },
334
+ { &fnv_test_str[39], (Fnv32_t) 0x0fde7baeUL },
335
+ { &fnv_test_str[40], (Fnv32_t) 0x8af517a3UL },
336
+ { &fnv_test_str[41], (Fnv32_t) 0x8bd47624UL },
337
+ { &fnv_test_str[42], (Fnv32_t) 0x6976367eUL },
338
+ { &fnv_test_str[43], (Fnv32_t) 0x1e17295bUL },
339
+ { &fnv_test_str[44], (Fnv32_t) 0x9275dcdcUL },
340
+ { &fnv_test_str[45], (Fnv32_t) 0x8b8ae0b4UL },
341
+ { &fnv_test_str[46], (Fnv32_t) 0x6e9fd2f9UL },
342
+ { &fnv_test_str[47], (Fnv32_t) 0xbd988548UL },
343
+ { &fnv_test_str[48], (Fnv32_t) 0xb219bbe1UL },
344
+ { &fnv_test_str[49], (Fnv32_t) 0x1f8290d3UL },
345
+ { &fnv_test_str[50], (Fnv32_t) 0x5589d661UL },
346
+ { &fnv_test_str[51], (Fnv32_t) 0xabfbe84cUL },
347
+ { &fnv_test_str[52], (Fnv32_t) 0xfb8e999aUL },
348
+ { &fnv_test_str[53], (Fnv32_t) 0x007c6c6dUL },
349
+ { &fnv_test_str[54], (Fnv32_t) 0x0fde7ba4UL },
350
+ { &fnv_test_str[55], (Fnv32_t) 0xa93cb2eaUL },
351
+ { &fnv_test_str[56], (Fnv32_t) 0x63009bacUL },
352
+ { &fnv_test_str[57], (Fnv32_t) 0x85f50fb6UL },
353
+ { &fnv_test_str[58], (Fnv32_t) 0x96c7bbe6UL },
354
+ { &fnv_test_str[59], (Fnv32_t) 0x426ccb61UL },
355
+ { &fnv_test_str[60], (Fnv32_t) 0xf2442993UL },
356
+ { &fnv_test_str[61], (Fnv32_t) 0xf44d7208UL },
357
+ { &fnv_test_str[62], (Fnv32_t) 0x9dea82f6UL },
358
+ { &fnv_test_str[63], (Fnv32_t) 0x8e2c2926UL },
359
+ { &fnv_test_str[64], (Fnv32_t) 0xf584c6f2UL },
360
+ { &fnv_test_str[65], (Fnv32_t) 0x72052e81UL },
361
+ { &fnv_test_str[66], (Fnv32_t) 0xff28357bUL },
362
+ { &fnv_test_str[67], (Fnv32_t) 0x274c30c4UL },
363
+ { &fnv_test_str[68], (Fnv32_t) 0xa0f0c4f5UL },
364
+ { &fnv_test_str[69], (Fnv32_t) 0x50060da5UL },
365
+ { &fnv_test_str[70], (Fnv32_t) 0x85f50fc4UL },
366
+ { &fnv_test_str[71], (Fnv32_t) 0x96c7bb82UL },
367
+ { &fnv_test_str[72], (Fnv32_t) 0x426ccb12UL },
368
+ { &fnv_test_str[73], (Fnv32_t) 0xf24429b3UL },
369
+ { &fnv_test_str[74], (Fnv32_t) 0xf44d7269UL },
370
+ { &fnv_test_str[75], (Fnv32_t) 0x9dea8298UL },
371
+ { &fnv_test_str[76], (Fnv32_t) 0x8e2c2942UL },
372
+ { &fnv_test_str[77], (Fnv32_t) 0xf584c6d2UL },
373
+ { &fnv_test_str[78], (Fnv32_t) 0x72052ef6UL },
374
+ { &fnv_test_str[79], (Fnv32_t) 0xff283513UL },
375
+ { &fnv_test_str[80], (Fnv32_t) 0x274c30a1UL },
376
+ { &fnv_test_str[81], (Fnv32_t) 0xa0f0c48cUL },
377
+ { &fnv_test_str[82], (Fnv32_t) 0x50060dafUL },
378
+ { &fnv_test_str[83], (Fnv32_t) 0x9e877abfUL },
379
+ { &fnv_test_str[84], (Fnv32_t) 0x6800a3d1UL },
380
+ { &fnv_test_str[85], (Fnv32_t) 0x8a01e203UL },
381
+ { &fnv_test_str[86], (Fnv32_t) 0xec6d6be8UL },
382
+ { &fnv_test_str[87], (Fnv32_t) 0x1840de38UL },
383
+ { &fnv_test_str[88], (Fnv32_t) 0xa7cc97b4UL },
384
+ { &fnv_test_str[89], (Fnv32_t) 0x3ee6b3b4UL },
385
+ { &fnv_test_str[90], (Fnv32_t) 0xa7cc97b7UL },
386
+ { &fnv_test_str[91], (Fnv32_t) 0x7dcd6669UL },
387
+ { &fnv_test_str[92], (Fnv32_t) 0xa7cc97b6UL },
388
+ { &fnv_test_str[93], (Fnv32_t) 0xbcb4191eUL },
389
+ { &fnv_test_str[94], (Fnv32_t) 0xa7cc97b1UL },
390
+ { &fnv_test_str[95], (Fnv32_t) 0xfb9acdd3UL },
391
+ { &fnv_test_str[96], (Fnv32_t) 0x89380433UL },
392
+ { &fnv_test_str[97], (Fnv32_t) 0x8acd2855UL },
393
+ { &fnv_test_str[98], (Fnv32_t) 0x8938043dUL },
394
+ { &fnv_test_str[99], (Fnv32_t) 0xcaeed493UL },
395
+ { &fnv_test_str[100], (Fnv32_t) 0x89380423UL },
396
+ { &fnv_test_str[101], (Fnv32_t) 0x59382a25UL },
397
+ { &fnv_test_str[102], (Fnv32_t) 0x567f75d7UL },
398
+ { &fnv_test_str[103], (Fnv32_t) 0x01a68175UL },
399
+ { &fnv_test_str[104], (Fnv32_t) 0x567f75d4UL },
400
+ { &fnv_test_str[105], (Fnv32_t) 0xfea67cbcUL },
401
+ { &fnv_test_str[106], (Fnv32_t) 0x567f75d5UL },
402
+ { &fnv_test_str[107], (Fnv32_t) 0xffa67e4fUL },
403
+ { &fnv_test_str[108], (Fnv32_t) 0xd131b668UL },
404
+ { &fnv_test_str[109], (Fnv32_t) 0xb94225b8UL },
405
+ { &fnv_test_str[110], (Fnv32_t) 0xd231b7d7UL },
406
+ { &fnv_test_str[111], (Fnv32_t) 0xbb446775UL },
407
+ { &fnv_test_str[112], (Fnv32_t) 0xdf31cc6eUL },
408
+ { &fnv_test_str[113], (Fnv32_t) 0xc964d12aUL },
409
+ { &fnv_test_str[114], (Fnv32_t) 0x23af8f9fUL },
410
+ { &fnv_test_str[115], (Fnv32_t) 0xcc5f174dUL },
411
+ { &fnv_test_str[116], (Fnv32_t) 0x96b29b8cUL },
412
+ { &fnv_test_str[117], (Fnv32_t) 0xc72add64UL },
413
+ { &fnv_test_str[118], (Fnv32_t) 0x528fb7efUL },
414
+ { &fnv_test_str[119], (Fnv32_t) 0xe73e8d3dUL },
415
+ { &fnv_test_str[120], (Fnv32_t) 0x876386feUL },
416
+ { &fnv_test_str[121], (Fnv32_t) 0x811c9dc5UL },
417
+ { &fnv_test_str[122], (Fnv32_t) 0x050c5d1fUL },
418
+ { &fnv_test_str[123], (Fnv32_t) 0x14bf7238UL },
419
+ { &fnv_test_str[124], (Fnv32_t) 0xe160ce28UL },
420
+ { &fnv_test_str[125], (Fnv32_t) 0x89dc5a75UL },
421
+ { &fnv_test_str[126], (Fnv32_t) 0xd89b69a0UL },
422
+ { &fnv_test_str[127], (Fnv32_t) 0x94471a88UL },
423
+ { &fnv_test_str[128], (Fnv32_t) 0xe78db65fUL },
424
+ { &fnv_test_str[129], (Fnv32_t) 0x0c3009a2UL },
425
+ { &fnv_test_str[130], (Fnv32_t) 0x122dff03UL },
426
+ { &fnv_test_str[131], (Fnv32_t) 0xb4cd8875UL },
427
+ { &fnv_test_str[132], (Fnv32_t) 0xf4dba725UL },
428
+ { &fnv_test_str[133], (Fnv32_t) 0x41a16560UL },
429
+ { &fnv_test_str[134], (Fnv32_t) 0x9c0f941fUL },
430
+ { &fnv_test_str[135], (Fnv32_t) 0x451a5348UL },
431
+ { &fnv_test_str[136], (Fnv32_t) 0x3f1d1d89UL },
432
+ { &fnv_test_str[137], (Fnv32_t) 0x1b91b57aUL },
433
+ { &fnv_test_str[138], (Fnv32_t) 0x3e99b577UL },
434
+ { &fnv_test_str[139], (Fnv32_t) 0x4c9de07aUL },
435
+ { &fnv_test_str[140], (Fnv32_t) 0x1ddf7572UL },
436
+ { &fnv_test_str[141], (Fnv32_t) 0x64e81976UL },
437
+ { &fnv_test_str[142], (Fnv32_t) 0x1106a888UL },
438
+ { &fnv_test_str[143], (Fnv32_t) 0xa498d8e5UL },
439
+ { &fnv_test_str[144], (Fnv32_t) 0x3c03d2e3UL },
440
+ { &fnv_test_str[145], (Fnv32_t) 0x26568b28UL },
441
+ { &fnv_test_str[146], (Fnv32_t) 0x70d7fb42UL },
442
+ { &fnv_test_str[147], (Fnv32_t) 0xd3ae1d22UL },
443
+ { &fnv_test_str[148], (Fnv32_t) 0xac8ea5f4UL },
444
+ { &fnv_test_str[149], (Fnv32_t) 0x4d0abd60UL },
445
+ { &fnv_test_str[150], (Fnv32_t) 0x48f5e086UL },
446
+ { &fnv_test_str[151], (Fnv32_t) 0xa8f6241bUL },
447
+ { &fnv_test_str[152], (Fnv32_t) 0x572f864fUL },
448
+ { &fnv_test_str[153], (Fnv32_t) 0xa5340803UL },
449
+ { &fnv_test_str[154], (Fnv32_t) 0x22881aa8UL },
450
+ { &fnv_test_str[155], (Fnv32_t) 0xc2e2f5a2UL },
451
+ { &fnv_test_str[156], (Fnv32_t) 0xebf5aec7UL },
452
+ { &fnv_test_str[157], (Fnv32_t) 0x3cdbfb85UL },
453
+ { &fnv_test_str[158], (Fnv32_t) 0xbb859704UL },
454
+ { &fnv_test_str[159], (Fnv32_t) 0xc956fe11UL },
455
+ { &fnv_test_str[160], (Fnv32_t) 0x8f11a7c9UL },
456
+ { &fnv_test_str[161], (Fnv32_t) 0x36c48ecfUL },
457
+ { &fnv_test_str[162], (Fnv32_t) 0x24bfa27eUL },
458
+ { &fnv_test_str[163], (Fnv32_t) 0xf2596ad1UL },
459
+ { &fnv_test_str[164], (Fnv32_t) 0xf14a9b45UL },
460
+ { &fnv_test_str[165], (Fnv32_t) 0x7d45835aUL },
461
+ { &fnv_test_str[166], (Fnv32_t) 0x6e49334dUL },
462
+ { &fnv_test_str[167], (Fnv32_t) 0x71767337UL },
463
+ { &fnv_test_str[168], (Fnv32_t) 0x858a1a8aUL },
464
+ { &fnv_test_str[169], (Fnv32_t) 0x16e75ac2UL },
465
+ { &fnv_test_str[170], (Fnv32_t) 0x409f99dfUL },
466
+ { &fnv_test_str[171], (Fnv32_t) 0x6d6652ddUL },
467
+ { &fnv_test_str[172], (Fnv32_t) 0x2761a9ffUL },
468
+ { &fnv_test_str[173], (Fnv32_t) 0x41f0d616UL },
469
+ { &fnv_test_str[174], (Fnv32_t) 0x0e2d0d0fUL },
470
+ { &fnv_test_str[175], (Fnv32_t) 0x06adc8fdUL },
471
+ { &fnv_test_str[176], (Fnv32_t) 0x60e0d4b9UL },
472
+ { &fnv_test_str[177], (Fnv32_t) 0x5ddc79d3UL },
473
+ { &fnv_test_str[178], (Fnv32_t) 0x1e6d0b46UL },
474
+ { &fnv_test_str[179], (Fnv32_t) 0x1d1514d8UL },
475
+ { &fnv_test_str[180], (Fnv32_t) 0xb1903a4eUL },
476
+ { &fnv_test_str[181], (Fnv32_t) 0x8200c318UL },
477
+ { &fnv_test_str[182], (Fnv32_t) 0x15e22888UL },
478
+ { &fnv_test_str[183], (Fnv32_t) 0x57591760UL },
479
+ { &fnv_test_str[184], (Fnv32_t) 0x02462efcUL },
480
+ { &fnv_test_str[185], (Fnv32_t) 0x7651ec44UL },
481
+ { &fnv_test_str[186], (Fnv32_t) 0x7c24e9d4UL },
482
+ { &fnv_test_str[187], (Fnv32_t) 0x1952a034UL },
483
+ { &fnv_test_str[188], (Fnv32_t) 0xd4c46864UL },
484
+ { &fnv_test_str[189], (Fnv32_t) 0xcb57cde0UL },
485
+ { &fnv_test_str[190], (Fnv32_t) 0x71136a70UL },
486
+ { &fnv_test_str[191], (Fnv32_t) 0x0618fb40UL },
487
+ { &fnv_test_str[192], (Fnv32_t) 0x69a24fc0UL },
488
+ { &fnv_test_str[193], (Fnv32_t) 0x6a9be510UL },
489
+ { &fnv_test_str[194], (Fnv32_t) 0xe0477040UL },
490
+ { &fnv_test_str[195], (Fnv32_t) 0x85aa94b0UL },
491
+ { &fnv_test_str[196], (Fnv32_t) 0xc6d76240UL },
492
+ { &fnv_test_str[197], (Fnv32_t) 0xa9f09e40UL },
493
+ { &fnv_test_str[198], (Fnv32_t) 0xa0291540UL },
494
+ { &fnv_test_str[199], (Fnv32_t) 0x00000000UL },
495
+ { &fnv_test_str[200], (Fnv32_t) 0x2e672aa4UL },
496
+ { &fnv_test_str[201], (Fnv32_t) 0x84b1aa48UL },
497
+ { &fnv_test_str[202], (Fnv32_t) 0xfc24ba24UL },
498
+ { NULL, 0 }
499
+ };
500
+
501
+ /* FNV-1 32 bit test vectors */
502
+ struct fnv1_32_test_vector fnv1_32_vector[] = {
503
+ { &fnv_test_str[0], (Fnv32_t) 0x811c9dc5UL },
504
+ { &fnv_test_str[1], (Fnv32_t) 0x050c5d7eUL },
505
+ { &fnv_test_str[2], (Fnv32_t) 0x050c5d7dUL },
506
+ { &fnv_test_str[3], (Fnv32_t) 0x050c5d7cUL },
507
+ { &fnv_test_str[4], (Fnv32_t) 0x050c5d7bUL },
508
+ { &fnv_test_str[5], (Fnv32_t) 0x050c5d7aUL },
509
+ { &fnv_test_str[6], (Fnv32_t) 0x050c5d79UL },
510
+ { &fnv_test_str[7], (Fnv32_t) 0x6b772514UL },
511
+ { &fnv_test_str[8], (Fnv32_t) 0x408f5e13UL },
512
+ { &fnv_test_str[9], (Fnv32_t) 0xb4b1178bUL },
513
+ { &fnv_test_str[10], (Fnv32_t) 0xfdc80fb0UL },
514
+ { &fnv_test_str[11], (Fnv32_t) 0x31f0b262UL },
515
+ { &fnv_test_str[12], (Fnv32_t) 0x050c5d1fUL },
516
+ { &fnv_test_str[13], (Fnv32_t) 0x70772d5aUL },
517
+ { &fnv_test_str[14], (Fnv32_t) 0x6f772bc7UL },
518
+ { &fnv_test_str[15], (Fnv32_t) 0x6e772a34UL },
519
+ { &fnv_test_str[16], (Fnv32_t) 0x6d7728a1UL },
520
+ { &fnv_test_str[17], (Fnv32_t) 0x6c77270eUL },
521
+ { &fnv_test_str[18], (Fnv32_t) 0x6b77257bUL },
522
+ { &fnv_test_str[19], (Fnv32_t) 0x408f5e7cUL },
523
+ { &fnv_test_str[20], (Fnv32_t) 0xb4b117e9UL },
524
+ { &fnv_test_str[21], (Fnv32_t) 0xfdc80fd1UL },
525
+ { &fnv_test_str[22], (Fnv32_t) 0x31f0b210UL },
526
+ { &fnv_test_str[23], (Fnv32_t) 0xffe8d046UL },
527
+ { &fnv_test_str[24], (Fnv32_t) 0x6e772a5cUL },
528
+ { &fnv_test_str[25], (Fnv32_t) 0x4197aebbUL },
529
+ { &fnv_test_str[26], (Fnv32_t) 0xfcc8100fUL },
530
+ { &fnv_test_str[27], (Fnv32_t) 0xfdf147faUL },
531
+ { &fnv_test_str[28], (Fnv32_t) 0xbcd44ee1UL },
532
+ { &fnv_test_str[29], (Fnv32_t) 0x23382c13UL },
533
+ { &fnv_test_str[30], (Fnv32_t) 0x846d619eUL },
534
+ { &fnv_test_str[31], (Fnv32_t) 0x1630abdbUL },
535
+ { &fnv_test_str[32], (Fnv32_t) 0xc99e89b2UL },
536
+ { &fnv_test_str[33], (Fnv32_t) 0x1692c316UL },
537
+ { &fnv_test_str[34], (Fnv32_t) 0x9f091bcaUL },
538
+ { &fnv_test_str[35], (Fnv32_t) 0x2556be9bUL },
539
+ { &fnv_test_str[36], (Fnv32_t) 0x628e0e73UL },
540
+ { &fnv_test_str[37], (Fnv32_t) 0x98a0bf6cUL },
541
+ { &fnv_test_str[38], (Fnv32_t) 0xb10d5725UL },
542
+ { &fnv_test_str[39], (Fnv32_t) 0xdd002f35UL },
543
+ { &fnv_test_str[40], (Fnv32_t) 0x4197aed4UL },
544
+ { &fnv_test_str[41], (Fnv32_t) 0xfcc81061UL },
545
+ { &fnv_test_str[42], (Fnv32_t) 0xfdf1479dUL },
546
+ { &fnv_test_str[43], (Fnv32_t) 0xbcd44e8eUL },
547
+ { &fnv_test_str[44], (Fnv32_t) 0x23382c33UL },
548
+ { &fnv_test_str[45], (Fnv32_t) 0x846d61e9UL },
549
+ { &fnv_test_str[46], (Fnv32_t) 0x1630abbaUL },
550
+ { &fnv_test_str[47], (Fnv32_t) 0xc99e89c1UL },
551
+ { &fnv_test_str[48], (Fnv32_t) 0x1692c336UL },
552
+ { &fnv_test_str[49], (Fnv32_t) 0x9f091ba2UL },
553
+ { &fnv_test_str[50], (Fnv32_t) 0x2556befeUL },
554
+ { &fnv_test_str[51], (Fnv32_t) 0x628e0e01UL },
555
+ { &fnv_test_str[52], (Fnv32_t) 0x98a0bf09UL },
556
+ { &fnv_test_str[53], (Fnv32_t) 0xb10d5704UL },
557
+ { &fnv_test_str[54], (Fnv32_t) 0xdd002f3fUL },
558
+ { &fnv_test_str[55], (Fnv32_t) 0x1c4a506fUL },
559
+ { &fnv_test_str[56], (Fnv32_t) 0x6e772a41UL },
560
+ { &fnv_test_str[57], (Fnv32_t) 0x26978421UL },
561
+ { &fnv_test_str[58], (Fnv32_t) 0xe184ff97UL },
562
+ { &fnv_test_str[59], (Fnv32_t) 0x9b5e5ac6UL },
563
+ { &fnv_test_str[60], (Fnv32_t) 0x5b88e592UL },
564
+ { &fnv_test_str[61], (Fnv32_t) 0xaa8164b7UL },
565
+ { &fnv_test_str[62], (Fnv32_t) 0x20b18c7bUL },
566
+ { &fnv_test_str[63], (Fnv32_t) 0xf28025c5UL },
567
+ { &fnv_test_str[64], (Fnv32_t) 0x84bb753fUL },
568
+ { &fnv_test_str[65], (Fnv32_t) 0x3219925aUL },
569
+ { &fnv_test_str[66], (Fnv32_t) 0x384163c6UL },
570
+ { &fnv_test_str[67], (Fnv32_t) 0x54f010d7UL },
571
+ { &fnv_test_str[68], (Fnv32_t) 0x8cea820cUL },
572
+ { &fnv_test_str[69], (Fnv32_t) 0xe12ab8eeUL },
573
+ { &fnv_test_str[70], (Fnv32_t) 0x26978453UL },
574
+ { &fnv_test_str[71], (Fnv32_t) 0xe184fff3UL },
575
+ { &fnv_test_str[72], (Fnv32_t) 0x9b5e5ab5UL },
576
+ { &fnv_test_str[73], (Fnv32_t) 0x5b88e5b2UL },
577
+ { &fnv_test_str[74], (Fnv32_t) 0xaa8164d6UL },
578
+ { &fnv_test_str[75], (Fnv32_t) 0x20b18c15UL },
579
+ { &fnv_test_str[76], (Fnv32_t) 0xf28025a1UL },
580
+ { &fnv_test_str[77], (Fnv32_t) 0x84bb751fUL },
581
+ { &fnv_test_str[78], (Fnv32_t) 0x3219922dUL },
582
+ { &fnv_test_str[79], (Fnv32_t) 0x384163aeUL },
583
+ { &fnv_test_str[80], (Fnv32_t) 0x54f010b2UL },
584
+ { &fnv_test_str[81], (Fnv32_t) 0x8cea8275UL },
585
+ { &fnv_test_str[82], (Fnv32_t) 0xe12ab8e4UL },
586
+ { &fnv_test_str[83], (Fnv32_t) 0x64411eaaUL },
587
+ { &fnv_test_str[84], (Fnv32_t) 0x6977223cUL },
588
+ { &fnv_test_str[85], (Fnv32_t) 0x428ae474UL },
589
+ { &fnv_test_str[86], (Fnv32_t) 0xb6fa7167UL },
590
+ { &fnv_test_str[87], (Fnv32_t) 0x73408525UL },
591
+ { &fnv_test_str[88], (Fnv32_t) 0xb78320a1UL },
592
+ { &fnv_test_str[89], (Fnv32_t) 0x0caf4135UL },
593
+ { &fnv_test_str[90], (Fnv32_t) 0xb78320a2UL },
594
+ { &fnv_test_str[91], (Fnv32_t) 0xcdc88e80UL },
595
+ { &fnv_test_str[92], (Fnv32_t) 0xb78320a3UL },
596
+ { &fnv_test_str[93], (Fnv32_t) 0x8ee1dbcbUL },
597
+ { &fnv_test_str[94], (Fnv32_t) 0xb78320a4UL },
598
+ { &fnv_test_str[95], (Fnv32_t) 0x4ffb2716UL },
599
+ { &fnv_test_str[96], (Fnv32_t) 0x860632aaUL },
600
+ { &fnv_test_str[97], (Fnv32_t) 0xcc2c5c64UL },
601
+ { &fnv_test_str[98], (Fnv32_t) 0x860632a4UL },
602
+ { &fnv_test_str[99], (Fnv32_t) 0x2a7ec4a6UL },
603
+ { &fnv_test_str[100], (Fnv32_t) 0x860632baUL },
604
+ { &fnv_test_str[101], (Fnv32_t) 0xfefe8e14UL },
605
+ { &fnv_test_str[102], (Fnv32_t) 0x0a3cffd8UL },
606
+ { &fnv_test_str[103], (Fnv32_t) 0xf606c108UL },
607
+ { &fnv_test_str[104], (Fnv32_t) 0x0a3cffdbUL },
608
+ { &fnv_test_str[105], (Fnv32_t) 0xf906c5c1UL },
609
+ { &fnv_test_str[106], (Fnv32_t) 0x0a3cffdaUL },
610
+ { &fnv_test_str[107], (Fnv32_t) 0xf806c42eUL },
611
+ { &fnv_test_str[108], (Fnv32_t) 0xc07167d7UL },
612
+ { &fnv_test_str[109], (Fnv32_t) 0xc9867775UL },
613
+ { &fnv_test_str[110], (Fnv32_t) 0xbf716668UL },
614
+ { &fnv_test_str[111], (Fnv32_t) 0xc78435b8UL },
615
+ { &fnv_test_str[112], (Fnv32_t) 0xc6717155UL },
616
+ { &fnv_test_str[113], (Fnv32_t) 0xb99568cfUL },
617
+ { &fnv_test_str[114], (Fnv32_t) 0x7662e0d6UL },
618
+ { &fnv_test_str[115], (Fnv32_t) 0x33a7f0e2UL },
619
+ { &fnv_test_str[116], (Fnv32_t) 0xc2732f95UL },
620
+ { &fnv_test_str[117], (Fnv32_t) 0xb053e78fUL },
621
+ { &fnv_test_str[118], (Fnv32_t) 0x3a19c02aUL },
622
+ { &fnv_test_str[119], (Fnv32_t) 0xa089821eUL },
623
+ { &fnv_test_str[120], (Fnv32_t) 0x31ae8f83UL },
624
+ { &fnv_test_str[121], (Fnv32_t) 0x995fa9c4UL },
625
+ { &fnv_test_str[122], (Fnv32_t) 0x35983f8cUL },
626
+ { &fnv_test_str[123], (Fnv32_t) 0x5036a251UL },
627
+ { &fnv_test_str[124], (Fnv32_t) 0x97018583UL },
628
+ { &fnv_test_str[125], (Fnv32_t) 0xb4448d60UL },
629
+ { &fnv_test_str[126], (Fnv32_t) 0x025dfe59UL },
630
+ { &fnv_test_str[127], (Fnv32_t) 0xc5eab3afUL },
631
+ { &fnv_test_str[128], (Fnv32_t) 0x7d21ba1eUL },
632
+ { &fnv_test_str[129], (Fnv32_t) 0x7704cddbUL },
633
+ { &fnv_test_str[130], (Fnv32_t) 0xd0071bfeUL },
634
+ { &fnv_test_str[131], (Fnv32_t) 0x0ff3774cUL },
635
+ { &fnv_test_str[132], (Fnv32_t) 0xb0fea0eaUL },
636
+ { &fnv_test_str[133], (Fnv32_t) 0x58177303UL },
637
+ { &fnv_test_str[134], (Fnv32_t) 0x4f599cdaUL },
638
+ { &fnv_test_str[135], (Fnv32_t) 0x3e590a47UL },
639
+ { &fnv_test_str[136], (Fnv32_t) 0x965595f8UL },
640
+ { &fnv_test_str[137], (Fnv32_t) 0xc37f178dUL },
641
+ { &fnv_test_str[138], (Fnv32_t) 0x9711dd26UL },
642
+ { &fnv_test_str[139], (Fnv32_t) 0x23c99b7fUL },
643
+ { &fnv_test_str[140], (Fnv32_t) 0x6e568b17UL },
644
+ { &fnv_test_str[141], (Fnv32_t) 0x43f0245bUL },
645
+ { &fnv_test_str[142], (Fnv32_t) 0xbcb7a001UL },
646
+ { &fnv_test_str[143], (Fnv32_t) 0x12e6dffeUL },
647
+ { &fnv_test_str[144], (Fnv32_t) 0x0792f2d6UL },
648
+ { &fnv_test_str[145], (Fnv32_t) 0xb966936bUL },
649
+ { &fnv_test_str[146], (Fnv32_t) 0x46439ac5UL },
650
+ { &fnv_test_str[147], (Fnv32_t) 0x728d49afUL },
651
+ { &fnv_test_str[148], (Fnv32_t) 0xd33745c9UL },
652
+ { &fnv_test_str[149], (Fnv32_t) 0xbc382a57UL },
653
+ { &fnv_test_str[150], (Fnv32_t) 0x4bda1d31UL },
654
+ { &fnv_test_str[151], (Fnv32_t) 0xce35ccaeUL },
655
+ { &fnv_test_str[152], (Fnv32_t) 0x3b6eed94UL },
656
+ { &fnv_test_str[153], (Fnv32_t) 0x445c9c58UL },
657
+ { &fnv_test_str[154], (Fnv32_t) 0x3db8bf9dUL },
658
+ { &fnv_test_str[155], (Fnv32_t) 0x2dee116dUL },
659
+ { &fnv_test_str[156], (Fnv32_t) 0xc18738daUL },
660
+ { &fnv_test_str[157], (Fnv32_t) 0x5b156176UL },
661
+ { &fnv_test_str[158], (Fnv32_t) 0x2aa7d593UL },
662
+ { &fnv_test_str[159], (Fnv32_t) 0xb2409658UL },
663
+ { &fnv_test_str[160], (Fnv32_t) 0xe1489528UL },
664
+ { &fnv_test_str[161], (Fnv32_t) 0xfe1ee07eUL },
665
+ { &fnv_test_str[162], (Fnv32_t) 0xe8842315UL },
666
+ { &fnv_test_str[163], (Fnv32_t) 0x3a6a63a2UL },
667
+ { &fnv_test_str[164], (Fnv32_t) 0x06d2c18cUL },
668
+ { &fnv_test_str[165], (Fnv32_t) 0xf8ef7225UL },
669
+ { &fnv_test_str[166], (Fnv32_t) 0x843d3300UL },
670
+ { &fnv_test_str[167], (Fnv32_t) 0xbb24f7aeUL },
671
+ { &fnv_test_str[168], (Fnv32_t) 0x878c0ec9UL },
672
+ { &fnv_test_str[169], (Fnv32_t) 0xb557810fUL },
673
+ { &fnv_test_str[170], (Fnv32_t) 0x57423246UL },
674
+ { &fnv_test_str[171], (Fnv32_t) 0x87f7505eUL },
675
+ { &fnv_test_str[172], (Fnv32_t) 0xbb809f20UL },
676
+ { &fnv_test_str[173], (Fnv32_t) 0x8932abb5UL },
677
+ { &fnv_test_str[174], (Fnv32_t) 0x0a9b3aa0UL },
678
+ { &fnv_test_str[175], (Fnv32_t) 0xb8682a24UL },
679
+ { &fnv_test_str[176], (Fnv32_t) 0xa7ac1c56UL },
680
+ { &fnv_test_str[177], (Fnv32_t) 0x11409252UL },
681
+ { &fnv_test_str[178], (Fnv32_t) 0xa987f517UL },
682
+ { &fnv_test_str[179], (Fnv32_t) 0xf309e7edUL },
683
+ { &fnv_test_str[180], (Fnv32_t) 0xc9e8f417UL },
684
+ { &fnv_test_str[181], (Fnv32_t) 0x7f447bddUL },
685
+ { &fnv_test_str[182], (Fnv32_t) 0xb929adc5UL },
686
+ { &fnv_test_str[183], (Fnv32_t) 0x57022879UL },
687
+ { &fnv_test_str[184], (Fnv32_t) 0xdcfd2c49UL },
688
+ { &fnv_test_str[185], (Fnv32_t) 0x6edafff5UL },
689
+ { &fnv_test_str[186], (Fnv32_t) 0xf04fb1f1UL },
690
+ { &fnv_test_str[187], (Fnv32_t) 0xfb7de8b9UL },
691
+ { &fnv_test_str[188], (Fnv32_t) 0xc5f1d7e9UL },
692
+ { &fnv_test_str[189], (Fnv32_t) 0x32c1f439UL },
693
+ { &fnv_test_str[190], (Fnv32_t) 0x7fd3eb7dUL },
694
+ { &fnv_test_str[191], (Fnv32_t) 0x81597da5UL },
695
+ { &fnv_test_str[192], (Fnv32_t) 0x05eb7a25UL },
696
+ { &fnv_test_str[193], (Fnv32_t) 0x9c0fa1b5UL },
697
+ { &fnv_test_str[194], (Fnv32_t) 0x53ccb1c5UL },
698
+ { &fnv_test_str[195], (Fnv32_t) 0xfabece15UL },
699
+ { &fnv_test_str[196], (Fnv32_t) 0x4ad745a5UL },
700
+ { &fnv_test_str[197], (Fnv32_t) 0xe5bdc495UL },
701
+ { &fnv_test_str[198], (Fnv32_t) 0x23b3c0a5UL },
702
+ { &fnv_test_str[199], (Fnv32_t) 0xfa823dd5UL },
703
+ { &fnv_test_str[200], (Fnv32_t) 0x0c6c58b9UL },
704
+ { &fnv_test_str[201], (Fnv32_t) 0xe2dbccd5UL },
705
+ { &fnv_test_str[202], (Fnv32_t) 0xdb7f50f9UL },
706
+ { NULL, 0 }
707
+ };
708
+
709
+ /* FNV-1a 32 bit test vectors */
710
+ struct fnv1a_32_test_vector fnv1a_32_vector[] = {
711
+ { &fnv_test_str[0], (Fnv32_t) 0x811c9dc5UL },
712
+ { &fnv_test_str[1], (Fnv32_t) 0xe40c292cUL },
713
+ { &fnv_test_str[2], (Fnv32_t) 0xe70c2de5UL },
714
+ { &fnv_test_str[3], (Fnv32_t) 0xe60c2c52UL },
715
+ { &fnv_test_str[4], (Fnv32_t) 0xe10c2473UL },
716
+ { &fnv_test_str[5], (Fnv32_t) 0xe00c22e0UL },
717
+ { &fnv_test_str[6], (Fnv32_t) 0xe30c2799UL },
718
+ { &fnv_test_str[7], (Fnv32_t) 0x6222e842UL },
719
+ { &fnv_test_str[8], (Fnv32_t) 0xa9f37ed7UL },
720
+ { &fnv_test_str[9], (Fnv32_t) 0x3f5076efUL },
721
+ { &fnv_test_str[10], (Fnv32_t) 0x39aaa18aUL },
722
+ { &fnv_test_str[11], (Fnv32_t) 0xbf9cf968UL },
723
+ { &fnv_test_str[12], (Fnv32_t) 0x050c5d1fUL },
724
+ { &fnv_test_str[13], (Fnv32_t) 0x2b24d044UL },
725
+ { &fnv_test_str[14], (Fnv32_t) 0x9d2c3f7fUL },
726
+ { &fnv_test_str[15], (Fnv32_t) 0x7729c516UL },
727
+ { &fnv_test_str[16], (Fnv32_t) 0xb91d6109UL },
728
+ { &fnv_test_str[17], (Fnv32_t) 0x931ae6a0UL },
729
+ { &fnv_test_str[18], (Fnv32_t) 0x052255dbUL },
730
+ { &fnv_test_str[19], (Fnv32_t) 0xbef39fe6UL },
731
+ { &fnv_test_str[20], (Fnv32_t) 0x6150ac75UL },
732
+ { &fnv_test_str[21], (Fnv32_t) 0x9aab3a3dUL },
733
+ { &fnv_test_str[22], (Fnv32_t) 0x519c4c3eUL },
734
+ { &fnv_test_str[23], (Fnv32_t) 0x0c1c9eb8UL },
735
+ { &fnv_test_str[24], (Fnv32_t) 0x5f299f4eUL },
736
+ { &fnv_test_str[25], (Fnv32_t) 0xef8580f3UL },
737
+ { &fnv_test_str[26], (Fnv32_t) 0xac297727UL },
738
+ { &fnv_test_str[27], (Fnv32_t) 0x4546b9c0UL },
739
+ { &fnv_test_str[28], (Fnv32_t) 0xbd564e7dUL },
740
+ { &fnv_test_str[29], (Fnv32_t) 0x6bdd5c67UL },
741
+ { &fnv_test_str[30], (Fnv32_t) 0xdd77ed30UL },
742
+ { &fnv_test_str[31], (Fnv32_t) 0xf4ca9683UL },
743
+ { &fnv_test_str[32], (Fnv32_t) 0x4aeb9bd0UL },
744
+ { &fnv_test_str[33], (Fnv32_t) 0xe0e67ad0UL },
745
+ { &fnv_test_str[34], (Fnv32_t) 0xc2d32fa8UL },
746
+ { &fnv_test_str[35], (Fnv32_t) 0x7f743fb7UL },
747
+ { &fnv_test_str[36], (Fnv32_t) 0x6900631fUL },
748
+ { &fnv_test_str[37], (Fnv32_t) 0xc59c990eUL },
749
+ { &fnv_test_str[38], (Fnv32_t) 0x448524fdUL },
750
+ { &fnv_test_str[39], (Fnv32_t) 0xd49930d5UL },
751
+ { &fnv_test_str[40], (Fnv32_t) 0x1c85c7caUL },
752
+ { &fnv_test_str[41], (Fnv32_t) 0x0229fe89UL },
753
+ { &fnv_test_str[42], (Fnv32_t) 0x2c469265UL },
754
+ { &fnv_test_str[43], (Fnv32_t) 0xce566940UL },
755
+ { &fnv_test_str[44], (Fnv32_t) 0x8bdd8ec7UL },
756
+ { &fnv_test_str[45], (Fnv32_t) 0x34787625UL },
757
+ { &fnv_test_str[46], (Fnv32_t) 0xd3ca6290UL },
758
+ { &fnv_test_str[47], (Fnv32_t) 0xddeaf039UL },
759
+ { &fnv_test_str[48], (Fnv32_t) 0xc0e64870UL },
760
+ { &fnv_test_str[49], (Fnv32_t) 0xdad35570UL },
761
+ { &fnv_test_str[50], (Fnv32_t) 0x5a740578UL },
762
+ { &fnv_test_str[51], (Fnv32_t) 0x5b004d15UL },
763
+ { &fnv_test_str[52], (Fnv32_t) 0x6a9c09cdUL },
764
+ { &fnv_test_str[53], (Fnv32_t) 0x2384f10aUL },
765
+ { &fnv_test_str[54], (Fnv32_t) 0xda993a47UL },
766
+ { &fnv_test_str[55], (Fnv32_t) 0x8227df4fUL },
767
+ { &fnv_test_str[56], (Fnv32_t) 0x4c298165UL },
768
+ { &fnv_test_str[57], (Fnv32_t) 0xfc563735UL },
769
+ { &fnv_test_str[58], (Fnv32_t) 0x8cb91483UL },
770
+ { &fnv_test_str[59], (Fnv32_t) 0x775bf5d0UL },
771
+ { &fnv_test_str[60], (Fnv32_t) 0xd5c428d0UL },
772
+ { &fnv_test_str[61], (Fnv32_t) 0x34cc0ea3UL },
773
+ { &fnv_test_str[62], (Fnv32_t) 0xea3b4cb7UL },
774
+ { &fnv_test_str[63], (Fnv32_t) 0x8e59f029UL },
775
+ { &fnv_test_str[64], (Fnv32_t) 0x2094de2bUL },
776
+ { &fnv_test_str[65], (Fnv32_t) 0xa65a0ad4UL },
777
+ { &fnv_test_str[66], (Fnv32_t) 0x9bbee5f4UL },
778
+ { &fnv_test_str[67], (Fnv32_t) 0xbe836343UL },
779
+ { &fnv_test_str[68], (Fnv32_t) 0x22d5344eUL },
780
+ { &fnv_test_str[69], (Fnv32_t) 0x19a1470cUL },
781
+ { &fnv_test_str[70], (Fnv32_t) 0x4a56b1ffUL },
782
+ { &fnv_test_str[71], (Fnv32_t) 0x70b8e86fUL },
783
+ { &fnv_test_str[72], (Fnv32_t) 0x0a5b4a39UL },
784
+ { &fnv_test_str[73], (Fnv32_t) 0xb5c3f670UL },
785
+ { &fnv_test_str[74], (Fnv32_t) 0x53cc3f70UL },
786
+ { &fnv_test_str[75], (Fnv32_t) 0xc03b0a99UL },
787
+ { &fnv_test_str[76], (Fnv32_t) 0x7259c415UL },
788
+ { &fnv_test_str[77], (Fnv32_t) 0x4095108bUL },
789
+ { &fnv_test_str[78], (Fnv32_t) 0x7559bdb1UL },
790
+ { &fnv_test_str[79], (Fnv32_t) 0xb3bf0bbcUL },
791
+ { &fnv_test_str[80], (Fnv32_t) 0x2183ff1cUL },
792
+ { &fnv_test_str[81], (Fnv32_t) 0x2bd54279UL },
793
+ { &fnv_test_str[82], (Fnv32_t) 0x23a156caUL },
794
+ { &fnv_test_str[83], (Fnv32_t) 0x64e2d7e4UL },
795
+ { &fnv_test_str[84], (Fnv32_t) 0x683af69aUL },
796
+ { &fnv_test_str[85], (Fnv32_t) 0xaed2346eUL },
797
+ { &fnv_test_str[86], (Fnv32_t) 0x4f9f2cabUL },
798
+ { &fnv_test_str[87], (Fnv32_t) 0x02935131UL },
799
+ { &fnv_test_str[88], (Fnv32_t) 0xc48fb86dUL },
800
+ { &fnv_test_str[89], (Fnv32_t) 0x2269f369UL },
801
+ { &fnv_test_str[90], (Fnv32_t) 0xc18fb3b4UL },
802
+ { &fnv_test_str[91], (Fnv32_t) 0x50ef1236UL },
803
+ { &fnv_test_str[92], (Fnv32_t) 0xc28fb547UL },
804
+ { &fnv_test_str[93], (Fnv32_t) 0x96c3bf47UL },
805
+ { &fnv_test_str[94], (Fnv32_t) 0xbf8fb08eUL },
806
+ { &fnv_test_str[95], (Fnv32_t) 0xf3e4d49cUL },
807
+ { &fnv_test_str[96], (Fnv32_t) 0x32179058UL },
808
+ { &fnv_test_str[97], (Fnv32_t) 0x280bfee6UL },
809
+ { &fnv_test_str[98], (Fnv32_t) 0x30178d32UL },
810
+ { &fnv_test_str[99], (Fnv32_t) 0x21addaf8UL },
811
+ { &fnv_test_str[100], (Fnv32_t) 0x4217a988UL },
812
+ { &fnv_test_str[101], (Fnv32_t) 0x772633d6UL },
813
+ { &fnv_test_str[102], (Fnv32_t) 0x08a3d11eUL },
814
+ { &fnv_test_str[103], (Fnv32_t) 0xb7e2323aUL },
815
+ { &fnv_test_str[104], (Fnv32_t) 0x07a3cf8bUL },
816
+ { &fnv_test_str[105], (Fnv32_t) 0x91dfb7d1UL },
817
+ { &fnv_test_str[106], (Fnv32_t) 0x06a3cdf8UL },
818
+ { &fnv_test_str[107], (Fnv32_t) 0x6bdd3d68UL },
819
+ { &fnv_test_str[108], (Fnv32_t) 0x1d5636a7UL },
820
+ { &fnv_test_str[109], (Fnv32_t) 0xd5b808e5UL },
821
+ { &fnv_test_str[110], (Fnv32_t) 0x1353e852UL },
822
+ { &fnv_test_str[111], (Fnv32_t) 0xbf16b916UL },
823
+ { &fnv_test_str[112], (Fnv32_t) 0xa55b89edUL },
824
+ { &fnv_test_str[113], (Fnv32_t) 0x3c1a2017UL },
825
+ { &fnv_test_str[114], (Fnv32_t) 0x0588b13cUL },
826
+ { &fnv_test_str[115], (Fnv32_t) 0xf22f0174UL },
827
+ { &fnv_test_str[116], (Fnv32_t) 0xe83641e1UL },
828
+ { &fnv_test_str[117], (Fnv32_t) 0x6e69b533UL },
829
+ { &fnv_test_str[118], (Fnv32_t) 0xf1760448UL },
830
+ { &fnv_test_str[119], (Fnv32_t) 0x64c8bd58UL },
831
+ { &fnv_test_str[120], (Fnv32_t) 0x97b4ea23UL },
832
+ { &fnv_test_str[121], (Fnv32_t) 0x9a4e92e6UL },
833
+ { &fnv_test_str[122], (Fnv32_t) 0xcfb14012UL },
834
+ { &fnv_test_str[123], (Fnv32_t) 0xf01b2511UL },
835
+ { &fnv_test_str[124], (Fnv32_t) 0x0bbb59c3UL },
836
+ { &fnv_test_str[125], (Fnv32_t) 0xce524afaUL },
837
+ { &fnv_test_str[126], (Fnv32_t) 0xdd16ef45UL },
838
+ { &fnv_test_str[127], (Fnv32_t) 0x60648bb3UL },
839
+ { &fnv_test_str[128], (Fnv32_t) 0x7fa4bcfcUL },
840
+ { &fnv_test_str[129], (Fnv32_t) 0x5053ae17UL },
841
+ { &fnv_test_str[130], (Fnv32_t) 0xc9302890UL },
842
+ { &fnv_test_str[131], (Fnv32_t) 0x956ded32UL },
843
+ { &fnv_test_str[132], (Fnv32_t) 0x9136db84UL },
844
+ { &fnv_test_str[133], (Fnv32_t) 0xdf9d3323UL },
845
+ { &fnv_test_str[134], (Fnv32_t) 0x32bb6cd0UL },
846
+ { &fnv_test_str[135], (Fnv32_t) 0xc8f8385bUL },
847
+ { &fnv_test_str[136], (Fnv32_t) 0xeb08bfbaUL },
848
+ { &fnv_test_str[137], (Fnv32_t) 0x62cc8e3dUL },
849
+ { &fnv_test_str[138], (Fnv32_t) 0xc3e20f5cUL },
850
+ { &fnv_test_str[139], (Fnv32_t) 0x39e97f17UL },
851
+ { &fnv_test_str[140], (Fnv32_t) 0x7837b203UL },
852
+ { &fnv_test_str[141], (Fnv32_t) 0x319e877bUL },
853
+ { &fnv_test_str[142], (Fnv32_t) 0xd3e63f89UL },
854
+ { &fnv_test_str[143], (Fnv32_t) 0x29b50b38UL },
855
+ { &fnv_test_str[144], (Fnv32_t) 0x5ed678b8UL },
856
+ { &fnv_test_str[145], (Fnv32_t) 0xb0d5b793UL },
857
+ { &fnv_test_str[146], (Fnv32_t) 0x52450be5UL },
858
+ { &fnv_test_str[147], (Fnv32_t) 0xfa72d767UL },
859
+ { &fnv_test_str[148], (Fnv32_t) 0x95066709UL },
860
+ { &fnv_test_str[149], (Fnv32_t) 0x7f52e123UL },
861
+ { &fnv_test_str[150], (Fnv32_t) 0x76966481UL },
862
+ { &fnv_test_str[151], (Fnv32_t) 0x063258b0UL },
863
+ { &fnv_test_str[152], (Fnv32_t) 0x2ded6e8aUL },
864
+ { &fnv_test_str[153], (Fnv32_t) 0xb07d7c52UL },
865
+ { &fnv_test_str[154], (Fnv32_t) 0xd0c71b71UL },
866
+ { &fnv_test_str[155], (Fnv32_t) 0xf684f1bdUL },
867
+ { &fnv_test_str[156], (Fnv32_t) 0x868ecfa8UL },
868
+ { &fnv_test_str[157], (Fnv32_t) 0xf794f684UL },
869
+ { &fnv_test_str[158], (Fnv32_t) 0xd19701c3UL },
870
+ { &fnv_test_str[159], (Fnv32_t) 0x346e171eUL },
871
+ { &fnv_test_str[160], (Fnv32_t) 0x91f8f676UL },
872
+ { &fnv_test_str[161], (Fnv32_t) 0x0bf58848UL },
873
+ { &fnv_test_str[162], (Fnv32_t) 0x6317b6d1UL },
874
+ { &fnv_test_str[163], (Fnv32_t) 0xafad4c54UL },
875
+ { &fnv_test_str[164], (Fnv32_t) 0x0f25681eUL },
876
+ { &fnv_test_str[165], (Fnv32_t) 0x91b18d49UL },
877
+ { &fnv_test_str[166], (Fnv32_t) 0x7d61c12eUL },
878
+ { &fnv_test_str[167], (Fnv32_t) 0x5147d25cUL },
879
+ { &fnv_test_str[168], (Fnv32_t) 0x9a8b6805UL },
880
+ { &fnv_test_str[169], (Fnv32_t) 0x4cd2a447UL },
881
+ { &fnv_test_str[170], (Fnv32_t) 0x1e549b14UL },
882
+ { &fnv_test_str[171], (Fnv32_t) 0x2fe1b574UL },
883
+ { &fnv_test_str[172], (Fnv32_t) 0xcf0cd31eUL },
884
+ { &fnv_test_str[173], (Fnv32_t) 0x6c471669UL },
885
+ { &fnv_test_str[174], (Fnv32_t) 0x0e5eef1eUL },
886
+ { &fnv_test_str[175], (Fnv32_t) 0x2bed3602UL },
887
+ { &fnv_test_str[176], (Fnv32_t) 0xb26249e0UL },
888
+ { &fnv_test_str[177], (Fnv32_t) 0x2c9b86a4UL },
889
+ { &fnv_test_str[178], (Fnv32_t) 0xe415e2bbUL },
890
+ { &fnv_test_str[179], (Fnv32_t) 0x18a98d1dUL },
891
+ { &fnv_test_str[180], (Fnv32_t) 0xb7df8b7bUL },
892
+ { &fnv_test_str[181], (Fnv32_t) 0x241e9075UL },
893
+ { &fnv_test_str[182], (Fnv32_t) 0x063f70ddUL },
894
+ { &fnv_test_str[183], (Fnv32_t) 0x0295aed9UL },
895
+ { &fnv_test_str[184], (Fnv32_t) 0x56a7f781UL },
896
+ { &fnv_test_str[185], (Fnv32_t) 0x253bc645UL },
897
+ { &fnv_test_str[186], (Fnv32_t) 0x46610921UL },
898
+ { &fnv_test_str[187], (Fnv32_t) 0x7c1577f9UL },
899
+ { &fnv_test_str[188], (Fnv32_t) 0x512b2851UL },
900
+ { &fnv_test_str[189], (Fnv32_t) 0x76823999UL },
901
+ { &fnv_test_str[190], (Fnv32_t) 0xc0586935UL },
902
+ { &fnv_test_str[191], (Fnv32_t) 0xf3415c85UL },
903
+ { &fnv_test_str[192], (Fnv32_t) 0x0ae4ff65UL },
904
+ { &fnv_test_str[193], (Fnv32_t) 0x58b79725UL },
905
+ { &fnv_test_str[194], (Fnv32_t) 0xdea43aa5UL },
906
+ { &fnv_test_str[195], (Fnv32_t) 0x2bb3be35UL },
907
+ { &fnv_test_str[196], (Fnv32_t) 0xea777a45UL },
908
+ { &fnv_test_str[197], (Fnv32_t) 0x8f21c305UL },
909
+ { &fnv_test_str[198], (Fnv32_t) 0x5c9d0865UL },
910
+ { &fnv_test_str[199], (Fnv32_t) 0xfa823dd5UL },
911
+ { &fnv_test_str[200], (Fnv32_t) 0x21a27271UL },
912
+ { &fnv_test_str[201], (Fnv32_t) 0x83c5c6d5UL },
913
+ { &fnv_test_str[202], (Fnv32_t) 0x813b0881UL },
914
+ { NULL, 0 }
915
+ };
916
+
917
+ /* FNV-0 64 bit test vectors */
918
+ #if defined(HAVE_64BIT_LONG_LONG)
919
+ struct fnv0_64_test_vector fnv0_64_vector[] = {
920
+ { &fnv_test_str[0], (Fnv64_t) 0x0000000000000000ULL },
921
+ { &fnv_test_str[1], (Fnv64_t) 0x0000000000000061ULL },
922
+ { &fnv_test_str[2], (Fnv64_t) 0x0000000000000062ULL },
923
+ { &fnv_test_str[3], (Fnv64_t) 0x0000000000000063ULL },
924
+ { &fnv_test_str[4], (Fnv64_t) 0x0000000000000064ULL },
925
+ { &fnv_test_str[5], (Fnv64_t) 0x0000000000000065ULL },
926
+ { &fnv_test_str[6], (Fnv64_t) 0x0000000000000066ULL },
927
+ { &fnv_test_str[7], (Fnv64_t) 0x000066000000ad3dULL },
928
+ { &fnv_test_str[8], (Fnv64_t) 0x015a8f0001265ec8ULL },
929
+ { &fnv_test_str[9], (Fnv64_t) 0x733fc501f4330dbaULL },
930
+ { &fnv_test_str[10], (Fnv64_t) 0x08697c51f2c0536fULL },
931
+ { &fnv_test_str[11], (Fnv64_t) 0x0b91ae3f7ccdc5efULL },
932
+ { &fnv_test_str[12], (Fnv64_t) 0x0000000000000000ULL },
933
+ { &fnv_test_str[13], (Fnv64_t) 0x000061000000a4d3ULL },
934
+ { &fnv_test_str[14], (Fnv64_t) 0x000062000000a686ULL },
935
+ { &fnv_test_str[15], (Fnv64_t) 0x000063000000a839ULL },
936
+ { &fnv_test_str[16], (Fnv64_t) 0x000064000000a9ecULL },
937
+ { &fnv_test_str[17], (Fnv64_t) 0x000065000000ab9fULL },
938
+ { &fnv_test_str[18], (Fnv64_t) 0x000066000000ad52ULL },
939
+ { &fnv_test_str[19], (Fnv64_t) 0x015a8f0001265ea7ULL },
940
+ { &fnv_test_str[20], (Fnv64_t) 0x733fc501f4330dd8ULL },
941
+ { &fnv_test_str[21], (Fnv64_t) 0x08697c51f2c0530eULL },
942
+ { &fnv_test_str[22], (Fnv64_t) 0x0b91ae3f7ccdc59dULL },
943
+ { &fnv_test_str[23], (Fnv64_t) 0x765104e111a7551dULL },
944
+ { &fnv_test_str[24], (Fnv64_t) 0x000063000000a851ULL },
945
+ { &fnv_test_str[25], (Fnv64_t) 0x01508a00011e01ccULL },
946
+ { &fnv_test_str[26], (Fnv64_t) 0x59dc4a01e5fd0dcaULL },
947
+ { &fnv_test_str[27], (Fnv64_t) 0xae5f8b39ccfe6e59ULL },
948
+ { &fnv_test_str[28], (Fnv64_t) 0x4ac7ec3754558154ULL },
949
+ { &fnv_test_str[29], (Fnv64_t) 0x6737b6044d4ac19cULL },
950
+ { &fnv_test_str[30], (Fnv64_t) 0xae6be54f5606fc63ULL },
951
+ { &fnv_test_str[31], (Fnv64_t) 0x685308cf2ddedc58ULL },
952
+ { &fnv_test_str[32], (Fnv64_t) 0x23f4500af1b069fbULL },
953
+ { &fnv_test_str[33], (Fnv64_t) 0xc88dfd98aec415a1ULL },
954
+ { &fnv_test_str[34], (Fnv64_t) 0x8d5b8b70f730c0fbULL },
955
+ { &fnv_test_str[35], (Fnv64_t) 0x634eebf407d7eae4ULL },
956
+ { &fnv_test_str[36], (Fnv64_t) 0x9705d3a953e4211eULL },
957
+ { &fnv_test_str[37], (Fnv64_t) 0x8307c6b98ca4459fULL },
958
+ { &fnv_test_str[38], (Fnv64_t) 0x4a7c4c49fb224d0cULL },
959
+ { &fnv_test_str[39], (Fnv64_t) 0xb382adb5bb48eb6eULL },
960
+ { &fnv_test_str[40], (Fnv64_t) 0x01508a00011e01a3ULL },
961
+ { &fnv_test_str[41], (Fnv64_t) 0x59dc4a01e5fd0da4ULL },
962
+ { &fnv_test_str[42], (Fnv64_t) 0xae5f8b39ccfe6e3eULL },
963
+ { &fnv_test_str[43], (Fnv64_t) 0x4ac7ec375455813bULL },
964
+ { &fnv_test_str[44], (Fnv64_t) 0x6737b6044d4ac1bcULL },
965
+ { &fnv_test_str[45], (Fnv64_t) 0xae6be54f5606fc14ULL },
966
+ { &fnv_test_str[46], (Fnv64_t) 0x685308cf2ddedc39ULL },
967
+ { &fnv_test_str[47], (Fnv64_t) 0x23f4500af1b06988ULL },
968
+ { &fnv_test_str[48], (Fnv64_t) 0xc88dfd98aec41581ULL },
969
+ { &fnv_test_str[49], (Fnv64_t) 0x8d5b8b70f730c093ULL },
970
+ { &fnv_test_str[50], (Fnv64_t) 0x634eebf407d7ea81ULL },
971
+ { &fnv_test_str[51], (Fnv64_t) 0x9705d3a953e4216cULL },
972
+ { &fnv_test_str[52], (Fnv64_t) 0x8307c6b98ca445faULL },
973
+ { &fnv_test_str[53], (Fnv64_t) 0x4a7c4c49fb224d2dULL },
974
+ { &fnv_test_str[54], (Fnv64_t) 0xb382adb5bb48eb64ULL },
975
+ { &fnv_test_str[55], (Fnv64_t) 0x4ff899cd3ce80beaULL },
976
+ { &fnv_test_str[56], (Fnv64_t) 0x000063000000a84cULL },
977
+ { &fnv_test_str[57], (Fnv64_t) 0x01508500011df956ULL },
978
+ { &fnv_test_str[58], (Fnv64_t) 0x59cb5501e5eead46ULL },
979
+ { &fnv_test_str[59], (Fnv64_t) 0x832eb839b4906d81ULL },
980
+ { &fnv_test_str[60], (Fnv64_t) 0x78d08b0dd16a1213ULL },
981
+ { &fnv_test_str[61], (Fnv64_t) 0xb46e5b7ad73cb628ULL },
982
+ { &fnv_test_str[62], (Fnv64_t) 0xd43b99bbbc298596ULL },
983
+ { &fnv_test_str[63], (Fnv64_t) 0xcacbd000ba8dfd86ULL },
984
+ { &fnv_test_str[64], (Fnv64_t) 0x264ff73cff45ca92ULL },
985
+ { &fnv_test_str[65], (Fnv64_t) 0x5fabaea5c3973661ULL },
986
+ { &fnv_test_str[66], (Fnv64_t) 0x27f024ab59f166bbULL },
987
+ { &fnv_test_str[67], (Fnv64_t) 0xce750a29d5318fa4ULL },
988
+ { &fnv_test_str[68], (Fnv64_t) 0x026fe915433713d5ULL },
989
+ { &fnv_test_str[69], (Fnv64_t) 0x5b3ce4213696b2e5ULL },
990
+ { &fnv_test_str[70], (Fnv64_t) 0x01508500011df924ULL },
991
+ { &fnv_test_str[71], (Fnv64_t) 0x59cb5501e5eead22ULL },
992
+ { &fnv_test_str[72], (Fnv64_t) 0x832eb839b4906df2ULL },
993
+ { &fnv_test_str[73], (Fnv64_t) 0x78d08b0dd16a1233ULL },
994
+ { &fnv_test_str[74], (Fnv64_t) 0xb46e5b7ad73cb649ULL },
995
+ { &fnv_test_str[75], (Fnv64_t) 0xd43b99bbbc2985f8ULL },
996
+ { &fnv_test_str[76], (Fnv64_t) 0xcacbd000ba8dfde2ULL },
997
+ { &fnv_test_str[77], (Fnv64_t) 0x264ff73cff45cab2ULL },
998
+ { &fnv_test_str[78], (Fnv64_t) 0x5fabaea5c3973616ULL },
999
+ { &fnv_test_str[79], (Fnv64_t) 0x27f024ab59f166d3ULL },
1000
+ { &fnv_test_str[80], (Fnv64_t) 0xce750a29d5318fc1ULL },
1001
+ { &fnv_test_str[81], (Fnv64_t) 0x026fe915433713acULL },
1002
+ { &fnv_test_str[82], (Fnv64_t) 0x5b3ce4213696b2efULL },
1003
+ { &fnv_test_str[83], (Fnv64_t) 0x9f2a896fc211fb1fULL },
1004
+ { &fnv_test_str[84], (Fnv64_t) 0x000068000000b0d1ULL },
1005
+ { &fnv_test_str[85], (Fnv64_t) 0x01618900012c7323ULL },
1006
+ { &fnv_test_str[86], (Fnv64_t) 0x3fa86e63bc7d03c8ULL },
1007
+ { &fnv_test_str[87], (Fnv64_t) 0xa8375b79486d6cd8ULL },
1008
+ { &fnv_test_str[88], (Fnv64_t) 0xa0d18504e316ac54ULL },
1009
+ { &fnv_test_str[89], (Fnv64_t) 0x08a97b0004e7fe54ULL },
1010
+ { &fnv_test_str[90], (Fnv64_t) 0xa0d18504e316ac57ULL },
1011
+ { &fnv_test_str[91], (Fnv64_t) 0x1152f60009cffda9ULL },
1012
+ { &fnv_test_str[92], (Fnv64_t) 0xa0d18504e316ac56ULL },
1013
+ { &fnv_test_str[93], (Fnv64_t) 0x19fc71000eb7fcfeULL },
1014
+ { &fnv_test_str[94], (Fnv64_t) 0xa0d18504e316ac51ULL },
1015
+ { &fnv_test_str[95], (Fnv64_t) 0x22a5ec00139ffa53ULL },
1016
+ { &fnv_test_str[96], (Fnv64_t) 0x29bed00139779a33ULL },
1017
+ { &fnv_test_str[97], (Fnv64_t) 0x4dbc81014e3c19f5ULL },
1018
+ { &fnv_test_str[98], (Fnv64_t) 0x29bed00139779a3dULL },
1019
+ { &fnv_test_str[99], (Fnv64_t) 0x81a72b016b9f7573ULL },
1020
+ { &fnv_test_str[100], (Fnv64_t) 0x29bed00139779a23ULL },
1021
+ { &fnv_test_str[101], (Fnv64_t) 0xd85411019cbbce45ULL },
1022
+ { &fnv_test_str[102], (Fnv64_t) 0xf548616b8621d657ULL },
1023
+ { &fnv_test_str[103], (Fnv64_t) 0xebd3e0b4eb7f35d5ULL },
1024
+ { &fnv_test_str[104], (Fnv64_t) 0xf548616b8621d654ULL },
1025
+ { &fnv_test_str[105], (Fnv64_t) 0xebd3ddb4eb7f30bcULL },
1026
+ { &fnv_test_str[106], (Fnv64_t) 0xf548616b8621d655ULL },
1027
+ { &fnv_test_str[107], (Fnv64_t) 0xebd3deb4eb7f326fULL },
1028
+ { &fnv_test_str[108], (Fnv64_t) 0x581cb60340ab0968ULL },
1029
+ { &fnv_test_str[109], (Fnv64_t) 0x63d2af86e2a0fbb8ULL },
1030
+ { &fnv_test_str[110], (Fnv64_t) 0x581cb70340ab0b37ULL },
1031
+ { &fnv_test_str[111], (Fnv64_t) 0x63d63186e2a40e75ULL },
1032
+ { &fnv_test_str[112], (Fnv64_t) 0x581cc40340ab212eULL },
1033
+ { &fnv_test_str[113], (Fnv64_t) 0x64023f86e2c9612aULL },
1034
+ { &fnv_test_str[114], (Fnv64_t) 0xdbda6a26c33c909fULL },
1035
+ { &fnv_test_str[115], (Fnv64_t) 0xd0b2feddbfe9be2dULL },
1036
+ { &fnv_test_str[116], (Fnv64_t) 0x9c9eae3f5d037decULL },
1037
+ { &fnv_test_str[117], (Fnv64_t) 0x252001ab0ceef804ULL },
1038
+ { &fnv_test_str[118], (Fnv64_t) 0x4456a56f9e05cfefULL },
1039
+ { &fnv_test_str[119], (Fnv64_t) 0x250b0ba983e0531dULL },
1040
+ { &fnv_test_str[120], (Fnv64_t) 0x52b007213b27b33eULL },
1041
+ { &fnv_test_str[121], (Fnv64_t) 0xcbf29ce484222325ULL },
1042
+ { &fnv_test_str[122], (Fnv64_t) 0xaf63bd4c8601b7dfULL },
1043
+ { &fnv_test_str[123], (Fnv64_t) 0x128599ccddae09f8ULL },
1044
+ { &fnv_test_str[124], (Fnv64_t) 0x270e4f1caebaf068ULL },
1045
+ { &fnv_test_str[125], (Fnv64_t) 0x01517d497446a395ULL },
1046
+ { &fnv_test_str[126], (Fnv64_t) 0x9af5a29a89450b40ULL },
1047
+ { &fnv_test_str[127], (Fnv64_t) 0xb502f6c063ba72e8ULL },
1048
+ { &fnv_test_str[128], (Fnv64_t) 0xacf41561498ca7dfULL },
1049
+ { &fnv_test_str[129], (Fnv64_t) 0x6be8c2423a351542ULL },
1050
+ { &fnv_test_str[130], (Fnv64_t) 0xd04f1f6da96ce4a3ULL },
1051
+ { &fnv_test_str[131], (Fnv64_t) 0x69eb9a8f282c7235ULL },
1052
+ { &fnv_test_str[132], (Fnv64_t) 0x6a7e5a418f77cfc5ULL },
1053
+ { &fnv_test_str[133], (Fnv64_t) 0xbcaf568ddc2ecba0ULL },
1054
+ { &fnv_test_str[134], (Fnv64_t) 0xb03b5cc4c38f8b1fULL },
1055
+ { &fnv_test_str[135], (Fnv64_t) 0xf89a9f51432db828ULL },
1056
+ { &fnv_test_str[136], (Fnv64_t) 0x549e856be6103429ULL },
1057
+ { &fnv_test_str[137], (Fnv64_t) 0x3cf50d224d29377aULL },
1058
+ { &fnv_test_str[138], (Fnv64_t) 0xdb762df418c10c37ULL },
1059
+ { &fnv_test_str[139], (Fnv64_t) 0xfeeb4226b0e9a6baULL },
1060
+ { &fnv_test_str[140], (Fnv64_t) 0x7004a4cd9310c052ULL },
1061
+ { &fnv_test_str[141], (Fnv64_t) 0xd1c727d7f5329276ULL },
1062
+ { &fnv_test_str[142], (Fnv64_t) 0xbe313796596ce908ULL },
1063
+ { &fnv_test_str[143], (Fnv64_t) 0x768f67ede090fcc5ULL },
1064
+ { &fnv_test_str[144], (Fnv64_t) 0xa81563cc9db9bfc3ULL },
1065
+ { &fnv_test_str[145], (Fnv64_t) 0x47194043c55197a8ULL },
1066
+ { &fnv_test_str[146], (Fnv64_t) 0xc99d81864aebab02ULL },
1067
+ { &fnv_test_str[147], (Fnv64_t) 0xcc1f161b235ea4a2ULL },
1068
+ { &fnv_test_str[148], (Fnv64_t) 0xaadab0c420ecd434ULL },
1069
+ { &fnv_test_str[149], (Fnv64_t) 0x6b3c034d6f44d740ULL },
1070
+ { &fnv_test_str[150], (Fnv64_t) 0x73a45e850602cbc6ULL },
1071
+ { &fnv_test_str[151], (Fnv64_t) 0x72360f04f0cd227bULL },
1072
+ { &fnv_test_str[152], (Fnv64_t) 0xa9ca80be384a778fULL },
1073
+ { &fnv_test_str[153], (Fnv64_t) 0xd4085e66906889e3ULL },
1074
+ { &fnv_test_str[154], (Fnv64_t) 0x93aa8b2748efdbc8ULL },
1075
+ { &fnv_test_str[155], (Fnv64_t) 0x6f8cd678407436a2ULL },
1076
+ { &fnv_test_str[156], (Fnv64_t) 0xf39a43d4dc8be4c7ULL },
1077
+ { &fnv_test_str[157], (Fnv64_t) 0xd7f5cec91125d245ULL },
1078
+ { &fnv_test_str[158], (Fnv64_t) 0x691d7b73be18adc4ULL },
1079
+ { &fnv_test_str[159], (Fnv64_t) 0xf4361e01caf6b691ULL },
1080
+ { &fnv_test_str[160], (Fnv64_t) 0xde7d8264f64be089ULL },
1081
+ { &fnv_test_str[161], (Fnv64_t) 0xa34ff43e5545c06fULL },
1082
+ { &fnv_test_str[162], (Fnv64_t) 0x181f0b8e908a2bdeULL },
1083
+ { &fnv_test_str[163], (Fnv64_t) 0x28a965b78ddbc071ULL },
1084
+ { &fnv_test_str[164], (Fnv64_t) 0xead9cea0e3cc6ae5ULL },
1085
+ { &fnv_test_str[165], (Fnv64_t) 0x0b6743153b43ebbaULL },
1086
+ { &fnv_test_str[166], (Fnv64_t) 0xa7aa3f012c74528dULL },
1087
+ { &fnv_test_str[167], (Fnv64_t) 0x2d5d8ad7f9dffeb7ULL },
1088
+ { &fnv_test_str[168], (Fnv64_t) 0x00750fb6e19624eaULL },
1089
+ { &fnv_test_str[169], (Fnv64_t) 0x01c125a4e6c76c82ULL },
1090
+ { &fnv_test_str[170], (Fnv64_t) 0x3fde3afac0722f1fULL },
1091
+ { &fnv_test_str[171], (Fnv64_t) 0xd7c3eaf4abaa379dULL },
1092
+ { &fnv_test_str[172], (Fnv64_t) 0xd2217e1c923c9f3fULL },
1093
+ { &fnv_test_str[173], (Fnv64_t) 0x82d0a2e3b725caf6ULL },
1094
+ { &fnv_test_str[174], (Fnv64_t) 0x0a10bee8eeb72e4fULL },
1095
+ { &fnv_test_str[175], (Fnv64_t) 0xc530e8723e72c6fdULL },
1096
+ { &fnv_test_str[176], (Fnv64_t) 0xd8d34dcd2e7bad99ULL },
1097
+ { &fnv_test_str[177], (Fnv64_t) 0xecf77466e9a2baf3ULL },
1098
+ { &fnv_test_str[178], (Fnv64_t) 0xde3d2ddb043b9666ULL },
1099
+ { &fnv_test_str[179], (Fnv64_t) 0xd1cc824e1a8157d8ULL },
1100
+ { &fnv_test_str[180], (Fnv64_t) 0x7d5c68ecbc90512eULL },
1101
+ { &fnv_test_str[181], (Fnv64_t) 0x2f7c691b1d7c76d8ULL },
1102
+ { &fnv_test_str[182], (Fnv64_t) 0x5d88c2bad3a46bc8ULL },
1103
+ { &fnv_test_str[183], (Fnv64_t) 0xdf107320276647a0ULL },
1104
+ { &fnv_test_str[184], (Fnv64_t) 0x0f78f22e7e70e9bcULL },
1105
+ { &fnv_test_str[185], (Fnv64_t) 0x8c67be5c80f67d04ULL },
1106
+ { &fnv_test_str[186], (Fnv64_t) 0x07c1adfa4d019194ULL },
1107
+ { &fnv_test_str[187], (Fnv64_t) 0xce1312420c5b1af4ULL },
1108
+ { &fnv_test_str[188], (Fnv64_t) 0x043a41b2dc53ab24ULL },
1109
+ { &fnv_test_str[189], (Fnv64_t) 0x0b038eebf7340860ULL },
1110
+ { &fnv_test_str[190], (Fnv64_t) 0x1bcd837353fb69b0ULL },
1111
+ { &fnv_test_str[191], (Fnv64_t) 0x46f992fc59eff180ULL },
1112
+ { &fnv_test_str[192], (Fnv64_t) 0x497678ee29ae79c0ULL },
1113
+ { &fnv_test_str[193], (Fnv64_t) 0xb10a62280ddd4450ULL },
1114
+ { &fnv_test_str[194], (Fnv64_t) 0x35eb228db4d68140ULL },
1115
+ { &fnv_test_str[195], (Fnv64_t) 0x8b350e86d9470870ULL },
1116
+ { &fnv_test_str[196], (Fnv64_t) 0x4e1fbdb2812e9540ULL },
1117
+ { &fnv_test_str[197], (Fnv64_t) 0x051e080df69a0600ULL },
1118
+ { &fnv_test_str[198], (Fnv64_t) 0x45e1e8ae54dadb40ULL },
1119
+ { &fnv_test_str[199], (Fnv64_t) 0x0000000000000000ULL },
1120
+ { &fnv_test_str[200], (Fnv64_t) 0xcd73806290557064ULL },
1121
+ { &fnv_test_str[201], (Fnv64_t) 0x2613a37bbe0317c8ULL },
1122
+ { &fnv_test_str[202], (Fnv64_t) 0x1480e21fcf2ae5e4ULL },
1123
+ { NULL, (Fnv64_t) 0 }
1124
+ };
1125
+ #else /* HAVE_64BIT_LONG_LONG */
1126
+ struct fnv0_64_test_vector fnv0_64_vector[] = {
1127
+ { &fnv_test_str[0], (Fnv64_t) {0x00000000UL, 0x00000000UL} },
1128
+ { &fnv_test_str[1], (Fnv64_t) {0x00000061UL, 0x00000000UL} },
1129
+ { &fnv_test_str[2], (Fnv64_t) {0x00000062UL, 0x00000000UL} },
1130
+ { &fnv_test_str[3], (Fnv64_t) {0x00000063UL, 0x00000000UL} },
1131
+ { &fnv_test_str[4], (Fnv64_t) {0x00000064UL, 0x00000000UL} },
1132
+ { &fnv_test_str[5], (Fnv64_t) {0x00000065UL, 0x00000000UL} },
1133
+ { &fnv_test_str[6], (Fnv64_t) {0x00000066UL, 0x00000000UL} },
1134
+ { &fnv_test_str[7], (Fnv64_t) {0x0000ad3dUL, 0x00006600UL} },
1135
+ { &fnv_test_str[8], (Fnv64_t) {0x01265ec8UL, 0x015a8f00UL} },
1136
+ { &fnv_test_str[9], (Fnv64_t) {0xf4330dbaUL, 0x733fc501UL} },
1137
+ { &fnv_test_str[10], (Fnv64_t) {0xf2c0536fUL, 0x08697c51UL} },
1138
+ { &fnv_test_str[11], (Fnv64_t) {0x7ccdc5efUL, 0x0b91ae3fUL} },
1139
+ { &fnv_test_str[12], (Fnv64_t) {0x00000000UL, 0x00000000UL} },
1140
+ { &fnv_test_str[13], (Fnv64_t) {0x0000a4d3UL, 0x00006100UL} },
1141
+ { &fnv_test_str[14], (Fnv64_t) {0x0000a686UL, 0x00006200UL} },
1142
+ { &fnv_test_str[15], (Fnv64_t) {0x0000a839UL, 0x00006300UL} },
1143
+ { &fnv_test_str[16], (Fnv64_t) {0x0000a9ecUL, 0x00006400UL} },
1144
+ { &fnv_test_str[17], (Fnv64_t) {0x0000ab9fUL, 0x00006500UL} },
1145
+ { &fnv_test_str[18], (Fnv64_t) {0x0000ad52UL, 0x00006600UL} },
1146
+ { &fnv_test_str[19], (Fnv64_t) {0x01265ea7UL, 0x015a8f00UL} },
1147
+ { &fnv_test_str[20], (Fnv64_t) {0xf4330dd8UL, 0x733fc501UL} },
1148
+ { &fnv_test_str[21], (Fnv64_t) {0xf2c0530eUL, 0x08697c51UL} },
1149
+ { &fnv_test_str[22], (Fnv64_t) {0x7ccdc59dUL, 0x0b91ae3fUL} },
1150
+ { &fnv_test_str[23], (Fnv64_t) {0x11a7551dUL, 0x765104e1UL} },
1151
+ { &fnv_test_str[24], (Fnv64_t) {0x0000a851UL, 0x00006300UL} },
1152
+ { &fnv_test_str[25], (Fnv64_t) {0x011e01ccUL, 0x01508a00UL} },
1153
+ { &fnv_test_str[26], (Fnv64_t) {0xe5fd0dcaUL, 0x59dc4a01UL} },
1154
+ { &fnv_test_str[27], (Fnv64_t) {0xccfe6e59UL, 0xae5f8b39UL} },
1155
+ { &fnv_test_str[28], (Fnv64_t) {0x54558154UL, 0x4ac7ec37UL} },
1156
+ { &fnv_test_str[29], (Fnv64_t) {0x4d4ac19cUL, 0x6737b604UL} },
1157
+ { &fnv_test_str[30], (Fnv64_t) {0x5606fc63UL, 0xae6be54fUL} },
1158
+ { &fnv_test_str[31], (Fnv64_t) {0x2ddedc58UL, 0x685308cfUL} },
1159
+ { &fnv_test_str[32], (Fnv64_t) {0xf1b069fbUL, 0x23f4500aUL} },
1160
+ { &fnv_test_str[33], (Fnv64_t) {0xaec415a1UL, 0xc88dfd98UL} },
1161
+ { &fnv_test_str[34], (Fnv64_t) {0xf730c0fbUL, 0x8d5b8b70UL} },
1162
+ { &fnv_test_str[35], (Fnv64_t) {0x07d7eae4UL, 0x634eebf4UL} },
1163
+ { &fnv_test_str[36], (Fnv64_t) {0x53e4211eUL, 0x9705d3a9UL} },
1164
+ { &fnv_test_str[37], (Fnv64_t) {0x8ca4459fUL, 0x8307c6b9UL} },
1165
+ { &fnv_test_str[38], (Fnv64_t) {0xfb224d0cUL, 0x4a7c4c49UL} },
1166
+ { &fnv_test_str[39], (Fnv64_t) {0xbb48eb6eUL, 0xb382adb5UL} },
1167
+ { &fnv_test_str[40], (Fnv64_t) {0x011e01a3UL, 0x01508a00UL} },
1168
+ { &fnv_test_str[41], (Fnv64_t) {0xe5fd0da4UL, 0x59dc4a01UL} },
1169
+ { &fnv_test_str[42], (Fnv64_t) {0xccfe6e3eUL, 0xae5f8b39UL} },
1170
+ { &fnv_test_str[43], (Fnv64_t) {0x5455813bUL, 0x4ac7ec37UL} },
1171
+ { &fnv_test_str[44], (Fnv64_t) {0x4d4ac1bcUL, 0x6737b604UL} },
1172
+ { &fnv_test_str[45], (Fnv64_t) {0x5606fc14UL, 0xae6be54fUL} },
1173
+ { &fnv_test_str[46], (Fnv64_t) {0x2ddedc39UL, 0x685308cfUL} },
1174
+ { &fnv_test_str[47], (Fnv64_t) {0xf1b06988UL, 0x23f4500aUL} },
1175
+ { &fnv_test_str[48], (Fnv64_t) {0xaec41581UL, 0xc88dfd98UL} },
1176
+ { &fnv_test_str[49], (Fnv64_t) {0xf730c093UL, 0x8d5b8b70UL} },
1177
+ { &fnv_test_str[50], (Fnv64_t) {0x07d7ea81UL, 0x634eebf4UL} },
1178
+ { &fnv_test_str[51], (Fnv64_t) {0x53e4216cUL, 0x9705d3a9UL} },
1179
+ { &fnv_test_str[52], (Fnv64_t) {0x8ca445faUL, 0x8307c6b9UL} },
1180
+ { &fnv_test_str[53], (Fnv64_t) {0xfb224d2dUL, 0x4a7c4c49UL} },
1181
+ { &fnv_test_str[54], (Fnv64_t) {0xbb48eb64UL, 0xb382adb5UL} },
1182
+ { &fnv_test_str[55], (Fnv64_t) {0x3ce80beaUL, 0x4ff899cdUL} },
1183
+ { &fnv_test_str[56], (Fnv64_t) {0x0000a84cUL, 0x00006300UL} },
1184
+ { &fnv_test_str[57], (Fnv64_t) {0x011df956UL, 0x01508500UL} },
1185
+ { &fnv_test_str[58], (Fnv64_t) {0xe5eead46UL, 0x59cb5501UL} },
1186
+ { &fnv_test_str[59], (Fnv64_t) {0xb4906d81UL, 0x832eb839UL} },
1187
+ { &fnv_test_str[60], (Fnv64_t) {0xd16a1213UL, 0x78d08b0dUL} },
1188
+ { &fnv_test_str[61], (Fnv64_t) {0xd73cb628UL, 0xb46e5b7aUL} },
1189
+ { &fnv_test_str[62], (Fnv64_t) {0xbc298596UL, 0xd43b99bbUL} },
1190
+ { &fnv_test_str[63], (Fnv64_t) {0xba8dfd86UL, 0xcacbd000UL} },
1191
+ { &fnv_test_str[64], (Fnv64_t) {0xff45ca92UL, 0x264ff73cUL} },
1192
+ { &fnv_test_str[65], (Fnv64_t) {0xc3973661UL, 0x5fabaea5UL} },
1193
+ { &fnv_test_str[66], (Fnv64_t) {0x59f166bbUL, 0x27f024abUL} },
1194
+ { &fnv_test_str[67], (Fnv64_t) {0xd5318fa4UL, 0xce750a29UL} },
1195
+ { &fnv_test_str[68], (Fnv64_t) {0x433713d5UL, 0x026fe915UL} },
1196
+ { &fnv_test_str[69], (Fnv64_t) {0x3696b2e5UL, 0x5b3ce421UL} },
1197
+ { &fnv_test_str[70], (Fnv64_t) {0x011df924UL, 0x01508500UL} },
1198
+ { &fnv_test_str[71], (Fnv64_t) {0xe5eead22UL, 0x59cb5501UL} },
1199
+ { &fnv_test_str[72], (Fnv64_t) {0xb4906df2UL, 0x832eb839UL} },
1200
+ { &fnv_test_str[73], (Fnv64_t) {0xd16a1233UL, 0x78d08b0dUL} },
1201
+ { &fnv_test_str[74], (Fnv64_t) {0xd73cb649UL, 0xb46e5b7aUL} },
1202
+ { &fnv_test_str[75], (Fnv64_t) {0xbc2985f8UL, 0xd43b99bbUL} },
1203
+ { &fnv_test_str[76], (Fnv64_t) {0xba8dfde2UL, 0xcacbd000UL} },
1204
+ { &fnv_test_str[77], (Fnv64_t) {0xff45cab2UL, 0x264ff73cUL} },
1205
+ { &fnv_test_str[78], (Fnv64_t) {0xc3973616UL, 0x5fabaea5UL} },
1206
+ { &fnv_test_str[79], (Fnv64_t) {0x59f166d3UL, 0x27f024abUL} },
1207
+ { &fnv_test_str[80], (Fnv64_t) {0xd5318fc1UL, 0xce750a29UL} },
1208
+ { &fnv_test_str[81], (Fnv64_t) {0x433713acUL, 0x026fe915UL} },
1209
+ { &fnv_test_str[82], (Fnv64_t) {0x3696b2efUL, 0x5b3ce421UL} },
1210
+ { &fnv_test_str[83], (Fnv64_t) {0xc211fb1fUL, 0x9f2a896fUL} },
1211
+ { &fnv_test_str[84], (Fnv64_t) {0x0000b0d1UL, 0x00006800UL} },
1212
+ { &fnv_test_str[85], (Fnv64_t) {0x012c7323UL, 0x01618900UL} },
1213
+ { &fnv_test_str[86], (Fnv64_t) {0xbc7d03c8UL, 0x3fa86e63UL} },
1214
+ { &fnv_test_str[87], (Fnv64_t) {0x486d6cd8UL, 0xa8375b79UL} },
1215
+ { &fnv_test_str[88], (Fnv64_t) {0xe316ac54UL, 0xa0d18504UL} },
1216
+ { &fnv_test_str[89], (Fnv64_t) {0x04e7fe54UL, 0x08a97b00UL} },
1217
+ { &fnv_test_str[90], (Fnv64_t) {0xe316ac57UL, 0xa0d18504UL} },
1218
+ { &fnv_test_str[91], (Fnv64_t) {0x09cffda9UL, 0x1152f600UL} },
1219
+ { &fnv_test_str[92], (Fnv64_t) {0xe316ac56UL, 0xa0d18504UL} },
1220
+ { &fnv_test_str[93], (Fnv64_t) {0x0eb7fcfeUL, 0x19fc7100UL} },
1221
+ { &fnv_test_str[94], (Fnv64_t) {0xe316ac51UL, 0xa0d18504UL} },
1222
+ { &fnv_test_str[95], (Fnv64_t) {0x139ffa53UL, 0x22a5ec00UL} },
1223
+ { &fnv_test_str[96], (Fnv64_t) {0x39779a33UL, 0x29bed001UL} },
1224
+ { &fnv_test_str[97], (Fnv64_t) {0x4e3c19f5UL, 0x4dbc8101UL} },
1225
+ { &fnv_test_str[98], (Fnv64_t) {0x39779a3dUL, 0x29bed001UL} },
1226
+ { &fnv_test_str[99], (Fnv64_t) {0x6b9f7573UL, 0x81a72b01UL} },
1227
+ { &fnv_test_str[100], (Fnv64_t) {0x39779a23UL, 0x29bed001UL} },
1228
+ { &fnv_test_str[101], (Fnv64_t) {0x9cbbce45UL, 0xd8541101UL} },
1229
+ { &fnv_test_str[102], (Fnv64_t) {0x8621d657UL, 0xf548616bUL} },
1230
+ { &fnv_test_str[103], (Fnv64_t) {0xeb7f35d5UL, 0xebd3e0b4UL} },
1231
+ { &fnv_test_str[104], (Fnv64_t) {0x8621d654UL, 0xf548616bUL} },
1232
+ { &fnv_test_str[105], (Fnv64_t) {0xeb7f30bcUL, 0xebd3ddb4UL} },
1233
+ { &fnv_test_str[106], (Fnv64_t) {0x8621d655UL, 0xf548616bUL} },
1234
+ { &fnv_test_str[107], (Fnv64_t) {0xeb7f326fUL, 0xebd3deb4UL} },
1235
+ { &fnv_test_str[108], (Fnv64_t) {0x40ab0968UL, 0x581cb603UL} },
1236
+ { &fnv_test_str[109], (Fnv64_t) {0xe2a0fbb8UL, 0x63d2af86UL} },
1237
+ { &fnv_test_str[110], (Fnv64_t) {0x40ab0b37UL, 0x581cb703UL} },
1238
+ { &fnv_test_str[111], (Fnv64_t) {0xe2a40e75UL, 0x63d63186UL} },
1239
+ { &fnv_test_str[112], (Fnv64_t) {0x40ab212eUL, 0x581cc403UL} },
1240
+ { &fnv_test_str[113], (Fnv64_t) {0xe2c9612aUL, 0x64023f86UL} },
1241
+ { &fnv_test_str[114], (Fnv64_t) {0xc33c909fUL, 0xdbda6a26UL} },
1242
+ { &fnv_test_str[115], (Fnv64_t) {0xbfe9be2dUL, 0xd0b2feddUL} },
1243
+ { &fnv_test_str[116], (Fnv64_t) {0x5d037decUL, 0x9c9eae3fUL} },
1244
+ { &fnv_test_str[117], (Fnv64_t) {0x0ceef804UL, 0x252001abUL} },
1245
+ { &fnv_test_str[118], (Fnv64_t) {0x9e05cfefUL, 0x4456a56fUL} },
1246
+ { &fnv_test_str[119], (Fnv64_t) {0x83e0531dUL, 0x250b0ba9UL} },
1247
+ { &fnv_test_str[120], (Fnv64_t) {0x3b27b33eUL, 0x52b00721UL} },
1248
+ { &fnv_test_str[121], (Fnv64_t) {0x84222325UL, 0xcbf29ce4UL} },
1249
+ { &fnv_test_str[122], (Fnv64_t) {0x8601b7dfUL, 0xaf63bd4cUL} },
1250
+ { &fnv_test_str[123], (Fnv64_t) {0xddae09f8UL, 0x128599ccUL} },
1251
+ { &fnv_test_str[124], (Fnv64_t) {0xaebaf068UL, 0x270e4f1cUL} },
1252
+ { &fnv_test_str[125], (Fnv64_t) {0x7446a395UL, 0x01517d49UL} },
1253
+ { &fnv_test_str[126], (Fnv64_t) {0x89450b40UL, 0x9af5a29aUL} },
1254
+ { &fnv_test_str[127], (Fnv64_t) {0x63ba72e8UL, 0xb502f6c0UL} },
1255
+ { &fnv_test_str[128], (Fnv64_t) {0x498ca7dfUL, 0xacf41561UL} },
1256
+ { &fnv_test_str[129], (Fnv64_t) {0x3a351542UL, 0x6be8c242UL} },
1257
+ { &fnv_test_str[130], (Fnv64_t) {0xa96ce4a3UL, 0xd04f1f6dUL} },
1258
+ { &fnv_test_str[131], (Fnv64_t) {0x282c7235UL, 0x69eb9a8fUL} },
1259
+ { &fnv_test_str[132], (Fnv64_t) {0x8f77cfc5UL, 0x6a7e5a41UL} },
1260
+ { &fnv_test_str[133], (Fnv64_t) {0xdc2ecba0UL, 0xbcaf568dUL} },
1261
+ { &fnv_test_str[134], (Fnv64_t) {0xc38f8b1fUL, 0xb03b5cc4UL} },
1262
+ { &fnv_test_str[135], (Fnv64_t) {0x432db828UL, 0xf89a9f51UL} },
1263
+ { &fnv_test_str[136], (Fnv64_t) {0xe6103429UL, 0x549e856bUL} },
1264
+ { &fnv_test_str[137], (Fnv64_t) {0x4d29377aUL, 0x3cf50d22UL} },
1265
+ { &fnv_test_str[138], (Fnv64_t) {0x18c10c37UL, 0xdb762df4UL} },
1266
+ { &fnv_test_str[139], (Fnv64_t) {0xb0e9a6baUL, 0xfeeb4226UL} },
1267
+ { &fnv_test_str[140], (Fnv64_t) {0x9310c052UL, 0x7004a4cdUL} },
1268
+ { &fnv_test_str[141], (Fnv64_t) {0xf5329276UL, 0xd1c727d7UL} },
1269
+ { &fnv_test_str[142], (Fnv64_t) {0x596ce908UL, 0xbe313796UL} },
1270
+ { &fnv_test_str[143], (Fnv64_t) {0xe090fcc5UL, 0x768f67edUL} },
1271
+ { &fnv_test_str[144], (Fnv64_t) {0x9db9bfc3UL, 0xa81563ccUL} },
1272
+ { &fnv_test_str[145], (Fnv64_t) {0xc55197a8UL, 0x47194043UL} },
1273
+ { &fnv_test_str[146], (Fnv64_t) {0x4aebab02UL, 0xc99d8186UL} },
1274
+ { &fnv_test_str[147], (Fnv64_t) {0x235ea4a2UL, 0xcc1f161bUL} },
1275
+ { &fnv_test_str[148], (Fnv64_t) {0x20ecd434UL, 0xaadab0c4UL} },
1276
+ { &fnv_test_str[149], (Fnv64_t) {0x6f44d740UL, 0x6b3c034dUL} },
1277
+ { &fnv_test_str[150], (Fnv64_t) {0x0602cbc6UL, 0x73a45e85UL} },
1278
+ { &fnv_test_str[151], (Fnv64_t) {0xf0cd227bUL, 0x72360f04UL} },
1279
+ { &fnv_test_str[152], (Fnv64_t) {0x384a778fUL, 0xa9ca80beUL} },
1280
+ { &fnv_test_str[153], (Fnv64_t) {0x906889e3UL, 0xd4085e66UL} },
1281
+ { &fnv_test_str[154], (Fnv64_t) {0x48efdbc8UL, 0x93aa8b27UL} },
1282
+ { &fnv_test_str[155], (Fnv64_t) {0x407436a2UL, 0x6f8cd678UL} },
1283
+ { &fnv_test_str[156], (Fnv64_t) {0xdc8be4c7UL, 0xf39a43d4UL} },
1284
+ { &fnv_test_str[157], (Fnv64_t) {0x1125d245UL, 0xd7f5cec9UL} },
1285
+ { &fnv_test_str[158], (Fnv64_t) {0xbe18adc4UL, 0x691d7b73UL} },
1286
+ { &fnv_test_str[159], (Fnv64_t) {0xcaf6b691UL, 0xf4361e01UL} },
1287
+ { &fnv_test_str[160], (Fnv64_t) {0xf64be089UL, 0xde7d8264UL} },
1288
+ { &fnv_test_str[161], (Fnv64_t) {0x5545c06fUL, 0xa34ff43eUL} },
1289
+ { &fnv_test_str[162], (Fnv64_t) {0x908a2bdeUL, 0x181f0b8eUL} },
1290
+ { &fnv_test_str[163], (Fnv64_t) {0x8ddbc071UL, 0x28a965b7UL} },
1291
+ { &fnv_test_str[164], (Fnv64_t) {0xe3cc6ae5UL, 0xead9cea0UL} },
1292
+ { &fnv_test_str[165], (Fnv64_t) {0x3b43ebbaUL, 0x0b674315UL} },
1293
+ { &fnv_test_str[166], (Fnv64_t) {0x2c74528dUL, 0xa7aa3f01UL} },
1294
+ { &fnv_test_str[167], (Fnv64_t) {0xf9dffeb7UL, 0x2d5d8ad7UL} },
1295
+ { &fnv_test_str[168], (Fnv64_t) {0xe19624eaUL, 0x00750fb6UL} },
1296
+ { &fnv_test_str[169], (Fnv64_t) {0xe6c76c82UL, 0x01c125a4UL} },
1297
+ { &fnv_test_str[170], (Fnv64_t) {0xc0722f1fUL, 0x3fde3afaUL} },
1298
+ { &fnv_test_str[171], (Fnv64_t) {0xabaa379dUL, 0xd7c3eaf4UL} },
1299
+ { &fnv_test_str[172], (Fnv64_t) {0x923c9f3fUL, 0xd2217e1cUL} },
1300
+ { &fnv_test_str[173], (Fnv64_t) {0xb725caf6UL, 0x82d0a2e3UL} },
1301
+ { &fnv_test_str[174], (Fnv64_t) {0xeeb72e4fUL, 0x0a10bee8UL} },
1302
+ { &fnv_test_str[175], (Fnv64_t) {0x3e72c6fdUL, 0xc530e872UL} },
1303
+ { &fnv_test_str[176], (Fnv64_t) {0x2e7bad99UL, 0xd8d34dcdUL} },
1304
+ { &fnv_test_str[177], (Fnv64_t) {0xe9a2baf3UL, 0xecf77466UL} },
1305
+ { &fnv_test_str[178], (Fnv64_t) {0x043b9666UL, 0xde3d2ddbUL} },
1306
+ { &fnv_test_str[179], (Fnv64_t) {0x1a8157d8UL, 0xd1cc824eUL} },
1307
+ { &fnv_test_str[180], (Fnv64_t) {0xbc90512eUL, 0x7d5c68ecUL} },
1308
+ { &fnv_test_str[181], (Fnv64_t) {0x1d7c76d8UL, 0x2f7c691bUL} },
1309
+ { &fnv_test_str[182], (Fnv64_t) {0xd3a46bc8UL, 0x5d88c2baUL} },
1310
+ { &fnv_test_str[183], (Fnv64_t) {0x276647a0UL, 0xdf107320UL} },
1311
+ { &fnv_test_str[184], (Fnv64_t) {0x7e70e9bcUL, 0x0f78f22eUL} },
1312
+ { &fnv_test_str[185], (Fnv64_t) {0x80f67d04UL, 0x8c67be5cUL} },
1313
+ { &fnv_test_str[186], (Fnv64_t) {0x4d019194UL, 0x07c1adfaUL} },
1314
+ { &fnv_test_str[187], (Fnv64_t) {0x0c5b1af4UL, 0xce131242UL} },
1315
+ { &fnv_test_str[188], (Fnv64_t) {0xdc53ab24UL, 0x043a41b2UL} },
1316
+ { &fnv_test_str[189], (Fnv64_t) {0xf7340860UL, 0x0b038eebUL} },
1317
+ { &fnv_test_str[190], (Fnv64_t) {0x53fb69b0UL, 0x1bcd8373UL} },
1318
+ { &fnv_test_str[191], (Fnv64_t) {0x59eff180UL, 0x46f992fcUL} },
1319
+ { &fnv_test_str[192], (Fnv64_t) {0x29ae79c0UL, 0x497678eeUL} },
1320
+ { &fnv_test_str[193], (Fnv64_t) {0x0ddd4450UL, 0xb10a6228UL} },
1321
+ { &fnv_test_str[194], (Fnv64_t) {0xb4d68140UL, 0x35eb228dUL} },
1322
+ { &fnv_test_str[195], (Fnv64_t) {0xd9470870UL, 0x8b350e86UL} },
1323
+ { &fnv_test_str[196], (Fnv64_t) {0x812e9540UL, 0x4e1fbdb2UL} },
1324
+ { &fnv_test_str[197], (Fnv64_t) {0xf69a0600UL, 0x051e080dUL} },
1325
+ { &fnv_test_str[198], (Fnv64_t) {0x54dadb40UL, 0x45e1e8aeUL} },
1326
+ { &fnv_test_str[199], (Fnv64_t) {0x00000000UL, 0x00000000UL} },
1327
+ { &fnv_test_str[200], (Fnv64_t) {0x90557064UL, 0xcd738062UL} },
1328
+ { &fnv_test_str[201], (Fnv64_t) {0xbe0317c8UL, 0x2613a37bUL} },
1329
+ { &fnv_test_str[202], (Fnv64_t) {0xcf2ae5e4UL, 0x1480e21fUL} },
1330
+ { NULL, (Fnv64_t) {0,0} }
1331
+ };
1332
+ #endif /* HAVE_64BIT_LONG_LONG */
1333
+
1334
+ /* FNV-1 64 bit test vectors */
1335
+ #if defined(HAVE_64BIT_LONG_LONG)
1336
+ struct fnv1_64_test_vector fnv1_64_vector[] = {
1337
+ { &fnv_test_str[0], (Fnv64_t) 0xcbf29ce484222325ULL },
1338
+ { &fnv_test_str[1], (Fnv64_t) 0xaf63bd4c8601b7beULL },
1339
+ { &fnv_test_str[2], (Fnv64_t) 0xaf63bd4c8601b7bdULL },
1340
+ { &fnv_test_str[3], (Fnv64_t) 0xaf63bd4c8601b7bcULL },
1341
+ { &fnv_test_str[4], (Fnv64_t) 0xaf63bd4c8601b7bbULL },
1342
+ { &fnv_test_str[5], (Fnv64_t) 0xaf63bd4c8601b7baULL },
1343
+ { &fnv_test_str[6], (Fnv64_t) 0xaf63bd4c8601b7b9ULL },
1344
+ { &fnv_test_str[7], (Fnv64_t) 0x08326207b4eb2f34ULL },
1345
+ { &fnv_test_str[8], (Fnv64_t) 0xd8cbc7186ba13533ULL },
1346
+ { &fnv_test_str[9], (Fnv64_t) 0x0378817ee2ed65cbULL },
1347
+ { &fnv_test_str[10], (Fnv64_t) 0xd329d59b9963f790ULL },
1348
+ { &fnv_test_str[11], (Fnv64_t) 0x340d8765a4dda9c2ULL },
1349
+ { &fnv_test_str[12], (Fnv64_t) 0xaf63bd4c8601b7dfULL },
1350
+ { &fnv_test_str[13], (Fnv64_t) 0x08326707b4eb37daULL },
1351
+ { &fnv_test_str[14], (Fnv64_t) 0x08326607b4eb3627ULL },
1352
+ { &fnv_test_str[15], (Fnv64_t) 0x08326507b4eb3474ULL },
1353
+ { &fnv_test_str[16], (Fnv64_t) 0x08326407b4eb32c1ULL },
1354
+ { &fnv_test_str[17], (Fnv64_t) 0x08326307b4eb310eULL },
1355
+ { &fnv_test_str[18], (Fnv64_t) 0x08326207b4eb2f5bULL },
1356
+ { &fnv_test_str[19], (Fnv64_t) 0xd8cbc7186ba1355cULL },
1357
+ { &fnv_test_str[20], (Fnv64_t) 0x0378817ee2ed65a9ULL },
1358
+ { &fnv_test_str[21], (Fnv64_t) 0xd329d59b9963f7f1ULL },
1359
+ { &fnv_test_str[22], (Fnv64_t) 0x340d8765a4dda9b0ULL },
1360
+ { &fnv_test_str[23], (Fnv64_t) 0x50a6d3b724a774a6ULL },
1361
+ { &fnv_test_str[24], (Fnv64_t) 0x08326507b4eb341cULL },
1362
+ { &fnv_test_str[25], (Fnv64_t) 0xd8d5c8186ba98bfbULL },
1363
+ { &fnv_test_str[26], (Fnv64_t) 0x1ccefc7ef118dbefULL },
1364
+ { &fnv_test_str[27], (Fnv64_t) 0x0c92fab3ad3db77aULL },
1365
+ { &fnv_test_str[28], (Fnv64_t) 0x9b77794f5fdec421ULL },
1366
+ { &fnv_test_str[29], (Fnv64_t) 0x0ac742dfe7874433ULL },
1367
+ { &fnv_test_str[30], (Fnv64_t) 0xd7dad5766ad8e2deULL },
1368
+ { &fnv_test_str[31], (Fnv64_t) 0xa1bb96378e897f5bULL },
1369
+ { &fnv_test_str[32], (Fnv64_t) 0x5b3f9b6733a367d2ULL },
1370
+ { &fnv_test_str[33], (Fnv64_t) 0xb07ce25cbea969f6ULL },
1371
+ { &fnv_test_str[34], (Fnv64_t) 0x8d9e9997f9df0d6aULL },
1372
+ { &fnv_test_str[35], (Fnv64_t) 0x838c673d9603cb7bULL },
1373
+ { &fnv_test_str[36], (Fnv64_t) 0x8b5ee8a5e872c273ULL },
1374
+ { &fnv_test_str[37], (Fnv64_t) 0x4507c4e9fb00690cULL },
1375
+ { &fnv_test_str[38], (Fnv64_t) 0x4c9ca59581b27f45ULL },
1376
+ { &fnv_test_str[39], (Fnv64_t) 0xe0aca20b624e4235ULL },
1377
+ { &fnv_test_str[40], (Fnv64_t) 0xd8d5c8186ba98b94ULL },
1378
+ { &fnv_test_str[41], (Fnv64_t) 0x1ccefc7ef118db81ULL },
1379
+ { &fnv_test_str[42], (Fnv64_t) 0x0c92fab3ad3db71dULL },
1380
+ { &fnv_test_str[43], (Fnv64_t) 0x9b77794f5fdec44eULL },
1381
+ { &fnv_test_str[44], (Fnv64_t) 0x0ac742dfe7874413ULL },
1382
+ { &fnv_test_str[45], (Fnv64_t) 0xd7dad5766ad8e2a9ULL },
1383
+ { &fnv_test_str[46], (Fnv64_t) 0xa1bb96378e897f3aULL },
1384
+ { &fnv_test_str[47], (Fnv64_t) 0x5b3f9b6733a367a1ULL },
1385
+ { &fnv_test_str[48], (Fnv64_t) 0xb07ce25cbea969d6ULL },
1386
+ { &fnv_test_str[49], (Fnv64_t) 0x8d9e9997f9df0d02ULL },
1387
+ { &fnv_test_str[50], (Fnv64_t) 0x838c673d9603cb1eULL },
1388
+ { &fnv_test_str[51], (Fnv64_t) 0x8b5ee8a5e872c201ULL },
1389
+ { &fnv_test_str[52], (Fnv64_t) 0x4507c4e9fb006969ULL },
1390
+ { &fnv_test_str[53], (Fnv64_t) 0x4c9ca59581b27f64ULL },
1391
+ { &fnv_test_str[54], (Fnv64_t) 0xe0aca20b624e423fULL },
1392
+ { &fnv_test_str[55], (Fnv64_t) 0x13998e580afa800fULL },
1393
+ { &fnv_test_str[56], (Fnv64_t) 0x08326507b4eb3401ULL },
1394
+ { &fnv_test_str[57], (Fnv64_t) 0xd8d5ad186ba95dc1ULL },
1395
+ { &fnv_test_str[58], (Fnv64_t) 0x1c72e17ef0ca4e97ULL },
1396
+ { &fnv_test_str[59], (Fnv64_t) 0x2183c1b327c38ae6ULL },
1397
+ { &fnv_test_str[60], (Fnv64_t) 0xb66d096c914504f2ULL },
1398
+ { &fnv_test_str[61], (Fnv64_t) 0x404bf57ad8476757ULL },
1399
+ { &fnv_test_str[62], (Fnv64_t) 0x887976bd815498bbULL },
1400
+ { &fnv_test_str[63], (Fnv64_t) 0x3afd7f02c2bf85a5ULL },
1401
+ { &fnv_test_str[64], (Fnv64_t) 0xfc4476b0eb70177fULL },
1402
+ { &fnv_test_str[65], (Fnv64_t) 0x186d2da00f77ecbaULL },
1403
+ { &fnv_test_str[66], (Fnv64_t) 0xf97140fa48c74066ULL },
1404
+ { &fnv_test_str[67], (Fnv64_t) 0xa2b1cf49aa926d37ULL },
1405
+ { &fnv_test_str[68], (Fnv64_t) 0x0690712cd6cf940cULL },
1406
+ { &fnv_test_str[69], (Fnv64_t) 0xf7045b3102b8906eULL },
1407
+ { &fnv_test_str[70], (Fnv64_t) 0xd8d5ad186ba95db3ULL },
1408
+ { &fnv_test_str[71], (Fnv64_t) 0x1c72e17ef0ca4ef3ULL },
1409
+ { &fnv_test_str[72], (Fnv64_t) 0x2183c1b327c38a95ULL },
1410
+ { &fnv_test_str[73], (Fnv64_t) 0xb66d096c914504d2ULL },
1411
+ { &fnv_test_str[74], (Fnv64_t) 0x404bf57ad8476736ULL },
1412
+ { &fnv_test_str[75], (Fnv64_t) 0x887976bd815498d5ULL },
1413
+ { &fnv_test_str[76], (Fnv64_t) 0x3afd7f02c2bf85c1ULL },
1414
+ { &fnv_test_str[77], (Fnv64_t) 0xfc4476b0eb70175fULL },
1415
+ { &fnv_test_str[78], (Fnv64_t) 0x186d2da00f77eccdULL },
1416
+ { &fnv_test_str[79], (Fnv64_t) 0xf97140fa48c7400eULL },
1417
+ { &fnv_test_str[80], (Fnv64_t) 0xa2b1cf49aa926d52ULL },
1418
+ { &fnv_test_str[81], (Fnv64_t) 0x0690712cd6cf9475ULL },
1419
+ { &fnv_test_str[82], (Fnv64_t) 0xf7045b3102b89064ULL },
1420
+ { &fnv_test_str[83], (Fnv64_t) 0x74f762479f9d6aeaULL },
1421
+ { &fnv_test_str[84], (Fnv64_t) 0x08326007b4eb2b9cULL },
1422
+ { &fnv_test_str[85], (Fnv64_t) 0xd8c4c9186b9b1a14ULL },
1423
+ { &fnv_test_str[86], (Fnv64_t) 0x7b495389bdbdd4c7ULL },
1424
+ { &fnv_test_str[87], (Fnv64_t) 0x3b6dba0d69908e25ULL },
1425
+ { &fnv_test_str[88], (Fnv64_t) 0xd6b2b17bf4b71261ULL },
1426
+ { &fnv_test_str[89], (Fnv64_t) 0x447bfb7f98e615b5ULL },
1427
+ { &fnv_test_str[90], (Fnv64_t) 0xd6b2b17bf4b71262ULL },
1428
+ { &fnv_test_str[91], (Fnv64_t) 0x3bd2807f93fe1660ULL },
1429
+ { &fnv_test_str[92], (Fnv64_t) 0xd6b2b17bf4b71263ULL },
1430
+ { &fnv_test_str[93], (Fnv64_t) 0x3329057f8f16170bULL },
1431
+ { &fnv_test_str[94], (Fnv64_t) 0xd6b2b17bf4b71264ULL },
1432
+ { &fnv_test_str[95], (Fnv64_t) 0x2a7f8a7f8a2e19b6ULL },
1433
+ { &fnv_test_str[96], (Fnv64_t) 0x23d3767e64b2f98aULL },
1434
+ { &fnv_test_str[97], (Fnv64_t) 0xff768d7e4f9d86a4ULL },
1435
+ { &fnv_test_str[98], (Fnv64_t) 0x23d3767e64b2f984ULL },
1436
+ { &fnv_test_str[99], (Fnv64_t) 0xccd1837e334e4aa6ULL },
1437
+ { &fnv_test_str[100], (Fnv64_t) 0x23d3767e64b2f99aULL },
1438
+ { &fnv_test_str[101], (Fnv64_t) 0x7691fd7e028f6754ULL },
1439
+ { &fnv_test_str[102], (Fnv64_t) 0x34ad3b1041204318ULL },
1440
+ { &fnv_test_str[103], (Fnv64_t) 0xa29e749ea9d201c8ULL },
1441
+ { &fnv_test_str[104], (Fnv64_t) 0x34ad3b104120431bULL },
1442
+ { &fnv_test_str[105], (Fnv64_t) 0xa29e779ea9d206e1ULL },
1443
+ { &fnv_test_str[106], (Fnv64_t) 0x34ad3b104120431aULL },
1444
+ { &fnv_test_str[107], (Fnv64_t) 0xa29e769ea9d2052eULL },
1445
+ { &fnv_test_str[108], (Fnv64_t) 0x02a17ebca4aa3497ULL },
1446
+ { &fnv_test_str[109], (Fnv64_t) 0x229ef18bcd375c95ULL },
1447
+ { &fnv_test_str[110], (Fnv64_t) 0x02a17dbca4aa32c8ULL },
1448
+ { &fnv_test_str[111], (Fnv64_t) 0x229b6f8bcd3449d8ULL },
1449
+ { &fnv_test_str[112], (Fnv64_t) 0x02a184bca4aa3ed5ULL },
1450
+ { &fnv_test_str[113], (Fnv64_t) 0x22b3618bcd48c3efULL },
1451
+ { &fnv_test_str[114], (Fnv64_t) 0x5c2c346706186f36ULL },
1452
+ { &fnv_test_str[115], (Fnv64_t) 0xb78c410f5b84f8c2ULL },
1453
+ { &fnv_test_str[116], (Fnv64_t) 0xed9478212b267395ULL },
1454
+ { &fnv_test_str[117], (Fnv64_t) 0xd9bbb55c5256662fULL },
1455
+ { &fnv_test_str[118], (Fnv64_t) 0x8c54f0203249438aULL },
1456
+ { &fnv_test_str[119], (Fnv64_t) 0xbd9790b5727dc37eULL },
1457
+ { &fnv_test_str[120], (Fnv64_t) 0xa64e5f36c9e2b0e3ULL },
1458
+ { &fnv_test_str[121], (Fnv64_t) 0x8fd0680da3088a04ULL },
1459
+ { &fnv_test_str[122], (Fnv64_t) 0x67aad32c078284ccULL },
1460
+ { &fnv_test_str[123], (Fnv64_t) 0xb37d55d81c57b331ULL },
1461
+ { &fnv_test_str[124], (Fnv64_t) 0x55ac0f3829057c43ULL },
1462
+ { &fnv_test_str[125], (Fnv64_t) 0xcb27f4b8e1b6cc20ULL },
1463
+ { &fnv_test_str[126], (Fnv64_t) 0x26caf88bcbef2d19ULL },
1464
+ { &fnv_test_str[127], (Fnv64_t) 0x8e6e063b97e61b8fULL },
1465
+ { &fnv_test_str[128], (Fnv64_t) 0xb42750f7f3b7c37eULL },
1466
+ { &fnv_test_str[129], (Fnv64_t) 0xf3c6ba64cf7ca99bULL },
1467
+ { &fnv_test_str[130], (Fnv64_t) 0xebfb69b427ea80feULL },
1468
+ { &fnv_test_str[131], (Fnv64_t) 0x39b50c3ed970f46cULL },
1469
+ { &fnv_test_str[132], (Fnv64_t) 0x5b9b177aa3eb3e8aULL },
1470
+ { &fnv_test_str[133], (Fnv64_t) 0x6510063ecf4ec903ULL },
1471
+ { &fnv_test_str[134], (Fnv64_t) 0x2b3bbd2c00797c7aULL },
1472
+ { &fnv_test_str[135], (Fnv64_t) 0xf1d6204ff5cb4aa7ULL },
1473
+ { &fnv_test_str[136], (Fnv64_t) 0x4836e27ccf099f38ULL },
1474
+ { &fnv_test_str[137], (Fnv64_t) 0x82efbb0dd073b44dULL },
1475
+ { &fnv_test_str[138], (Fnv64_t) 0x4a80c282ffd7d4c6ULL },
1476
+ { &fnv_test_str[139], (Fnv64_t) 0x305d1a9c9ee43bdfULL },
1477
+ { &fnv_test_str[140], (Fnv64_t) 0x15c366948ffc6997ULL },
1478
+ { &fnv_test_str[141], (Fnv64_t) 0x80153ae218916e7bULL },
1479
+ { &fnv_test_str[142], (Fnv64_t) 0xfa23e2bdf9e2a9e1ULL },
1480
+ { &fnv_test_str[143], (Fnv64_t) 0xd47e8d8a2333c6deULL },
1481
+ { &fnv_test_str[144], (Fnv64_t) 0x7e128095f688b056ULL },
1482
+ { &fnv_test_str[145], (Fnv64_t) 0x2f5356890efcedabULL },
1483
+ { &fnv_test_str[146], (Fnv64_t) 0x95c2b383014f55c5ULL },
1484
+ { &fnv_test_str[147], (Fnv64_t) 0x4727a5339ce6070fULL },
1485
+ { &fnv_test_str[148], (Fnv64_t) 0xb0555ecd575108e9ULL },
1486
+ { &fnv_test_str[149], (Fnv64_t) 0x48d785770bb4af37ULL },
1487
+ { &fnv_test_str[150], (Fnv64_t) 0x09d4701c12af02b1ULL },
1488
+ { &fnv_test_str[151], (Fnv64_t) 0x79f031e78f3cf62eULL },
1489
+ { &fnv_test_str[152], (Fnv64_t) 0x52a1ee85db1b5a94ULL },
1490
+ { &fnv_test_str[153], (Fnv64_t) 0x6bd95b2eb37fa6b8ULL },
1491
+ { &fnv_test_str[154], (Fnv64_t) 0x74971b7077aef85dULL },
1492
+ { &fnv_test_str[155], (Fnv64_t) 0xb4e4fae2ffcc1aadULL },
1493
+ { &fnv_test_str[156], (Fnv64_t) 0x2bd48bd898b8f63aULL },
1494
+ { &fnv_test_str[157], (Fnv64_t) 0xe9966ac1556257f6ULL },
1495
+ { &fnv_test_str[158], (Fnv64_t) 0x92a3d1cd078ba293ULL },
1496
+ { &fnv_test_str[159], (Fnv64_t) 0xf81175a482e20ab8ULL },
1497
+ { &fnv_test_str[160], (Fnv64_t) 0x5bbb3de722e73048ULL },
1498
+ { &fnv_test_str[161], (Fnv64_t) 0x6b4f363492b9f2beULL },
1499
+ { &fnv_test_str[162], (Fnv64_t) 0xc2d559df73d59875ULL },
1500
+ { &fnv_test_str[163], (Fnv64_t) 0xf75f62284bc7a8c2ULL },
1501
+ { &fnv_test_str[164], (Fnv64_t) 0xda8dd8e116a9f1ccULL },
1502
+ { &fnv_test_str[165], (Fnv64_t) 0xbdc1e6ab76057885ULL },
1503
+ { &fnv_test_str[166], (Fnv64_t) 0xfec6a4238a1224a0ULL },
1504
+ { &fnv_test_str[167], (Fnv64_t) 0xc03f40f3223e290eULL },
1505
+ { &fnv_test_str[168], (Fnv64_t) 0x1ed21673466ffda9ULL },
1506
+ { &fnv_test_str[169], (Fnv64_t) 0xdf70f906bb0dd2afULL },
1507
+ { &fnv_test_str[170], (Fnv64_t) 0xf3dcda369f2af666ULL },
1508
+ { &fnv_test_str[171], (Fnv64_t) 0x9ebb11573cdcebdeULL },
1509
+ { &fnv_test_str[172], (Fnv64_t) 0x81c72d9077fedca0ULL },
1510
+ { &fnv_test_str[173], (Fnv64_t) 0x0ec074a31be5fb15ULL },
1511
+ { &fnv_test_str[174], (Fnv64_t) 0x2a8b3280b6c48f20ULL },
1512
+ { &fnv_test_str[175], (Fnv64_t) 0xfd31777513309344ULL },
1513
+ { &fnv_test_str[176], (Fnv64_t) 0x194534a86ad006b6ULL },
1514
+ { &fnv_test_str[177], (Fnv64_t) 0x3be6fdf46e0cfe12ULL },
1515
+ { &fnv_test_str[178], (Fnv64_t) 0x017cc137a07eb057ULL },
1516
+ { &fnv_test_str[179], (Fnv64_t) 0x9428fc6e7d26b54dULL },
1517
+ { &fnv_test_str[180], (Fnv64_t) 0x9aaa2e3603ef8ad7ULL },
1518
+ { &fnv_test_str[181], (Fnv64_t) 0x82c6d3f3a0ccdf7dULL },
1519
+ { &fnv_test_str[182], (Fnv64_t) 0xc86eeea00cf09b65ULL },
1520
+ { &fnv_test_str[183], (Fnv64_t) 0x705f8189dbb58299ULL },
1521
+ { &fnv_test_str[184], (Fnv64_t) 0x415a7f554391ca69ULL },
1522
+ { &fnv_test_str[185], (Fnv64_t) 0xcfe3d49fa2bdc555ULL },
1523
+ { &fnv_test_str[186], (Fnv64_t) 0xf0f9c56039b25191ULL },
1524
+ { &fnv_test_str[187], (Fnv64_t) 0x7075cb6abd1d32d9ULL },
1525
+ { &fnv_test_str[188], (Fnv64_t) 0x43c94e2c8b277509ULL },
1526
+ { &fnv_test_str[189], (Fnv64_t) 0x3cbfd4e4ea670359ULL },
1527
+ { &fnv_test_str[190], (Fnv64_t) 0xc05887810f4d019dULL },
1528
+ { &fnv_test_str[191], (Fnv64_t) 0x14468ff93ac22dc5ULL },
1529
+ { &fnv_test_str[192], (Fnv64_t) 0xebed699589d99c05ULL },
1530
+ { &fnv_test_str[193], (Fnv64_t) 0x6d99f6df321ca5d5ULL },
1531
+ { &fnv_test_str[194], (Fnv64_t) 0x0cd410d08c36d625ULL },
1532
+ { &fnv_test_str[195], (Fnv64_t) 0xef1b2a2c86831d35ULL },
1533
+ { &fnv_test_str[196], (Fnv64_t) 0x3b349c4d69ee5f05ULL },
1534
+ { &fnv_test_str[197], (Fnv64_t) 0x55248ce88f45f035ULL },
1535
+ { &fnv_test_str[198], (Fnv64_t) 0xaa69ca6a18a4c885ULL },
1536
+ { &fnv_test_str[199], (Fnv64_t) 0x1fe3fce62bd816b5ULL },
1537
+ { &fnv_test_str[200], (Fnv64_t) 0x0289a488a8df69d9ULL },
1538
+ { &fnv_test_str[201], (Fnv64_t) 0x15e96e1613df98b5ULL },
1539
+ { &fnv_test_str[202], (Fnv64_t) 0xe6be57375ad89b99ULL },
1540
+ { NULL, (Fnv64_t) 0 }
1541
+ };
1542
+ #else /* HAVE_64BIT_LONG_LONG */
1543
+ struct fnv1_64_test_vector fnv1_64_vector[] = {
1544
+ { &fnv_test_str[0], (Fnv64_t) {0x84222325UL, 0xcbf29ce4UL} },
1545
+ { &fnv_test_str[1], (Fnv64_t) {0x8601b7beUL, 0xaf63bd4cUL} },
1546
+ { &fnv_test_str[2], (Fnv64_t) {0x8601b7bdUL, 0xaf63bd4cUL} },
1547
+ { &fnv_test_str[3], (Fnv64_t) {0x8601b7bcUL, 0xaf63bd4cUL} },
1548
+ { &fnv_test_str[4], (Fnv64_t) {0x8601b7bbUL, 0xaf63bd4cUL} },
1549
+ { &fnv_test_str[5], (Fnv64_t) {0x8601b7baUL, 0xaf63bd4cUL} },
1550
+ { &fnv_test_str[6], (Fnv64_t) {0x8601b7b9UL, 0xaf63bd4cUL} },
1551
+ { &fnv_test_str[7], (Fnv64_t) {0xb4eb2f34UL, 0x08326207UL} },
1552
+ { &fnv_test_str[8], (Fnv64_t) {0x6ba13533UL, 0xd8cbc718UL} },
1553
+ { &fnv_test_str[9], (Fnv64_t) {0xe2ed65cbUL, 0x0378817eUL} },
1554
+ { &fnv_test_str[10], (Fnv64_t) {0x9963f790UL, 0xd329d59bUL} },
1555
+ { &fnv_test_str[11], (Fnv64_t) {0xa4dda9c2UL, 0x340d8765UL} },
1556
+ { &fnv_test_str[12], (Fnv64_t) {0x8601b7dfUL, 0xaf63bd4cUL} },
1557
+ { &fnv_test_str[13], (Fnv64_t) {0xb4eb37daUL, 0x08326707UL} },
1558
+ { &fnv_test_str[14], (Fnv64_t) {0xb4eb3627UL, 0x08326607UL} },
1559
+ { &fnv_test_str[15], (Fnv64_t) {0xb4eb3474UL, 0x08326507UL} },
1560
+ { &fnv_test_str[16], (Fnv64_t) {0xb4eb32c1UL, 0x08326407UL} },
1561
+ { &fnv_test_str[17], (Fnv64_t) {0xb4eb310eUL, 0x08326307UL} },
1562
+ { &fnv_test_str[18], (Fnv64_t) {0xb4eb2f5bUL, 0x08326207UL} },
1563
+ { &fnv_test_str[19], (Fnv64_t) {0x6ba1355cUL, 0xd8cbc718UL} },
1564
+ { &fnv_test_str[20], (Fnv64_t) {0xe2ed65a9UL, 0x0378817eUL} },
1565
+ { &fnv_test_str[21], (Fnv64_t) {0x9963f7f1UL, 0xd329d59bUL} },
1566
+ { &fnv_test_str[22], (Fnv64_t) {0xa4dda9b0UL, 0x340d8765UL} },
1567
+ { &fnv_test_str[23], (Fnv64_t) {0x24a774a6UL, 0x50a6d3b7UL} },
1568
+ { &fnv_test_str[24], (Fnv64_t) {0xb4eb341cUL, 0x08326507UL} },
1569
+ { &fnv_test_str[25], (Fnv64_t) {0x6ba98bfbUL, 0xd8d5c818UL} },
1570
+ { &fnv_test_str[26], (Fnv64_t) {0xf118dbefUL, 0x1ccefc7eUL} },
1571
+ { &fnv_test_str[27], (Fnv64_t) {0xad3db77aUL, 0x0c92fab3UL} },
1572
+ { &fnv_test_str[28], (Fnv64_t) {0x5fdec421UL, 0x9b77794fUL} },
1573
+ { &fnv_test_str[29], (Fnv64_t) {0xe7874433UL, 0x0ac742dfUL} },
1574
+ { &fnv_test_str[30], (Fnv64_t) {0x6ad8e2deUL, 0xd7dad576UL} },
1575
+ { &fnv_test_str[31], (Fnv64_t) {0x8e897f5bUL, 0xa1bb9637UL} },
1576
+ { &fnv_test_str[32], (Fnv64_t) {0x33a367d2UL, 0x5b3f9b67UL} },
1577
+ { &fnv_test_str[33], (Fnv64_t) {0xbea969f6UL, 0xb07ce25cUL} },
1578
+ { &fnv_test_str[34], (Fnv64_t) {0xf9df0d6aUL, 0x8d9e9997UL} },
1579
+ { &fnv_test_str[35], (Fnv64_t) {0x9603cb7bUL, 0x838c673dUL} },
1580
+ { &fnv_test_str[36], (Fnv64_t) {0xe872c273UL, 0x8b5ee8a5UL} },
1581
+ { &fnv_test_str[37], (Fnv64_t) {0xfb00690cUL, 0x4507c4e9UL} },
1582
+ { &fnv_test_str[38], (Fnv64_t) {0x81b27f45UL, 0x4c9ca595UL} },
1583
+ { &fnv_test_str[39], (Fnv64_t) {0x624e4235UL, 0xe0aca20bUL} },
1584
+ { &fnv_test_str[40], (Fnv64_t) {0x6ba98b94UL, 0xd8d5c818UL} },
1585
+ { &fnv_test_str[41], (Fnv64_t) {0xf118db81UL, 0x1ccefc7eUL} },
1586
+ { &fnv_test_str[42], (Fnv64_t) {0xad3db71dUL, 0x0c92fab3UL} },
1587
+ { &fnv_test_str[43], (Fnv64_t) {0x5fdec44eUL, 0x9b77794fUL} },
1588
+ { &fnv_test_str[44], (Fnv64_t) {0xe7874413UL, 0x0ac742dfUL} },
1589
+ { &fnv_test_str[45], (Fnv64_t) {0x6ad8e2a9UL, 0xd7dad576UL} },
1590
+ { &fnv_test_str[46], (Fnv64_t) {0x8e897f3aUL, 0xa1bb9637UL} },
1591
+ { &fnv_test_str[47], (Fnv64_t) {0x33a367a1UL, 0x5b3f9b67UL} },
1592
+ { &fnv_test_str[48], (Fnv64_t) {0xbea969d6UL, 0xb07ce25cUL} },
1593
+ { &fnv_test_str[49], (Fnv64_t) {0xf9df0d02UL, 0x8d9e9997UL} },
1594
+ { &fnv_test_str[50], (Fnv64_t) {0x9603cb1eUL, 0x838c673dUL} },
1595
+ { &fnv_test_str[51], (Fnv64_t) {0xe872c201UL, 0x8b5ee8a5UL} },
1596
+ { &fnv_test_str[52], (Fnv64_t) {0xfb006969UL, 0x4507c4e9UL} },
1597
+ { &fnv_test_str[53], (Fnv64_t) {0x81b27f64UL, 0x4c9ca595UL} },
1598
+ { &fnv_test_str[54], (Fnv64_t) {0x624e423fUL, 0xe0aca20bUL} },
1599
+ { &fnv_test_str[55], (Fnv64_t) {0x0afa800fUL, 0x13998e58UL} },
1600
+ { &fnv_test_str[56], (Fnv64_t) {0xb4eb3401UL, 0x08326507UL} },
1601
+ { &fnv_test_str[57], (Fnv64_t) {0x6ba95dc1UL, 0xd8d5ad18UL} },
1602
+ { &fnv_test_str[58], (Fnv64_t) {0xf0ca4e97UL, 0x1c72e17eUL} },
1603
+ { &fnv_test_str[59], (Fnv64_t) {0x27c38ae6UL, 0x2183c1b3UL} },
1604
+ { &fnv_test_str[60], (Fnv64_t) {0x914504f2UL, 0xb66d096cUL} },
1605
+ { &fnv_test_str[61], (Fnv64_t) {0xd8476757UL, 0x404bf57aUL} },
1606
+ { &fnv_test_str[62], (Fnv64_t) {0x815498bbUL, 0x887976bdUL} },
1607
+ { &fnv_test_str[63], (Fnv64_t) {0xc2bf85a5UL, 0x3afd7f02UL} },
1608
+ { &fnv_test_str[64], (Fnv64_t) {0xeb70177fUL, 0xfc4476b0UL} },
1609
+ { &fnv_test_str[65], (Fnv64_t) {0x0f77ecbaUL, 0x186d2da0UL} },
1610
+ { &fnv_test_str[66], (Fnv64_t) {0x48c74066UL, 0xf97140faUL} },
1611
+ { &fnv_test_str[67], (Fnv64_t) {0xaa926d37UL, 0xa2b1cf49UL} },
1612
+ { &fnv_test_str[68], (Fnv64_t) {0xd6cf940cUL, 0x0690712cUL} },
1613
+ { &fnv_test_str[69], (Fnv64_t) {0x02b8906eUL, 0xf7045b31UL} },
1614
+ { &fnv_test_str[70], (Fnv64_t) {0x6ba95db3UL, 0xd8d5ad18UL} },
1615
+ { &fnv_test_str[71], (Fnv64_t) {0xf0ca4ef3UL, 0x1c72e17eUL} },
1616
+ { &fnv_test_str[72], (Fnv64_t) {0x27c38a95UL, 0x2183c1b3UL} },
1617
+ { &fnv_test_str[73], (Fnv64_t) {0x914504d2UL, 0xb66d096cUL} },
1618
+ { &fnv_test_str[74], (Fnv64_t) {0xd8476736UL, 0x404bf57aUL} },
1619
+ { &fnv_test_str[75], (Fnv64_t) {0x815498d5UL, 0x887976bdUL} },
1620
+ { &fnv_test_str[76], (Fnv64_t) {0xc2bf85c1UL, 0x3afd7f02UL} },
1621
+ { &fnv_test_str[77], (Fnv64_t) {0xeb70175fUL, 0xfc4476b0UL} },
1622
+ { &fnv_test_str[78], (Fnv64_t) {0x0f77eccdUL, 0x186d2da0UL} },
1623
+ { &fnv_test_str[79], (Fnv64_t) {0x48c7400eUL, 0xf97140faUL} },
1624
+ { &fnv_test_str[80], (Fnv64_t) {0xaa926d52UL, 0xa2b1cf49UL} },
1625
+ { &fnv_test_str[81], (Fnv64_t) {0xd6cf9475UL, 0x0690712cUL} },
1626
+ { &fnv_test_str[82], (Fnv64_t) {0x02b89064UL, 0xf7045b31UL} },
1627
+ { &fnv_test_str[83], (Fnv64_t) {0x9f9d6aeaUL, 0x74f76247UL} },
1628
+ { &fnv_test_str[84], (Fnv64_t) {0xb4eb2b9cUL, 0x08326007UL} },
1629
+ { &fnv_test_str[85], (Fnv64_t) {0x6b9b1a14UL, 0xd8c4c918UL} },
1630
+ { &fnv_test_str[86], (Fnv64_t) {0xbdbdd4c7UL, 0x7b495389UL} },
1631
+ { &fnv_test_str[87], (Fnv64_t) {0x69908e25UL, 0x3b6dba0dUL} },
1632
+ { &fnv_test_str[88], (Fnv64_t) {0xf4b71261UL, 0xd6b2b17bUL} },
1633
+ { &fnv_test_str[89], (Fnv64_t) {0x98e615b5UL, 0x447bfb7fUL} },
1634
+ { &fnv_test_str[90], (Fnv64_t) {0xf4b71262UL, 0xd6b2b17bUL} },
1635
+ { &fnv_test_str[91], (Fnv64_t) {0x93fe1660UL, 0x3bd2807fUL} },
1636
+ { &fnv_test_str[92], (Fnv64_t) {0xf4b71263UL, 0xd6b2b17bUL} },
1637
+ { &fnv_test_str[93], (Fnv64_t) {0x8f16170bUL, 0x3329057fUL} },
1638
+ { &fnv_test_str[94], (Fnv64_t) {0xf4b71264UL, 0xd6b2b17bUL} },
1639
+ { &fnv_test_str[95], (Fnv64_t) {0x8a2e19b6UL, 0x2a7f8a7fUL} },
1640
+ { &fnv_test_str[96], (Fnv64_t) {0x64b2f98aUL, 0x23d3767eUL} },
1641
+ { &fnv_test_str[97], (Fnv64_t) {0x4f9d86a4UL, 0xff768d7eUL} },
1642
+ { &fnv_test_str[98], (Fnv64_t) {0x64b2f984UL, 0x23d3767eUL} },
1643
+ { &fnv_test_str[99], (Fnv64_t) {0x334e4aa6UL, 0xccd1837eUL} },
1644
+ { &fnv_test_str[100], (Fnv64_t) {0x64b2f99aUL, 0x23d3767eUL} },
1645
+ { &fnv_test_str[101], (Fnv64_t) {0x028f6754UL, 0x7691fd7eUL} },
1646
+ { &fnv_test_str[102], (Fnv64_t) {0x41204318UL, 0x34ad3b10UL} },
1647
+ { &fnv_test_str[103], (Fnv64_t) {0xa9d201c8UL, 0xa29e749eUL} },
1648
+ { &fnv_test_str[104], (Fnv64_t) {0x4120431bUL, 0x34ad3b10UL} },
1649
+ { &fnv_test_str[105], (Fnv64_t) {0xa9d206e1UL, 0xa29e779eUL} },
1650
+ { &fnv_test_str[106], (Fnv64_t) {0x4120431aUL, 0x34ad3b10UL} },
1651
+ { &fnv_test_str[107], (Fnv64_t) {0xa9d2052eUL, 0xa29e769eUL} },
1652
+ { &fnv_test_str[108], (Fnv64_t) {0xa4aa3497UL, 0x02a17ebcUL} },
1653
+ { &fnv_test_str[109], (Fnv64_t) {0xcd375c95UL, 0x229ef18bUL} },
1654
+ { &fnv_test_str[110], (Fnv64_t) {0xa4aa32c8UL, 0x02a17dbcUL} },
1655
+ { &fnv_test_str[111], (Fnv64_t) {0xcd3449d8UL, 0x229b6f8bUL} },
1656
+ { &fnv_test_str[112], (Fnv64_t) {0xa4aa3ed5UL, 0x02a184bcUL} },
1657
+ { &fnv_test_str[113], (Fnv64_t) {0xcd48c3efUL, 0x22b3618bUL} },
1658
+ { &fnv_test_str[114], (Fnv64_t) {0x06186f36UL, 0x5c2c3467UL} },
1659
+ { &fnv_test_str[115], (Fnv64_t) {0x5b84f8c2UL, 0xb78c410fUL} },
1660
+ { &fnv_test_str[116], (Fnv64_t) {0x2b267395UL, 0xed947821UL} },
1661
+ { &fnv_test_str[117], (Fnv64_t) {0x5256662fUL, 0xd9bbb55cUL} },
1662
+ { &fnv_test_str[118], (Fnv64_t) {0x3249438aUL, 0x8c54f020UL} },
1663
+ { &fnv_test_str[119], (Fnv64_t) {0x727dc37eUL, 0xbd9790b5UL} },
1664
+ { &fnv_test_str[120], (Fnv64_t) {0xc9e2b0e3UL, 0xa64e5f36UL} },
1665
+ { &fnv_test_str[121], (Fnv64_t) {0xa3088a04UL, 0x8fd0680dUL} },
1666
+ { &fnv_test_str[122], (Fnv64_t) {0x078284ccUL, 0x67aad32cUL} },
1667
+ { &fnv_test_str[123], (Fnv64_t) {0x1c57b331UL, 0xb37d55d8UL} },
1668
+ { &fnv_test_str[124], (Fnv64_t) {0x29057c43UL, 0x55ac0f38UL} },
1669
+ { &fnv_test_str[125], (Fnv64_t) {0xe1b6cc20UL, 0xcb27f4b8UL} },
1670
+ { &fnv_test_str[126], (Fnv64_t) {0xcbef2d19UL, 0x26caf88bUL} },
1671
+ { &fnv_test_str[127], (Fnv64_t) {0x97e61b8fUL, 0x8e6e063bUL} },
1672
+ { &fnv_test_str[128], (Fnv64_t) {0xf3b7c37eUL, 0xb42750f7UL} },
1673
+ { &fnv_test_str[129], (Fnv64_t) {0xcf7ca99bUL, 0xf3c6ba64UL} },
1674
+ { &fnv_test_str[130], (Fnv64_t) {0x27ea80feUL, 0xebfb69b4UL} },
1675
+ { &fnv_test_str[131], (Fnv64_t) {0xd970f46cUL, 0x39b50c3eUL} },
1676
+ { &fnv_test_str[132], (Fnv64_t) {0xa3eb3e8aUL, 0x5b9b177aUL} },
1677
+ { &fnv_test_str[133], (Fnv64_t) {0xcf4ec903UL, 0x6510063eUL} },
1678
+ { &fnv_test_str[134], (Fnv64_t) {0x00797c7aUL, 0x2b3bbd2cUL} },
1679
+ { &fnv_test_str[135], (Fnv64_t) {0xf5cb4aa7UL, 0xf1d6204fUL} },
1680
+ { &fnv_test_str[136], (Fnv64_t) {0xcf099f38UL, 0x4836e27cUL} },
1681
+ { &fnv_test_str[137], (Fnv64_t) {0xd073b44dUL, 0x82efbb0dUL} },
1682
+ { &fnv_test_str[138], (Fnv64_t) {0xffd7d4c6UL, 0x4a80c282UL} },
1683
+ { &fnv_test_str[139], (Fnv64_t) {0x9ee43bdfUL, 0x305d1a9cUL} },
1684
+ { &fnv_test_str[140], (Fnv64_t) {0x8ffc6997UL, 0x15c36694UL} },
1685
+ { &fnv_test_str[141], (Fnv64_t) {0x18916e7bUL, 0x80153ae2UL} },
1686
+ { &fnv_test_str[142], (Fnv64_t) {0xf9e2a9e1UL, 0xfa23e2bdUL} },
1687
+ { &fnv_test_str[143], (Fnv64_t) {0x2333c6deUL, 0xd47e8d8aUL} },
1688
+ { &fnv_test_str[144], (Fnv64_t) {0xf688b056UL, 0x7e128095UL} },
1689
+ { &fnv_test_str[145], (Fnv64_t) {0x0efcedabUL, 0x2f535689UL} },
1690
+ { &fnv_test_str[146], (Fnv64_t) {0x014f55c5UL, 0x95c2b383UL} },
1691
+ { &fnv_test_str[147], (Fnv64_t) {0x9ce6070fUL, 0x4727a533UL} },
1692
+ { &fnv_test_str[148], (Fnv64_t) {0x575108e9UL, 0xb0555ecdUL} },
1693
+ { &fnv_test_str[149], (Fnv64_t) {0x0bb4af37UL, 0x48d78577UL} },
1694
+ { &fnv_test_str[150], (Fnv64_t) {0x12af02b1UL, 0x09d4701cUL} },
1695
+ { &fnv_test_str[151], (Fnv64_t) {0x8f3cf62eUL, 0x79f031e7UL} },
1696
+ { &fnv_test_str[152], (Fnv64_t) {0xdb1b5a94UL, 0x52a1ee85UL} },
1697
+ { &fnv_test_str[153], (Fnv64_t) {0xb37fa6b8UL, 0x6bd95b2eUL} },
1698
+ { &fnv_test_str[154], (Fnv64_t) {0x77aef85dUL, 0x74971b70UL} },
1699
+ { &fnv_test_str[155], (Fnv64_t) {0xffcc1aadUL, 0xb4e4fae2UL} },
1700
+ { &fnv_test_str[156], (Fnv64_t) {0x98b8f63aUL, 0x2bd48bd8UL} },
1701
+ { &fnv_test_str[157], (Fnv64_t) {0x556257f6UL, 0xe9966ac1UL} },
1702
+ { &fnv_test_str[158], (Fnv64_t) {0x078ba293UL, 0x92a3d1cdUL} },
1703
+ { &fnv_test_str[159], (Fnv64_t) {0x82e20ab8UL, 0xf81175a4UL} },
1704
+ { &fnv_test_str[160], (Fnv64_t) {0x22e73048UL, 0x5bbb3de7UL} },
1705
+ { &fnv_test_str[161], (Fnv64_t) {0x92b9f2beUL, 0x6b4f3634UL} },
1706
+ { &fnv_test_str[162], (Fnv64_t) {0x73d59875UL, 0xc2d559dfUL} },
1707
+ { &fnv_test_str[163], (Fnv64_t) {0x4bc7a8c2UL, 0xf75f6228UL} },
1708
+ { &fnv_test_str[164], (Fnv64_t) {0x16a9f1ccUL, 0xda8dd8e1UL} },
1709
+ { &fnv_test_str[165], (Fnv64_t) {0x76057885UL, 0xbdc1e6abUL} },
1710
+ { &fnv_test_str[166], (Fnv64_t) {0x8a1224a0UL, 0xfec6a423UL} },
1711
+ { &fnv_test_str[167], (Fnv64_t) {0x223e290eUL, 0xc03f40f3UL} },
1712
+ { &fnv_test_str[168], (Fnv64_t) {0x466ffda9UL, 0x1ed21673UL} },
1713
+ { &fnv_test_str[169], (Fnv64_t) {0xbb0dd2afUL, 0xdf70f906UL} },
1714
+ { &fnv_test_str[170], (Fnv64_t) {0x9f2af666UL, 0xf3dcda36UL} },
1715
+ { &fnv_test_str[171], (Fnv64_t) {0x3cdcebdeUL, 0x9ebb1157UL} },
1716
+ { &fnv_test_str[172], (Fnv64_t) {0x77fedca0UL, 0x81c72d90UL} },
1717
+ { &fnv_test_str[173], (Fnv64_t) {0x1be5fb15UL, 0x0ec074a3UL} },
1718
+ { &fnv_test_str[174], (Fnv64_t) {0xb6c48f20UL, 0x2a8b3280UL} },
1719
+ { &fnv_test_str[175], (Fnv64_t) {0x13309344UL, 0xfd317775UL} },
1720
+ { &fnv_test_str[176], (Fnv64_t) {0x6ad006b6UL, 0x194534a8UL} },
1721
+ { &fnv_test_str[177], (Fnv64_t) {0x6e0cfe12UL, 0x3be6fdf4UL} },
1722
+ { &fnv_test_str[178], (Fnv64_t) {0xa07eb057UL, 0x017cc137UL} },
1723
+ { &fnv_test_str[179], (Fnv64_t) {0x7d26b54dUL, 0x9428fc6eUL} },
1724
+ { &fnv_test_str[180], (Fnv64_t) {0x03ef8ad7UL, 0x9aaa2e36UL} },
1725
+ { &fnv_test_str[181], (Fnv64_t) {0xa0ccdf7dUL, 0x82c6d3f3UL} },
1726
+ { &fnv_test_str[182], (Fnv64_t) {0x0cf09b65UL, 0xc86eeea0UL} },
1727
+ { &fnv_test_str[183], (Fnv64_t) {0xdbb58299UL, 0x705f8189UL} },
1728
+ { &fnv_test_str[184], (Fnv64_t) {0x4391ca69UL, 0x415a7f55UL} },
1729
+ { &fnv_test_str[185], (Fnv64_t) {0xa2bdc555UL, 0xcfe3d49fUL} },
1730
+ { &fnv_test_str[186], (Fnv64_t) {0x39b25191UL, 0xf0f9c560UL} },
1731
+ { &fnv_test_str[187], (Fnv64_t) {0xbd1d32d9UL, 0x7075cb6aUL} },
1732
+ { &fnv_test_str[188], (Fnv64_t) {0x8b277509UL, 0x43c94e2cUL} },
1733
+ { &fnv_test_str[189], (Fnv64_t) {0xea670359UL, 0x3cbfd4e4UL} },
1734
+ { &fnv_test_str[190], (Fnv64_t) {0x0f4d019dUL, 0xc0588781UL} },
1735
+ { &fnv_test_str[191], (Fnv64_t) {0x3ac22dc5UL, 0x14468ff9UL} },
1736
+ { &fnv_test_str[192], (Fnv64_t) {0x89d99c05UL, 0xebed6995UL} },
1737
+ { &fnv_test_str[193], (Fnv64_t) {0x321ca5d5UL, 0x6d99f6dfUL} },
1738
+ { &fnv_test_str[194], (Fnv64_t) {0x8c36d625UL, 0x0cd410d0UL} },
1739
+ { &fnv_test_str[195], (Fnv64_t) {0x86831d35UL, 0xef1b2a2cUL} },
1740
+ { &fnv_test_str[196], (Fnv64_t) {0x69ee5f05UL, 0x3b349c4dUL} },
1741
+ { &fnv_test_str[197], (Fnv64_t) {0x8f45f035UL, 0x55248ce8UL} },
1742
+ { &fnv_test_str[198], (Fnv64_t) {0x18a4c885UL, 0xaa69ca6aUL} },
1743
+ { &fnv_test_str[199], (Fnv64_t) {0x2bd816b5UL, 0x1fe3fce6UL} },
1744
+ { &fnv_test_str[200], (Fnv64_t) {0xa8df69d9UL, 0x0289a488UL} },
1745
+ { &fnv_test_str[201], (Fnv64_t) {0x13df98b5UL, 0x15e96e16UL} },
1746
+ { &fnv_test_str[202], (Fnv64_t) {0x5ad89b99UL, 0xe6be5737UL} },
1747
+ { NULL, (Fnv64_t) {0,0} }
1748
+ };
1749
+ #endif /* HAVE_64BIT_LONG_LONG */
1750
+
1751
+ /* FNV-1a 64 bit test vectors */
1752
+ #if defined(HAVE_64BIT_LONG_LONG)
1753
+ struct fnv1a_64_test_vector fnv1a_64_vector[] = {
1754
+ { &fnv_test_str[0], (Fnv64_t) 0xcbf29ce484222325ULL },
1755
+ { &fnv_test_str[1], (Fnv64_t) 0xaf63dc4c8601ec8cULL },
1756
+ { &fnv_test_str[2], (Fnv64_t) 0xaf63df4c8601f1a5ULL },
1757
+ { &fnv_test_str[3], (Fnv64_t) 0xaf63de4c8601eff2ULL },
1758
+ { &fnv_test_str[4], (Fnv64_t) 0xaf63d94c8601e773ULL },
1759
+ { &fnv_test_str[5], (Fnv64_t) 0xaf63d84c8601e5c0ULL },
1760
+ { &fnv_test_str[6], (Fnv64_t) 0xaf63db4c8601ead9ULL },
1761
+ { &fnv_test_str[7], (Fnv64_t) 0x08985907b541d342ULL },
1762
+ { &fnv_test_str[8], (Fnv64_t) 0xdcb27518fed9d577ULL },
1763
+ { &fnv_test_str[9], (Fnv64_t) 0xdd120e790c2512afULL },
1764
+ { &fnv_test_str[10], (Fnv64_t) 0xcac165afa2fef40aULL },
1765
+ { &fnv_test_str[11], (Fnv64_t) 0x85944171f73967e8ULL },
1766
+ { &fnv_test_str[12], (Fnv64_t) 0xaf63bd4c8601b7dfULL },
1767
+ { &fnv_test_str[13], (Fnv64_t) 0x089be207b544f1e4ULL },
1768
+ { &fnv_test_str[14], (Fnv64_t) 0x08a61407b54d9b5fULL },
1769
+ { &fnv_test_str[15], (Fnv64_t) 0x08a2ae07b54ab836ULL },
1770
+ { &fnv_test_str[16], (Fnv64_t) 0x0891b007b53c4869ULL },
1771
+ { &fnv_test_str[17], (Fnv64_t) 0x088e4a07b5396540ULL },
1772
+ { &fnv_test_str[18], (Fnv64_t) 0x08987c07b5420ebbULL },
1773
+ { &fnv_test_str[19], (Fnv64_t) 0xdcb28a18fed9f926ULL },
1774
+ { &fnv_test_str[20], (Fnv64_t) 0xdd1270790c25b935ULL },
1775
+ { &fnv_test_str[21], (Fnv64_t) 0xcac146afa2febf5dULL },
1776
+ { &fnv_test_str[22], (Fnv64_t) 0x8593d371f738acfeULL },
1777
+ { &fnv_test_str[23], (Fnv64_t) 0x34531ca7168b8f38ULL },
1778
+ { &fnv_test_str[24], (Fnv64_t) 0x08a25607b54a22aeULL },
1779
+ { &fnv_test_str[25], (Fnv64_t) 0xf5faf0190cf90df3ULL },
1780
+ { &fnv_test_str[26], (Fnv64_t) 0xf27397910b3221c7ULL },
1781
+ { &fnv_test_str[27], (Fnv64_t) 0x2c8c2b76062f22e0ULL },
1782
+ { &fnv_test_str[28], (Fnv64_t) 0xe150688c8217b8fdULL },
1783
+ { &fnv_test_str[29], (Fnv64_t) 0xf35a83c10e4f1f87ULL },
1784
+ { &fnv_test_str[30], (Fnv64_t) 0xd1edd10b507344d0ULL },
1785
+ { &fnv_test_str[31], (Fnv64_t) 0x2a5ee739b3ddb8c3ULL },
1786
+ { &fnv_test_str[32], (Fnv64_t) 0xdcfb970ca1c0d310ULL },
1787
+ { &fnv_test_str[33], (Fnv64_t) 0x4054da76daa6da90ULL },
1788
+ { &fnv_test_str[34], (Fnv64_t) 0xf70a2ff589861368ULL },
1789
+ { &fnv_test_str[35], (Fnv64_t) 0x4c628b38aed25f17ULL },
1790
+ { &fnv_test_str[36], (Fnv64_t) 0x9dd1f6510f78189fULL },
1791
+ { &fnv_test_str[37], (Fnv64_t) 0xa3de85bd491270ceULL },
1792
+ { &fnv_test_str[38], (Fnv64_t) 0x858e2fa32a55e61dULL },
1793
+ { &fnv_test_str[39], (Fnv64_t) 0x46810940eff5f915ULL },
1794
+ { &fnv_test_str[40], (Fnv64_t) 0xf5fadd190cf8edaaULL },
1795
+ { &fnv_test_str[41], (Fnv64_t) 0xf273ed910b32b3e9ULL },
1796
+ { &fnv_test_str[42], (Fnv64_t) 0x2c8c5276062f6525ULL },
1797
+ { &fnv_test_str[43], (Fnv64_t) 0xe150b98c821842a0ULL },
1798
+ { &fnv_test_str[44], (Fnv64_t) 0xf35aa3c10e4f55e7ULL },
1799
+ { &fnv_test_str[45], (Fnv64_t) 0xd1ed680b50729265ULL },
1800
+ { &fnv_test_str[46], (Fnv64_t) 0x2a5f0639b3dded70ULL },
1801
+ { &fnv_test_str[47], (Fnv64_t) 0xdcfbaa0ca1c0f359ULL },
1802
+ { &fnv_test_str[48], (Fnv64_t) 0x4054ba76daa6a430ULL },
1803
+ { &fnv_test_str[49], (Fnv64_t) 0xf709c7f5898562b0ULL },
1804
+ { &fnv_test_str[50], (Fnv64_t) 0x4c62e638aed2f9b8ULL },
1805
+ { &fnv_test_str[51], (Fnv64_t) 0x9dd1a8510f779415ULL },
1806
+ { &fnv_test_str[52], (Fnv64_t) 0xa3de2abd4911d62dULL },
1807
+ { &fnv_test_str[53], (Fnv64_t) 0x858e0ea32a55ae0aULL },
1808
+ { &fnv_test_str[54], (Fnv64_t) 0x46810f40eff60347ULL },
1809
+ { &fnv_test_str[55], (Fnv64_t) 0xc33bce57bef63eafULL },
1810
+ { &fnv_test_str[56], (Fnv64_t) 0x08a24307b54a0265ULL },
1811
+ { &fnv_test_str[57], (Fnv64_t) 0xf5b9fd190cc18d15ULL },
1812
+ { &fnv_test_str[58], (Fnv64_t) 0x4c968290ace35703ULL },
1813
+ { &fnv_test_str[59], (Fnv64_t) 0x07174bd5c64d9350ULL },
1814
+ { &fnv_test_str[60], (Fnv64_t) 0x5a294c3ff5d18750ULL },
1815
+ { &fnv_test_str[61], (Fnv64_t) 0x05b3c1aeb308b843ULL },
1816
+ { &fnv_test_str[62], (Fnv64_t) 0xb92a48da37d0f477ULL },
1817
+ { &fnv_test_str[63], (Fnv64_t) 0x73cdddccd80ebc49ULL },
1818
+ { &fnv_test_str[64], (Fnv64_t) 0xd58c4c13210a266bULL },
1819
+ { &fnv_test_str[65], (Fnv64_t) 0xe78b6081243ec194ULL },
1820
+ { &fnv_test_str[66], (Fnv64_t) 0xb096f77096a39f34ULL },
1821
+ { &fnv_test_str[67], (Fnv64_t) 0xb425c54ff807b6a3ULL },
1822
+ { &fnv_test_str[68], (Fnv64_t) 0x23e520e2751bb46eULL },
1823
+ { &fnv_test_str[69], (Fnv64_t) 0x1a0b44ccfe1385ecULL },
1824
+ { &fnv_test_str[70], (Fnv64_t) 0xf5ba4b190cc2119fULL },
1825
+ { &fnv_test_str[71], (Fnv64_t) 0x4c962690ace2baafULL },
1826
+ { &fnv_test_str[72], (Fnv64_t) 0x0716ded5c64cda19ULL },
1827
+ { &fnv_test_str[73], (Fnv64_t) 0x5a292c3ff5d150f0ULL },
1828
+ { &fnv_test_str[74], (Fnv64_t) 0x05b3e0aeb308ecf0ULL },
1829
+ { &fnv_test_str[75], (Fnv64_t) 0xb92a5eda37d119d9ULL },
1830
+ { &fnv_test_str[76], (Fnv64_t) 0x73ce41ccd80f6635ULL },
1831
+ { &fnv_test_str[77], (Fnv64_t) 0xd58c2c132109f00bULL },
1832
+ { &fnv_test_str[78], (Fnv64_t) 0xe78baf81243f47d1ULL },
1833
+ { &fnv_test_str[79], (Fnv64_t) 0xb0968f7096a2ee7cULL },
1834
+ { &fnv_test_str[80], (Fnv64_t) 0xb425a84ff807855cULL },
1835
+ { &fnv_test_str[81], (Fnv64_t) 0x23e4e9e2751b56f9ULL },
1836
+ { &fnv_test_str[82], (Fnv64_t) 0x1a0b4eccfe1396eaULL },
1837
+ { &fnv_test_str[83], (Fnv64_t) 0x54abd453bb2c9004ULL },
1838
+ { &fnv_test_str[84], (Fnv64_t) 0x08ba5f07b55ec3daULL },
1839
+ { &fnv_test_str[85], (Fnv64_t) 0x337354193006cb6eULL },
1840
+ { &fnv_test_str[86], (Fnv64_t) 0xa430d84680aabd0bULL },
1841
+ { &fnv_test_str[87], (Fnv64_t) 0xa9bc8acca21f39b1ULL },
1842
+ { &fnv_test_str[88], (Fnv64_t) 0x6961196491cc682dULL },
1843
+ { &fnv_test_str[89], (Fnv64_t) 0xad2bb1774799dfe9ULL },
1844
+ { &fnv_test_str[90], (Fnv64_t) 0x6961166491cc6314ULL },
1845
+ { &fnv_test_str[91], (Fnv64_t) 0x8d1bb3904a3b1236ULL },
1846
+ { &fnv_test_str[92], (Fnv64_t) 0x6961176491cc64c7ULL },
1847
+ { &fnv_test_str[93], (Fnv64_t) 0xed205d87f40434c7ULL },
1848
+ { &fnv_test_str[94], (Fnv64_t) 0x6961146491cc5faeULL },
1849
+ { &fnv_test_str[95], (Fnv64_t) 0xcd3baf5e44f8ad9cULL },
1850
+ { &fnv_test_str[96], (Fnv64_t) 0xe3b36596127cd6d8ULL },
1851
+ { &fnv_test_str[97], (Fnv64_t) 0xf77f1072c8e8a646ULL },
1852
+ { &fnv_test_str[98], (Fnv64_t) 0xe3b36396127cd372ULL },
1853
+ { &fnv_test_str[99], (Fnv64_t) 0x6067dce9932ad458ULL },
1854
+ { &fnv_test_str[100], (Fnv64_t) 0xe3b37596127cf208ULL },
1855
+ { &fnv_test_str[101], (Fnv64_t) 0x4b7b10fa9fe83936ULL },
1856
+ { &fnv_test_str[102], (Fnv64_t) 0xaabafe7104d914beULL },
1857
+ { &fnv_test_str[103], (Fnv64_t) 0xf4d3180b3cde3edaULL },
1858
+ { &fnv_test_str[104], (Fnv64_t) 0xaabafd7104d9130bULL },
1859
+ { &fnv_test_str[105], (Fnv64_t) 0xf4cfb20b3cdb5bb1ULL },
1860
+ { &fnv_test_str[106], (Fnv64_t) 0xaabafc7104d91158ULL },
1861
+ { &fnv_test_str[107], (Fnv64_t) 0xf4cc4c0b3cd87888ULL },
1862
+ { &fnv_test_str[108], (Fnv64_t) 0xe729bac5d2a8d3a7ULL },
1863
+ { &fnv_test_str[109], (Fnv64_t) 0x74bc0524f4dfa4c5ULL },
1864
+ { &fnv_test_str[110], (Fnv64_t) 0xe72630c5d2a5b352ULL },
1865
+ { &fnv_test_str[111], (Fnv64_t) 0x6b983224ef8fb456ULL },
1866
+ { &fnv_test_str[112], (Fnv64_t) 0xe73042c5d2ae266dULL },
1867
+ { &fnv_test_str[113], (Fnv64_t) 0x8527e324fdeb4b37ULL },
1868
+ { &fnv_test_str[114], (Fnv64_t) 0x0a83c86fee952abcULL },
1869
+ { &fnv_test_str[115], (Fnv64_t) 0x7318523267779d74ULL },
1870
+ { &fnv_test_str[116], (Fnv64_t) 0x3e66d3d56b8caca1ULL },
1871
+ { &fnv_test_str[117], (Fnv64_t) 0x956694a5c0095593ULL },
1872
+ { &fnv_test_str[118], (Fnv64_t) 0xcac54572bb1a6fc8ULL },
1873
+ { &fnv_test_str[119], (Fnv64_t) 0xa7a4c9f3edebf0d8ULL },
1874
+ { &fnv_test_str[120], (Fnv64_t) 0x7829851fac17b143ULL },
1875
+ { &fnv_test_str[121], (Fnv64_t) 0x2c8f4c9af81bcf06ULL },
1876
+ { &fnv_test_str[122], (Fnv64_t) 0xd34e31539740c732ULL },
1877
+ { &fnv_test_str[123], (Fnv64_t) 0x3605a2ac253d2db1ULL },
1878
+ { &fnv_test_str[124], (Fnv64_t) 0x08c11b8346f4a3c3ULL },
1879
+ { &fnv_test_str[125], (Fnv64_t) 0x6be396289ce8a6daULL },
1880
+ { &fnv_test_str[126], (Fnv64_t) 0xd9b957fb7fe794c5ULL },
1881
+ { &fnv_test_str[127], (Fnv64_t) 0x05be33da04560a93ULL },
1882
+ { &fnv_test_str[128], (Fnv64_t) 0x0957f1577ba9747cULL },
1883
+ { &fnv_test_str[129], (Fnv64_t) 0xda2cc3acc24fba57ULL },
1884
+ { &fnv_test_str[130], (Fnv64_t) 0x74136f185b29e7f0ULL },
1885
+ { &fnv_test_str[131], (Fnv64_t) 0xb2f2b4590edb93b2ULL },
1886
+ { &fnv_test_str[132], (Fnv64_t) 0xb3608fce8b86ae04ULL },
1887
+ { &fnv_test_str[133], (Fnv64_t) 0x4a3a865079359063ULL },
1888
+ { &fnv_test_str[134], (Fnv64_t) 0x5b3a7ef496880a50ULL },
1889
+ { &fnv_test_str[135], (Fnv64_t) 0x48fae3163854c23bULL },
1890
+ { &fnv_test_str[136], (Fnv64_t) 0x07aaa640476e0b9aULL },
1891
+ { &fnv_test_str[137], (Fnv64_t) 0x2f653656383a687dULL },
1892
+ { &fnv_test_str[138], (Fnv64_t) 0xa1031f8e7599d79cULL },
1893
+ { &fnv_test_str[139], (Fnv64_t) 0xa31908178ff92477ULL },
1894
+ { &fnv_test_str[140], (Fnv64_t) 0x097edf3c14c3fb83ULL },
1895
+ { &fnv_test_str[141], (Fnv64_t) 0xb51ca83feaa0971bULL },
1896
+ { &fnv_test_str[142], (Fnv64_t) 0xdd3c0d96d784f2e9ULL },
1897
+ { &fnv_test_str[143], (Fnv64_t) 0x86cd26a9ea767d78ULL },
1898
+ { &fnv_test_str[144], (Fnv64_t) 0xe6b215ff54a30c18ULL },
1899
+ { &fnv_test_str[145], (Fnv64_t) 0xec5b06a1c5531093ULL },
1900
+ { &fnv_test_str[146], (Fnv64_t) 0x45665a929f9ec5e5ULL },
1901
+ { &fnv_test_str[147], (Fnv64_t) 0x8c7609b4a9f10907ULL },
1902
+ { &fnv_test_str[148], (Fnv64_t) 0x89aac3a491f0d729ULL },
1903
+ { &fnv_test_str[149], (Fnv64_t) 0x32ce6b26e0f4a403ULL },
1904
+ { &fnv_test_str[150], (Fnv64_t) 0x614ab44e02b53e01ULL },
1905
+ { &fnv_test_str[151], (Fnv64_t) 0xfa6472eb6eef3290ULL },
1906
+ { &fnv_test_str[152], (Fnv64_t) 0x9e5d75eb1948eb6aULL },
1907
+ { &fnv_test_str[153], (Fnv64_t) 0xb6d12ad4a8671852ULL },
1908
+ { &fnv_test_str[154], (Fnv64_t) 0x88826f56eba07af1ULL },
1909
+ { &fnv_test_str[155], (Fnv64_t) 0x44535bf2645bc0fdULL },
1910
+ { &fnv_test_str[156], (Fnv64_t) 0x169388ffc21e3728ULL },
1911
+ { &fnv_test_str[157], (Fnv64_t) 0xf68aac9e396d8224ULL },
1912
+ { &fnv_test_str[158], (Fnv64_t) 0x8e87d7e7472b3883ULL },
1913
+ { &fnv_test_str[159], (Fnv64_t) 0x295c26caa8b423deULL },
1914
+ { &fnv_test_str[160], (Fnv64_t) 0x322c814292e72176ULL },
1915
+ { &fnv_test_str[161], (Fnv64_t) 0x8a06550eb8af7268ULL },
1916
+ { &fnv_test_str[162], (Fnv64_t) 0xef86d60e661bcf71ULL },
1917
+ { &fnv_test_str[163], (Fnv64_t) 0x9e5426c87f30ee54ULL },
1918
+ { &fnv_test_str[164], (Fnv64_t) 0xf1ea8aa826fd047eULL },
1919
+ { &fnv_test_str[165], (Fnv64_t) 0x0babaf9a642cb769ULL },
1920
+ { &fnv_test_str[166], (Fnv64_t) 0x4b3341d4068d012eULL },
1921
+ { &fnv_test_str[167], (Fnv64_t) 0xd15605cbc30a335cULL },
1922
+ { &fnv_test_str[168], (Fnv64_t) 0x5b21060aed8412e5ULL },
1923
+ { &fnv_test_str[169], (Fnv64_t) 0x45e2cda1ce6f4227ULL },
1924
+ { &fnv_test_str[170], (Fnv64_t) 0x50ae3745033ad7d4ULL },
1925
+ { &fnv_test_str[171], (Fnv64_t) 0xaa4588ced46bf414ULL },
1926
+ { &fnv_test_str[172], (Fnv64_t) 0xc1b0056c4a95467eULL },
1927
+ { &fnv_test_str[173], (Fnv64_t) 0x56576a71de8b4089ULL },
1928
+ { &fnv_test_str[174], (Fnv64_t) 0xbf20965fa6dc927eULL },
1929
+ { &fnv_test_str[175], (Fnv64_t) 0x569f8383c2040882ULL },
1930
+ { &fnv_test_str[176], (Fnv64_t) 0xe1e772fba08feca0ULL },
1931
+ { &fnv_test_str[177], (Fnv64_t) 0x4ced94af97138ac4ULL },
1932
+ { &fnv_test_str[178], (Fnv64_t) 0xc4112ffb337a82fbULL },
1933
+ { &fnv_test_str[179], (Fnv64_t) 0xd64a4fd41de38b7dULL },
1934
+ { &fnv_test_str[180], (Fnv64_t) 0x4cfc32329edebcbbULL },
1935
+ { &fnv_test_str[181], (Fnv64_t) 0x0803564445050395ULL },
1936
+ { &fnv_test_str[182], (Fnv64_t) 0xaa1574ecf4642ffdULL },
1937
+ { &fnv_test_str[183], (Fnv64_t) 0x694bc4e54cc315f9ULL },
1938
+ { &fnv_test_str[184], (Fnv64_t) 0xa3d7cb273b011721ULL },
1939
+ { &fnv_test_str[185], (Fnv64_t) 0x577c2f8b6115bfa5ULL },
1940
+ { &fnv_test_str[186], (Fnv64_t) 0xb7ec8c1a769fb4c1ULL },
1941
+ { &fnv_test_str[187], (Fnv64_t) 0x5d5cfce63359ab19ULL },
1942
+ { &fnv_test_str[188], (Fnv64_t) 0x33b96c3cd65b5f71ULL },
1943
+ { &fnv_test_str[189], (Fnv64_t) 0xd845097780602bb9ULL },
1944
+ { &fnv_test_str[190], (Fnv64_t) 0x84d47645d02da3d5ULL },
1945
+ { &fnv_test_str[191], (Fnv64_t) 0x83544f33b58773a5ULL },
1946
+ { &fnv_test_str[192], (Fnv64_t) 0x9175cbb2160836c5ULL },
1947
+ { &fnv_test_str[193], (Fnv64_t) 0xc71b3bc175e72bc5ULL },
1948
+ { &fnv_test_str[194], (Fnv64_t) 0x636806ac222ec985ULL },
1949
+ { &fnv_test_str[195], (Fnv64_t) 0xb6ef0e6950f52ed5ULL },
1950
+ { &fnv_test_str[196], (Fnv64_t) 0xead3d8a0f3dfdaa5ULL },
1951
+ { &fnv_test_str[197], (Fnv64_t) 0x922908fe9a861ba5ULL },
1952
+ { &fnv_test_str[198], (Fnv64_t) 0x6d4821de275fd5c5ULL },
1953
+ { &fnv_test_str[199], (Fnv64_t) 0x1fe3fce62bd816b5ULL },
1954
+ { &fnv_test_str[200], (Fnv64_t) 0xc23e9fccd6f70591ULL },
1955
+ { &fnv_test_str[201], (Fnv64_t) 0xc1af12bdfe16b5b5ULL },
1956
+ { &fnv_test_str[202], (Fnv64_t) 0x39e9f18f2f85e221ULL },
1957
+ { NULL, (Fnv64_t) 0 }
1958
+ };
1959
+ #else /* HAVE_64BIT_LONG_LONG */
1960
+ struct fnv1a_64_test_vector fnv1a_64_vector[] = {
1961
+ { &fnv_test_str[0], (Fnv64_t) {0x84222325UL, 0xcbf29ce4UL} },
1962
+ { &fnv_test_str[1], (Fnv64_t) {0x8601ec8cUL, 0xaf63dc4cUL} },
1963
+ { &fnv_test_str[2], (Fnv64_t) {0x8601f1a5UL, 0xaf63df4cUL} },
1964
+ { &fnv_test_str[3], (Fnv64_t) {0x8601eff2UL, 0xaf63de4cUL} },
1965
+ { &fnv_test_str[4], (Fnv64_t) {0x8601e773UL, 0xaf63d94cUL} },
1966
+ { &fnv_test_str[5], (Fnv64_t) {0x8601e5c0UL, 0xaf63d84cUL} },
1967
+ { &fnv_test_str[6], (Fnv64_t) {0x8601ead9UL, 0xaf63db4cUL} },
1968
+ { &fnv_test_str[7], (Fnv64_t) {0xb541d342UL, 0x08985907UL} },
1969
+ { &fnv_test_str[8], (Fnv64_t) {0xfed9d577UL, 0xdcb27518UL} },
1970
+ { &fnv_test_str[9], (Fnv64_t) {0x0c2512afUL, 0xdd120e79UL} },
1971
+ { &fnv_test_str[10], (Fnv64_t) {0xa2fef40aUL, 0xcac165afUL} },
1972
+ { &fnv_test_str[11], (Fnv64_t) {0xf73967e8UL, 0x85944171UL} },
1973
+ { &fnv_test_str[12], (Fnv64_t) {0x8601b7dfUL, 0xaf63bd4cUL} },
1974
+ { &fnv_test_str[13], (Fnv64_t) {0xb544f1e4UL, 0x089be207UL} },
1975
+ { &fnv_test_str[14], (Fnv64_t) {0xb54d9b5fUL, 0x08a61407UL} },
1976
+ { &fnv_test_str[15], (Fnv64_t) {0xb54ab836UL, 0x08a2ae07UL} },
1977
+ { &fnv_test_str[16], (Fnv64_t) {0xb53c4869UL, 0x0891b007UL} },
1978
+ { &fnv_test_str[17], (Fnv64_t) {0xb5396540UL, 0x088e4a07UL} },
1979
+ { &fnv_test_str[18], (Fnv64_t) {0xb5420ebbUL, 0x08987c07UL} },
1980
+ { &fnv_test_str[19], (Fnv64_t) {0xfed9f926UL, 0xdcb28a18UL} },
1981
+ { &fnv_test_str[20], (Fnv64_t) {0x0c25b935UL, 0xdd127079UL} },
1982
+ { &fnv_test_str[21], (Fnv64_t) {0xa2febf5dUL, 0xcac146afUL} },
1983
+ { &fnv_test_str[22], (Fnv64_t) {0xf738acfeUL, 0x8593d371UL} },
1984
+ { &fnv_test_str[23], (Fnv64_t) {0x168b8f38UL, 0x34531ca7UL} },
1985
+ { &fnv_test_str[24], (Fnv64_t) {0xb54a22aeUL, 0x08a25607UL} },
1986
+ { &fnv_test_str[25], (Fnv64_t) {0x0cf90df3UL, 0xf5faf019UL} },
1987
+ { &fnv_test_str[26], (Fnv64_t) {0x0b3221c7UL, 0xf2739791UL} },
1988
+ { &fnv_test_str[27], (Fnv64_t) {0x062f22e0UL, 0x2c8c2b76UL} },
1989
+ { &fnv_test_str[28], (Fnv64_t) {0x8217b8fdUL, 0xe150688cUL} },
1990
+ { &fnv_test_str[29], (Fnv64_t) {0x0e4f1f87UL, 0xf35a83c1UL} },
1991
+ { &fnv_test_str[30], (Fnv64_t) {0x507344d0UL, 0xd1edd10bUL} },
1992
+ { &fnv_test_str[31], (Fnv64_t) {0xb3ddb8c3UL, 0x2a5ee739UL} },
1993
+ { &fnv_test_str[32], (Fnv64_t) {0xa1c0d310UL, 0xdcfb970cUL} },
1994
+ { &fnv_test_str[33], (Fnv64_t) {0xdaa6da90UL, 0x4054da76UL} },
1995
+ { &fnv_test_str[34], (Fnv64_t) {0x89861368UL, 0xf70a2ff5UL} },
1996
+ { &fnv_test_str[35], (Fnv64_t) {0xaed25f17UL, 0x4c628b38UL} },
1997
+ { &fnv_test_str[36], (Fnv64_t) {0x0f78189fUL, 0x9dd1f651UL} },
1998
+ { &fnv_test_str[37], (Fnv64_t) {0x491270ceUL, 0xa3de85bdUL} },
1999
+ { &fnv_test_str[38], (Fnv64_t) {0x2a55e61dUL, 0x858e2fa3UL} },
2000
+ { &fnv_test_str[39], (Fnv64_t) {0xeff5f915UL, 0x46810940UL} },
2001
+ { &fnv_test_str[40], (Fnv64_t) {0x0cf8edaaUL, 0xf5fadd19UL} },
2002
+ { &fnv_test_str[41], (Fnv64_t) {0x0b32b3e9UL, 0xf273ed91UL} },
2003
+ { &fnv_test_str[42], (Fnv64_t) {0x062f6525UL, 0x2c8c5276UL} },
2004
+ { &fnv_test_str[43], (Fnv64_t) {0x821842a0UL, 0xe150b98cUL} },
2005
+ { &fnv_test_str[44], (Fnv64_t) {0x0e4f55e7UL, 0xf35aa3c1UL} },
2006
+ { &fnv_test_str[45], (Fnv64_t) {0x50729265UL, 0xd1ed680bUL} },
2007
+ { &fnv_test_str[46], (Fnv64_t) {0xb3dded70UL, 0x2a5f0639UL} },
2008
+ { &fnv_test_str[47], (Fnv64_t) {0xa1c0f359UL, 0xdcfbaa0cUL} },
2009
+ { &fnv_test_str[48], (Fnv64_t) {0xdaa6a430UL, 0x4054ba76UL} },
2010
+ { &fnv_test_str[49], (Fnv64_t) {0x898562b0UL, 0xf709c7f5UL} },
2011
+ { &fnv_test_str[50], (Fnv64_t) {0xaed2f9b8UL, 0x4c62e638UL} },
2012
+ { &fnv_test_str[51], (Fnv64_t) {0x0f779415UL, 0x9dd1a851UL} },
2013
+ { &fnv_test_str[52], (Fnv64_t) {0x4911d62dUL, 0xa3de2abdUL} },
2014
+ { &fnv_test_str[53], (Fnv64_t) {0x2a55ae0aUL, 0x858e0ea3UL} },
2015
+ { &fnv_test_str[54], (Fnv64_t) {0xeff60347UL, 0x46810f40UL} },
2016
+ { &fnv_test_str[55], (Fnv64_t) {0xbef63eafUL, 0xc33bce57UL} },
2017
+ { &fnv_test_str[56], (Fnv64_t) {0xb54a0265UL, 0x08a24307UL} },
2018
+ { &fnv_test_str[57], (Fnv64_t) {0x0cc18d15UL, 0xf5b9fd19UL} },
2019
+ { &fnv_test_str[58], (Fnv64_t) {0xace35703UL, 0x4c968290UL} },
2020
+ { &fnv_test_str[59], (Fnv64_t) {0xc64d9350UL, 0x07174bd5UL} },
2021
+ { &fnv_test_str[60], (Fnv64_t) {0xf5d18750UL, 0x5a294c3fUL} },
2022
+ { &fnv_test_str[61], (Fnv64_t) {0xb308b843UL, 0x05b3c1aeUL} },
2023
+ { &fnv_test_str[62], (Fnv64_t) {0x37d0f477UL, 0xb92a48daUL} },
2024
+ { &fnv_test_str[63], (Fnv64_t) {0xd80ebc49UL, 0x73cdddccUL} },
2025
+ { &fnv_test_str[64], (Fnv64_t) {0x210a266bUL, 0xd58c4c13UL} },
2026
+ { &fnv_test_str[65], (Fnv64_t) {0x243ec194UL, 0xe78b6081UL} },
2027
+ { &fnv_test_str[66], (Fnv64_t) {0x96a39f34UL, 0xb096f770UL} },
2028
+ { &fnv_test_str[67], (Fnv64_t) {0xf807b6a3UL, 0xb425c54fUL} },
2029
+ { &fnv_test_str[68], (Fnv64_t) {0x751bb46eUL, 0x23e520e2UL} },
2030
+ { &fnv_test_str[69], (Fnv64_t) {0xfe1385ecUL, 0x1a0b44ccUL} },
2031
+ { &fnv_test_str[70], (Fnv64_t) {0x0cc2119fUL, 0xf5ba4b19UL} },
2032
+ { &fnv_test_str[71], (Fnv64_t) {0xace2baafUL, 0x4c962690UL} },
2033
+ { &fnv_test_str[72], (Fnv64_t) {0xc64cda19UL, 0x0716ded5UL} },
2034
+ { &fnv_test_str[73], (Fnv64_t) {0xf5d150f0UL, 0x5a292c3fUL} },
2035
+ { &fnv_test_str[74], (Fnv64_t) {0xb308ecf0UL, 0x05b3e0aeUL} },
2036
+ { &fnv_test_str[75], (Fnv64_t) {0x37d119d9UL, 0xb92a5edaUL} },
2037
+ { &fnv_test_str[76], (Fnv64_t) {0xd80f6635UL, 0x73ce41ccUL} },
2038
+ { &fnv_test_str[77], (Fnv64_t) {0x2109f00bUL, 0xd58c2c13UL} },
2039
+ { &fnv_test_str[78], (Fnv64_t) {0x243f47d1UL, 0xe78baf81UL} },
2040
+ { &fnv_test_str[79], (Fnv64_t) {0x96a2ee7cUL, 0xb0968f70UL} },
2041
+ { &fnv_test_str[80], (Fnv64_t) {0xf807855cUL, 0xb425a84fUL} },
2042
+ { &fnv_test_str[81], (Fnv64_t) {0x751b56f9UL, 0x23e4e9e2UL} },
2043
+ { &fnv_test_str[82], (Fnv64_t) {0xfe1396eaUL, 0x1a0b4eccUL} },
2044
+ { &fnv_test_str[83], (Fnv64_t) {0xbb2c9004UL, 0x54abd453UL} },
2045
+ { &fnv_test_str[84], (Fnv64_t) {0xb55ec3daUL, 0x08ba5f07UL} },
2046
+ { &fnv_test_str[85], (Fnv64_t) {0x3006cb6eUL, 0x33735419UL} },
2047
+ { &fnv_test_str[86], (Fnv64_t) {0x80aabd0bUL, 0xa430d846UL} },
2048
+ { &fnv_test_str[87], (Fnv64_t) {0xa21f39b1UL, 0xa9bc8accUL} },
2049
+ { &fnv_test_str[88], (Fnv64_t) {0x91cc682dUL, 0x69611964UL} },
2050
+ { &fnv_test_str[89], (Fnv64_t) {0x4799dfe9UL, 0xad2bb177UL} },
2051
+ { &fnv_test_str[90], (Fnv64_t) {0x91cc6314UL, 0x69611664UL} },
2052
+ { &fnv_test_str[91], (Fnv64_t) {0x4a3b1236UL, 0x8d1bb390UL} },
2053
+ { &fnv_test_str[92], (Fnv64_t) {0x91cc64c7UL, 0x69611764UL} },
2054
+ { &fnv_test_str[93], (Fnv64_t) {0xf40434c7UL, 0xed205d87UL} },
2055
+ { &fnv_test_str[94], (Fnv64_t) {0x91cc5faeUL, 0x69611464UL} },
2056
+ { &fnv_test_str[95], (Fnv64_t) {0x44f8ad9cUL, 0xcd3baf5eUL} },
2057
+ { &fnv_test_str[96], (Fnv64_t) {0x127cd6d8UL, 0xe3b36596UL} },
2058
+ { &fnv_test_str[97], (Fnv64_t) {0xc8e8a646UL, 0xf77f1072UL} },
2059
+ { &fnv_test_str[98], (Fnv64_t) {0x127cd372UL, 0xe3b36396UL} },
2060
+ { &fnv_test_str[99], (Fnv64_t) {0x932ad458UL, 0x6067dce9UL} },
2061
+ { &fnv_test_str[100], (Fnv64_t) {0x127cf208UL, 0xe3b37596UL} },
2062
+ { &fnv_test_str[101], (Fnv64_t) {0x9fe83936UL, 0x4b7b10faUL} },
2063
+ { &fnv_test_str[102], (Fnv64_t) {0x04d914beUL, 0xaabafe71UL} },
2064
+ { &fnv_test_str[103], (Fnv64_t) {0x3cde3edaUL, 0xf4d3180bUL} },
2065
+ { &fnv_test_str[104], (Fnv64_t) {0x04d9130bUL, 0xaabafd71UL} },
2066
+ { &fnv_test_str[105], (Fnv64_t) {0x3cdb5bb1UL, 0xf4cfb20bUL} },
2067
+ { &fnv_test_str[106], (Fnv64_t) {0x04d91158UL, 0xaabafc71UL} },
2068
+ { &fnv_test_str[107], (Fnv64_t) {0x3cd87888UL, 0xf4cc4c0bUL} },
2069
+ { &fnv_test_str[108], (Fnv64_t) {0xd2a8d3a7UL, 0xe729bac5UL} },
2070
+ { &fnv_test_str[109], (Fnv64_t) {0xf4dfa4c5UL, 0x74bc0524UL} },
2071
+ { &fnv_test_str[110], (Fnv64_t) {0xd2a5b352UL, 0xe72630c5UL} },
2072
+ { &fnv_test_str[111], (Fnv64_t) {0xef8fb456UL, 0x6b983224UL} },
2073
+ { &fnv_test_str[112], (Fnv64_t) {0xd2ae266dUL, 0xe73042c5UL} },
2074
+ { &fnv_test_str[113], (Fnv64_t) {0xfdeb4b37UL, 0x8527e324UL} },
2075
+ { &fnv_test_str[114], (Fnv64_t) {0xee952abcUL, 0x0a83c86fUL} },
2076
+ { &fnv_test_str[115], (Fnv64_t) {0x67779d74UL, 0x73185232UL} },
2077
+ { &fnv_test_str[116], (Fnv64_t) {0x6b8caca1UL, 0x3e66d3d5UL} },
2078
+ { &fnv_test_str[117], (Fnv64_t) {0xc0095593UL, 0x956694a5UL} },
2079
+ { &fnv_test_str[118], (Fnv64_t) {0xbb1a6fc8UL, 0xcac54572UL} },
2080
+ { &fnv_test_str[119], (Fnv64_t) {0xedebf0d8UL, 0xa7a4c9f3UL} },
2081
+ { &fnv_test_str[120], (Fnv64_t) {0xac17b143UL, 0x7829851fUL} },
2082
+ { &fnv_test_str[121], (Fnv64_t) {0xf81bcf06UL, 0x2c8f4c9aUL} },
2083
+ { &fnv_test_str[122], (Fnv64_t) {0x9740c732UL, 0xd34e3153UL} },
2084
+ { &fnv_test_str[123], (Fnv64_t) {0x253d2db1UL, 0x3605a2acUL} },
2085
+ { &fnv_test_str[124], (Fnv64_t) {0x46f4a3c3UL, 0x08c11b83UL} },
2086
+ { &fnv_test_str[125], (Fnv64_t) {0x9ce8a6daUL, 0x6be39628UL} },
2087
+ { &fnv_test_str[126], (Fnv64_t) {0x7fe794c5UL, 0xd9b957fbUL} },
2088
+ { &fnv_test_str[127], (Fnv64_t) {0x04560a93UL, 0x05be33daUL} },
2089
+ { &fnv_test_str[128], (Fnv64_t) {0x7ba9747cUL, 0x0957f157UL} },
2090
+ { &fnv_test_str[129], (Fnv64_t) {0xc24fba57UL, 0xda2cc3acUL} },
2091
+ { &fnv_test_str[130], (Fnv64_t) {0x5b29e7f0UL, 0x74136f18UL} },
2092
+ { &fnv_test_str[131], (Fnv64_t) {0x0edb93b2UL, 0xb2f2b459UL} },
2093
+ { &fnv_test_str[132], (Fnv64_t) {0x8b86ae04UL, 0xb3608fceUL} },
2094
+ { &fnv_test_str[133], (Fnv64_t) {0x79359063UL, 0x4a3a8650UL} },
2095
+ { &fnv_test_str[134], (Fnv64_t) {0x96880a50UL, 0x5b3a7ef4UL} },
2096
+ { &fnv_test_str[135], (Fnv64_t) {0x3854c23bUL, 0x48fae316UL} },
2097
+ { &fnv_test_str[136], (Fnv64_t) {0x476e0b9aUL, 0x07aaa640UL} },
2098
+ { &fnv_test_str[137], (Fnv64_t) {0x383a687dUL, 0x2f653656UL} },
2099
+ { &fnv_test_str[138], (Fnv64_t) {0x7599d79cUL, 0xa1031f8eUL} },
2100
+ { &fnv_test_str[139], (Fnv64_t) {0x8ff92477UL, 0xa3190817UL} },
2101
+ { &fnv_test_str[140], (Fnv64_t) {0x14c3fb83UL, 0x097edf3cUL} },
2102
+ { &fnv_test_str[141], (Fnv64_t) {0xeaa0971bUL, 0xb51ca83fUL} },
2103
+ { &fnv_test_str[142], (Fnv64_t) {0xd784f2e9UL, 0xdd3c0d96UL} },
2104
+ { &fnv_test_str[143], (Fnv64_t) {0xea767d78UL, 0x86cd26a9UL} },
2105
+ { &fnv_test_str[144], (Fnv64_t) {0x54a30c18UL, 0xe6b215ffUL} },
2106
+ { &fnv_test_str[145], (Fnv64_t) {0xc5531093UL, 0xec5b06a1UL} },
2107
+ { &fnv_test_str[146], (Fnv64_t) {0x9f9ec5e5UL, 0x45665a92UL} },
2108
+ { &fnv_test_str[147], (Fnv64_t) {0xa9f10907UL, 0x8c7609b4UL} },
2109
+ { &fnv_test_str[148], (Fnv64_t) {0x91f0d729UL, 0x89aac3a4UL} },
2110
+ { &fnv_test_str[149], (Fnv64_t) {0xe0f4a403UL, 0x32ce6b26UL} },
2111
+ { &fnv_test_str[150], (Fnv64_t) {0x02b53e01UL, 0x614ab44eUL} },
2112
+ { &fnv_test_str[151], (Fnv64_t) {0x6eef3290UL, 0xfa6472ebUL} },
2113
+ { &fnv_test_str[152], (Fnv64_t) {0x1948eb6aUL, 0x9e5d75ebUL} },
2114
+ { &fnv_test_str[153], (Fnv64_t) {0xa8671852UL, 0xb6d12ad4UL} },
2115
+ { &fnv_test_str[154], (Fnv64_t) {0xeba07af1UL, 0x88826f56UL} },
2116
+ { &fnv_test_str[155], (Fnv64_t) {0x645bc0fdUL, 0x44535bf2UL} },
2117
+ { &fnv_test_str[156], (Fnv64_t) {0xc21e3728UL, 0x169388ffUL} },
2118
+ { &fnv_test_str[157], (Fnv64_t) {0x396d8224UL, 0xf68aac9eUL} },
2119
+ { &fnv_test_str[158], (Fnv64_t) {0x472b3883UL, 0x8e87d7e7UL} },
2120
+ { &fnv_test_str[159], (Fnv64_t) {0xa8b423deUL, 0x295c26caUL} },
2121
+ { &fnv_test_str[160], (Fnv64_t) {0x92e72176UL, 0x322c8142UL} },
2122
+ { &fnv_test_str[161], (Fnv64_t) {0xb8af7268UL, 0x8a06550eUL} },
2123
+ { &fnv_test_str[162], (Fnv64_t) {0x661bcf71UL, 0xef86d60eUL} },
2124
+ { &fnv_test_str[163], (Fnv64_t) {0x7f30ee54UL, 0x9e5426c8UL} },
2125
+ { &fnv_test_str[164], (Fnv64_t) {0x26fd047eUL, 0xf1ea8aa8UL} },
2126
+ { &fnv_test_str[165], (Fnv64_t) {0x642cb769UL, 0x0babaf9aUL} },
2127
+ { &fnv_test_str[166], (Fnv64_t) {0x068d012eUL, 0x4b3341d4UL} },
2128
+ { &fnv_test_str[167], (Fnv64_t) {0xc30a335cUL, 0xd15605cbUL} },
2129
+ { &fnv_test_str[168], (Fnv64_t) {0xed8412e5UL, 0x5b21060aUL} },
2130
+ { &fnv_test_str[169], (Fnv64_t) {0xce6f4227UL, 0x45e2cda1UL} },
2131
+ { &fnv_test_str[170], (Fnv64_t) {0x033ad7d4UL, 0x50ae3745UL} },
2132
+ { &fnv_test_str[171], (Fnv64_t) {0xd46bf414UL, 0xaa4588ceUL} },
2133
+ { &fnv_test_str[172], (Fnv64_t) {0x4a95467eUL, 0xc1b0056cUL} },
2134
+ { &fnv_test_str[173], (Fnv64_t) {0xde8b4089UL, 0x56576a71UL} },
2135
+ { &fnv_test_str[174], (Fnv64_t) {0xa6dc927eUL, 0xbf20965fUL} },
2136
+ { &fnv_test_str[175], (Fnv64_t) {0xc2040882UL, 0x569f8383UL} },
2137
+ { &fnv_test_str[176], (Fnv64_t) {0xa08feca0UL, 0xe1e772fbUL} },
2138
+ { &fnv_test_str[177], (Fnv64_t) {0x97138ac4UL, 0x4ced94afUL} },
2139
+ { &fnv_test_str[178], (Fnv64_t) {0x337a82fbUL, 0xc4112ffbUL} },
2140
+ { &fnv_test_str[179], (Fnv64_t) {0x1de38b7dUL, 0xd64a4fd4UL} },
2141
+ { &fnv_test_str[180], (Fnv64_t) {0x9edebcbbUL, 0x4cfc3232UL} },
2142
+ { &fnv_test_str[181], (Fnv64_t) {0x45050395UL, 0x08035644UL} },
2143
+ { &fnv_test_str[182], (Fnv64_t) {0xf4642ffdUL, 0xaa1574ecUL} },
2144
+ { &fnv_test_str[183], (Fnv64_t) {0x4cc315f9UL, 0x694bc4e5UL} },
2145
+ { &fnv_test_str[184], (Fnv64_t) {0x3b011721UL, 0xa3d7cb27UL} },
2146
+ { &fnv_test_str[185], (Fnv64_t) {0x6115bfa5UL, 0x577c2f8bUL} },
2147
+ { &fnv_test_str[186], (Fnv64_t) {0x769fb4c1UL, 0xb7ec8c1aUL} },
2148
+ { &fnv_test_str[187], (Fnv64_t) {0x3359ab19UL, 0x5d5cfce6UL} },
2149
+ { &fnv_test_str[188], (Fnv64_t) {0xd65b5f71UL, 0x33b96c3cUL} },
2150
+ { &fnv_test_str[189], (Fnv64_t) {0x80602bb9UL, 0xd8450977UL} },
2151
+ { &fnv_test_str[190], (Fnv64_t) {0xd02da3d5UL, 0x84d47645UL} },
2152
+ { &fnv_test_str[191], (Fnv64_t) {0xb58773a5UL, 0x83544f33UL} },
2153
+ { &fnv_test_str[192], (Fnv64_t) {0x160836c5UL, 0x9175cbb2UL} },
2154
+ { &fnv_test_str[193], (Fnv64_t) {0x75e72bc5UL, 0xc71b3bc1UL} },
2155
+ { &fnv_test_str[194], (Fnv64_t) {0x222ec985UL, 0x636806acUL} },
2156
+ { &fnv_test_str[195], (Fnv64_t) {0x50f52ed5UL, 0xb6ef0e69UL} },
2157
+ { &fnv_test_str[196], (Fnv64_t) {0xf3dfdaa5UL, 0xead3d8a0UL} },
2158
+ { &fnv_test_str[197], (Fnv64_t) {0x9a861ba5UL, 0x922908feUL} },
2159
+ { &fnv_test_str[198], (Fnv64_t) {0x275fd5c5UL, 0x6d4821deUL} },
2160
+ { &fnv_test_str[199], (Fnv64_t) {0x2bd816b5UL, 0x1fe3fce6UL} },
2161
+ { &fnv_test_str[200], (Fnv64_t) {0xd6f70591UL, 0xc23e9fccUL} },
2162
+ { &fnv_test_str[201], (Fnv64_t) {0xfe16b5b5UL, 0xc1af12bdUL} },
2163
+ { &fnv_test_str[202], (Fnv64_t) {0x2f85e221UL, 0x39e9f18fUL} },
2164
+ { NULL, (Fnv64_t) {0,0} }
2165
+ };
2166
+ #endif /* HAVE_64BIT_LONG_LONG */
2167
+
2168
+ /* end of output generated by make vector.c */
2169
+ /*
2170
+ * insert the contents of vector.c above
2171
+ */
2172
+
2173
+
2174
+ /*
2175
+ * unknown_hash_type - report an unknown hash type error
2176
+ *
2177
+ * NOTE: Does not return.
2178
+ */
2179
+ void
2180
+ unknown_hash_type(char *prog, enum fnv_type type, int code)
2181
+ {
2182
+ fprintf(stderr, "%s: unknown or unexpexted hash type: %d\n", prog, type);
2183
+ exit(code);
2184
+ }
2185
+
2186
+
2187
+ /*
2188
+ * print_fnv32 - print an FNV hash
2189
+ *
2190
+ * given:
2191
+ * hval the hash value to print
2192
+ * mask lower bit mask
2193
+ * verbose 1 => print arg with hash
2194
+ * arg string or filename arg
2195
+ */
2196
+ void
2197
+ print_fnv32(Fnv32_t hval, Fnv32_t mask, int verbose, char *arg)
2198
+ {
2199
+ if (verbose) {
2200
+ printf("0x%08lx %s\n", hval & mask, arg);
2201
+ } else {
2202
+ printf("0x%08lx\n", hval & mask);
2203
+ }
2204
+ }
2205
+
2206
+
2207
+ /*
2208
+ * print_fnv64 - print an FNV hash
2209
+ *
2210
+ * given:
2211
+ * hval the hash value to print
2212
+ * mask lower bit mask
2213
+ * verbose 1 => print arg with hash
2214
+ * arg string or filename arg
2215
+ */
2216
+ void
2217
+ print_fnv64(Fnv64_t hval, Fnv64_t mask, int verbose, char *arg)
2218
+ {
2219
+ #if defined(HAVE_64BIT_LONG_LONG)
2220
+ if (verbose) {
2221
+ printf("0x%016llx %s\n", hval & mask, arg);
2222
+ } else {
2223
+ printf("0x%016llx\n", hval & mask);
2224
+ }
2225
+ #else
2226
+ if (verbose) {
2227
+ printf("0x%08lx%08lx %s\n",
2228
+ hval.w32[1] & mask.w32[1],
2229
+ hval.w32[0] & mask.w32[0],
2230
+ arg);
2231
+ } else {
2232
+ printf("0x%08lx%08lx\n",
2233
+ hval.w32[1] & mask.w32[1],
2234
+ hval.w32[0] & mask.w32[0]);
2235
+ }
2236
+ #endif
2237
+ }