xxhash.c (cf40a76e7d5874bb25f4404eecc58a2e033af885) xxhash.c (d89775fc929c5a1d91ed518a71b456da0865e5ff)
1/*
2 * xxHash - Extremely Fast Hash algorithm
3 * Copyright (C) 2012-2016, Yann Collet.
4 *
5 * BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

--- 20 unchanged lines hidden (view full) ---

29 *
30 * This program is free software; you can redistribute it and/or modify it under
31 * the terms of the GNU General Public License version 2 as published by the
32 * Free Software Foundation. This program is dual-licensed; you may select
33 * either version 2 of the GNU General Public License ("GPL") or BSD license
34 * ("BSD").
35 *
36 * You can contact the author at:
1/*
2 * xxHash - Extremely Fast Hash algorithm
3 * Copyright (C) 2012-2016, Yann Collet.
4 *
5 * BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

--- 20 unchanged lines hidden (view full) ---

29 *
30 * This program is free software; you can redistribute it and/or modify it under
31 * the terms of the GNU General Public License version 2 as published by the
32 * Free Software Foundation. This program is dual-licensed; you may select
33 * either version 2 of the GNU General Public License ("GPL") or BSD license
34 * ("BSD").
35 *
36 * You can contact the author at:
37 * - xxHash homepage: http://cyan4973.github.io/xxHash/
37 * - xxHash homepage: https://cyan4973.github.io/xxHash/
38 * - xxHash source repository: https://github.com/Cyan4973/xxHash
39 */
40
41#include <asm/unaligned.h>
42#include <linux/errno.h>
43#include <linux/compiler.h>
44#include <linux/kernel.h>
45#include <linux/module.h>

--- 455 unchanged lines hidden ---
38 * - xxHash source repository: https://github.com/Cyan4973/xxHash
39 */
40
41#include <asm/unaligned.h>
42#include <linux/errno.h>
43#include <linux/compiler.h>
44#include <linux/kernel.h>
45#include <linux/module.h>

--- 455 unchanged lines hidden ---