1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
/* automatically generated by rust-bindgen */

#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct pair<_T1, _T2> {
    pub first: _T1,
    pub second: _T2,
    pub _phantom_0: ::std::marker::PhantomData<::std::cell::UnsafeCell<_T1>>,
    pub _phantom_1: ::std::marker::PhantomData<::std::cell::UnsafeCell<_T2>>,
}
pub type pair_first_type<_T1> = _T1;
pub type pair_second_type<_T2> = _T2;
pub type uint32 = u32;
pub type uint64 = u64;
pub type uint128 = pair<::std::os::raw::c_ulong, ::std::os::raw::c_ulong>;
extern "C" {
    #[link_name = "_Z18CityHash32WithSeedPKcmj"]
    pub fn CityHash32WithSeed(buf: *const ::std::os::raw::c_char,
                              len: usize,
                              seed: uint32)
                              -> uint32;
}
extern "C" {
    #[link_name = "_Z10CityHash64PKcm"]
    pub fn CityHash64(buf: *const ::std::os::raw::c_char, len: usize) -> uint64;
}
extern "C" {
    #[link_name = "_Z18CityHash64WithSeedPKcmm"]
    pub fn CityHash64WithSeed(buf: *const ::std::os::raw::c_char,
                              len: usize,
                              seed: uint64)
                              -> uint64;
}
extern "C" {
    #[link_name = "_Z19CityHash64WithSeedsPKcmmm"]
    pub fn CityHash64WithSeeds(buf: *const ::std::os::raw::c_char,
                               len: usize,
                               seed0: uint64,
                               seed1: uint64)
                               -> uint64;
}
extern "C" {
    #[link_name = "_Z11CityHash128PKcm"]
    pub fn CityHash128(s: *const ::std::os::raw::c_char, len: usize) -> uint128;
}
extern "C" {
    #[link_name = "_Z19CityHash128WithSeedPKcmSt4pairImmE"]
    pub fn CityHash128WithSeed(s: *const ::std::os::raw::c_char,
                               len: usize,
                               seed: uint128)
                               -> uint128;
}
extern "C" {
    #[link_name = "_Z14CityHashCrc128PKcm"]
    pub fn CityHashCrc128(s: *const ::std::os::raw::c_char, len: usize) -> uint128;
}
extern "C" {
    #[link_name = "_Z22CityHashCrc128WithSeedPKcmSt4pairImmE"]
    pub fn CityHashCrc128WithSeed(s: *const ::std::os::raw::c_char,
                                  len: usize,
                                  seed: uint128)
                                  -> uint128;
}
extern "C" {
    #[link_name = "_Z14CityHashCrc256PKcmPm"]
    pub fn CityHashCrc256(s: *const ::std::os::raw::c_char, len: usize, result: *mut uint64);
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct uint128_c_t {
    pub a: u64,
    pub b: u64,
}
#[test]
fn bindgen_test_layout_uint128_c_t() {
    assert_eq!(::std::mem::size_of::<uint128_c_t>(),
               16usize,
               concat!("Size of: ", stringify!(uint128_c_t)));
    assert_eq!(::std::mem::align_of::<uint128_c_t>(),
               8usize,
               concat!("Alignment of ", stringify!(uint128_c_t)));
}
impl Clone for uint128_c_t {
    fn clone(&self) -> Self {
        *self
    }
}
extern "C" {
    pub fn farmhash(s: *const ::std::os::raw::c_char, len: usize) -> usize;
}
extern "C" {
    pub fn farmhash32(s: *const ::std::os::raw::c_char, len: usize) -> u32;
}
extern "C" {
    pub fn farmhash32_with_seed(s: *const ::std::os::raw::c_char, len: usize, seed: u32) -> u32;
}
extern "C" {
    pub fn farmhash64(s: *const ::std::os::raw::c_char, len: usize) -> u64;
}
extern "C" {
    pub fn farmhash64_with_seed(s: *const ::std::os::raw::c_char, len: usize, seed: u64) -> u64;
}
extern "C" {
    pub fn farmhash64_with_seeds(s: *const ::std::os::raw::c_char,
                                 len: usize,
                                 seed0: u64,
                                 seed1: u64)
                                 -> u64;
}
extern "C" {
    pub fn farmhash128(s: *const ::std::os::raw::c_char, len: usize) -> uint128_c_t;
}
extern "C" {
    pub fn farmhash128_with_seed(s: *const ::std::os::raw::c_char,
                                 len: usize,
                                 seed: uint128_c_t)
                                 -> uint128_c_t;
}
extern "C" {
    pub fn farmhash_fingerprint32(s: *const ::std::os::raw::c_char, len: usize) -> u32;
}
extern "C" {
    pub fn farmhash_fingerprint64(s: *const ::std::os::raw::c_char, len: usize) -> u64;
}
extern "C" {
    pub fn farmhash_fingerprint128(s: *const ::std::os::raw::c_char, len: usize) -> uint128_c_t;
}
extern "C" {
    #[link_name = "_Z13metrohash64_1PKhmjPh"]
    pub fn metrohash64_1(key: *const u8, len: u64, seed: u32, out: *mut u8);
}
extern "C" {
    #[link_name = "_Z13metrohash64_2PKhmjPh"]
    pub fn metrohash64_2(key: *const u8, len: u64, seed: u32, out: *mut u8);
}
extern "C" {
    #[link_name = "_Z16metrohash64crc_1PKhmjPh"]
    pub fn metrohash64crc_1(key: *const u8, len: u64, seed: u32, out: *mut u8);
}
extern "C" {
    #[link_name = "_Z16metrohash64crc_2PKhmjPh"]
    pub fn metrohash64crc_2(key: *const u8, len: u64, seed: u32, out: *mut u8);
}
extern "C" {
    #[link_name = "_Z14metrohash128_1PKhmjPh"]
    pub fn metrohash128_1(key: *const u8, len: u64, seed: u32, out: *mut u8);
}
extern "C" {
    #[link_name = "_Z14metrohash128_2PKhmjPh"]
    pub fn metrohash128_2(key: *const u8, len: u64, seed: u32, out: *mut u8);
}
extern "C" {
    #[link_name = "_Z17metrohash128crc_1PKhmjPh"]
    pub fn metrohash128crc_1(key: *const u8, len: u64, seed: u32, out: *mut u8);
}
extern "C" {
    #[link_name = "_Z17metrohash128crc_2PKhmjPh"]
    pub fn metrohash128crc_2(key: *const u8, len: u64, seed: u32, out: *mut u8);
}
extern "C" {
    #[link_name = "_Z11MurmurHash1PKvij"]
    pub fn MurmurHash1(key: *const ::std::os::raw::c_void,
                       len: ::std::os::raw::c_int,
                       seed: u32)
                       -> u32;
}
extern "C" {
    #[link_name = "_Z18MurmurHash1AlignedPKvij"]
    pub fn MurmurHash1Aligned(key: *const ::std::os::raw::c_void,
                              len: ::std::os::raw::c_int,
                              seed: u32)
                              -> u32;
}
extern "C" {
    #[link_name = "_Z11MurmurHash2PKvij"]
    pub fn MurmurHash2(key: *const ::std::os::raw::c_void,
                       len: ::std::os::raw::c_int,
                       seed: u32)
                       -> u32;
}
extern "C" {
    #[link_name = "_Z13MurmurHash64APKvim"]
    pub fn MurmurHash64A(key: *const ::std::os::raw::c_void,
                         len: ::std::os::raw::c_int,
                         seed: u64)
                         -> u64;
}
extern "C" {
    #[link_name = "_Z13MurmurHash64BPKvim"]
    pub fn MurmurHash64B(key: *const ::std::os::raw::c_void,
                         len: ::std::os::raw::c_int,
                         seed: u64)
                         -> u64;
}
extern "C" {
    #[link_name = "_Z12MurmurHash2APKvij"]
    pub fn MurmurHash2A(key: *const ::std::os::raw::c_void,
                        len: ::std::os::raw::c_int,
                        seed: u32)
                        -> u32;
}
extern "C" {
    #[link_name = "_Z18MurmurHashNeutral2PKvij"]
    pub fn MurmurHashNeutral2(key: *const ::std::os::raw::c_void,
                              len: ::std::os::raw::c_int,
                              seed: u32)
                              -> u32;
}
extern "C" {
    #[link_name = "_Z18MurmurHashAligned2PKvij"]
    pub fn MurmurHashAligned2(key: *const ::std::os::raw::c_void,
                              len: ::std::os::raw::c_int,
                              seed: u32)
                              -> u32;
}
extern "C" {
    #[link_name = "_Z18MurmurHash3_x86_32PKvijPv"]
    pub fn MurmurHash3_x86_32(key: *const ::std::os::raw::c_void,
                              len: ::std::os::raw::c_int,
                              seed: u32,
                              out: *mut ::std::os::raw::c_void);
}
extern "C" {
    #[link_name = "_Z19MurmurHash3_x86_128PKvijPv"]
    pub fn MurmurHash3_x86_128(key: *const ::std::os::raw::c_void,
                               len: ::std::os::raw::c_int,
                               seed: u32,
                               out: *mut ::std::os::raw::c_void);
}
extern "C" {
    #[link_name = "_Z19MurmurHash3_x64_128PKvijPv"]
    pub fn MurmurHash3_x64_128(key: *const ::std::os::raw::c_void,
                               len: ::std::os::raw::c_int,
                               seed: u32,
                               out: *mut ::std::os::raw::c_void);
}
extern "C" {
    pub fn t1ha(data: *const ::std::os::raw::c_void, len: usize, seed: u64) -> u64;
}
extern "C" {
    pub fn t1ha_64be(data: *const ::std::os::raw::c_void, len: usize, seed: u64) -> u64;
}
extern "C" {
    pub fn t1ha_32le(data: *const ::std::os::raw::c_void, len: usize, seed: u64) -> u64;
}
extern "C" {
    pub fn t1ha_32be(data: *const ::std::os::raw::c_void, len: usize, seed: u64) -> u64;
}
extern "C" {
    pub fn t1ha_ia32crc(data: *const ::std::os::raw::c_void, len: usize, seed: u64) -> u64;
}
#[repr(u32)]
/*****************************
   Type
*****************************/
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum XXH_errorcode {
    XXH_OK = 0,
    XXH_ERROR = 1,
}
extern "C" {
    /*****************************
   Simple Hash Functions
*****************************/
    pub fn XXH32(input: *const ::std::os::raw::c_void,
                 length: usize,
                 seed: ::std::os::raw::c_uint)
                 -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn XXH64(input: *const ::std::os::raw::c_void,
                 length: usize,
                 seed: ::std::os::raw::c_ulonglong)
                 -> ::std::os::raw::c_ulonglong;
}
/*****************************
   Advanced Hash Functions
*****************************/
#[repr(C)]
#[derive(Debug, Copy)]
pub struct XXH32_state_t {
    pub ll: [::std::os::raw::c_longlong; 6usize],
}
#[test]
fn bindgen_test_layout_XXH32_state_t() {
    assert_eq!(::std::mem::size_of::<XXH32_state_t>(),
               48usize,
               concat!("Size of: ", stringify!(XXH32_state_t)));
    assert_eq!(::std::mem::align_of::<XXH32_state_t>(),
               8usize,
               concat!("Alignment of ", stringify!(XXH32_state_t)));
}
impl Clone for XXH32_state_t {
    fn clone(&self) -> Self {
        *self
    }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct XXH64_state_t {
    pub ll: [::std::os::raw::c_longlong; 11usize],
}
#[test]
fn bindgen_test_layout_XXH64_state_t() {
    assert_eq!(::std::mem::size_of::<XXH64_state_t>(),
               88usize,
               concat!("Size of: ", stringify!(XXH64_state_t)));
    assert_eq!(::std::mem::align_of::<XXH64_state_t>(),
               8usize,
               concat!("Alignment of ", stringify!(XXH64_state_t)));
}
impl Clone for XXH64_state_t {
    fn clone(&self) -> Self {
        *self
    }
}
extern "C" {
    pub fn XXH32_createState() -> *mut XXH32_state_t;
}
extern "C" {
    pub fn XXH32_freeState(statePtr: *mut XXH32_state_t) -> XXH_errorcode;
}
extern "C" {
    pub fn XXH64_createState() -> *mut XXH64_state_t;
}
extern "C" {
    pub fn XXH64_freeState(statePtr: *mut XXH64_state_t) -> XXH_errorcode;
}
extern "C" {
    pub fn XXH32_reset(statePtr: *mut XXH32_state_t,
                       seed: ::std::os::raw::c_uint)
                       -> XXH_errorcode;
}
extern "C" {
    pub fn XXH32_update(statePtr: *mut XXH32_state_t,
                        input: *const ::std::os::raw::c_void,
                        length: usize)
                        -> XXH_errorcode;
}
extern "C" {
    pub fn XXH32_digest(statePtr: *const XXH32_state_t) -> ::std::os::raw::c_uint;
}
extern "C" {
    pub fn XXH64_reset(statePtr: *mut XXH64_state_t,
                       seed: ::std::os::raw::c_ulonglong)
                       -> XXH_errorcode;
}
extern "C" {
    pub fn XXH64_update(statePtr: *mut XXH64_state_t,
                        input: *const ::std::os::raw::c_void,
                        length: usize)
                        -> XXH_errorcode;
}
extern "C" {
    pub fn XXH64_digest(statePtr: *const XXH64_state_t) -> ::std::os::raw::c_ulonglong;
}
extern "C" {
    #[link_name = "_Z28farmhash_fingerprint_uint12811uint128_c_t"]
    pub fn farmhash_fingerprint_uint128(x: uint128_c_t) -> u64;
}
extern "C" {
    #[link_name = "_Z27farmhash_fingerprint_uint64m"]
    pub fn farmhash_fingerprint_uint64(x: u64) -> u64;
}
extern "C" {
    #[link_name = "_Z7lookup3PKvij"]
    pub fn lookup3(key: *const ::std::os::raw::c_void,
                   length: ::std::os::raw::c_int,
                   initval: u32)
                   -> u32;
}
extern "C" {
    #[link_name = "_Z9mum_hash_PKvmm"]
    pub fn mum_hash_(key: *const ::std::os::raw::c_void, len: usize, seed: u64) -> u64;
}
extern "C" {
    #[link_name = "_Z16SpookyHasherHashPKvmPmS1_"]
    pub fn SpookyHasherHash(message: *const ::std::os::raw::c_void,
                            length: usize,
                            hash1: *mut uint64,
                            hash2: *mut uint64);
}
extern "C" {
    #[link_name = "_Z15SpookyHasherNewv"]
    pub fn SpookyHasherNew() -> *mut ::std::os::raw::c_void;
}
extern "C" {
    #[link_name = "_Z16SpookyHasherFreePv"]
    pub fn SpookyHasherFree(h: *mut ::std::os::raw::c_void);
}
extern "C" {
    #[link_name = "_Z16SpookyHasherInitPvmm"]
    pub fn SpookyHasherInit(h: *mut ::std::os::raw::c_void, seed1: uint64, seed2: uint64);
}
extern "C" {
    #[link_name = "_Z18SpookyHasherUpdatePvPKvm"]
    pub fn SpookyHasherUpdate(h: *mut ::std::os::raw::c_void,
                              message: *const ::std::os::raw::c_void,
                              length: usize);
}
extern "C" {
    #[link_name = "_Z17SpookyHasherFinalPvPmS0_"]
    pub fn SpookyHasherFinal(h: *mut ::std::os::raw::c_void,
                             hash1: *mut uint64,
                             hash2: *mut uint64);
}
#[test]
fn __bindgen_test_layout_pair_instantiation_7216() {
    assert_eq!(::std::mem::size_of::<pair<::std::os::raw::c_ulong, ::std::os::raw::c_ulong>>(),
               16usize,
               concat!("Size of template specialization: ",
                       stringify ! (
               pair<::std::os::raw::c_ulong, ::std::os::raw::c_ulong> )));
    assert_eq!(::std::mem::align_of::<pair<::std::os::raw::c_ulong, ::std::os::raw::c_ulong>>(),
               8usize,
               concat!("Alignment of template specialization: ",
                       stringify ! (
               pair<::std::os::raw::c_ulong, ::std::os::raw::c_ulong> )));
}