513d613387
I would've preferred to just go with 4-spaces for indent and no tabs, but lao is a bit conservative about it. :^) Still, this is a ton better than mixing different styles all over the place, especially within the same file.
22 lines
480 B
C
22 lines
480 B
C
/*
|
|
* This software is licensed under the terms of the MIT-License
|
|
* See COPYING for further information.
|
|
* ---
|
|
* Copyright (c) 2011-2018, Lukas Weber <laochailan@web.de>.
|
|
* Copyright (c) 2012-2018, Andrei Alexeyev <akari@alienslab.net>.
|
|
*/
|
|
|
|
#include "taisei.h"
|
|
|
|
#include <immintrin.h>
|
|
#include "util_sse42.h"
|
|
|
|
uint32_t crc32str_sse42(uint32_t crc, const char *str) {
|
|
const uint8_t *s = (const uint8_t*)str;
|
|
|
|
while(*s) {
|
|
crc = _mm_crc32_u8(crc, *s++);
|
|
}
|
|
|
|
return crc;
|
|
}
|