fix names, use own intrinsic instead of explicit _mm* ones

This commit is contained in:
Konstantinos Margaritis
2020-09-23 11:51:21 +03:00
parent f7a6b8934c
commit 5333467249
15 changed files with 137 additions and 137 deletions

View File

@@ -30,11 +30,11 @@
static really_inline m256 getMask(u8 c, bool noCase) {
u8 k = caseClear8(c, noCase);
return set32x8(k);
return set1_32x8(k);
}
static really_inline m256 getCaseMask(void) {
return set32x8(0xdf);
return set1_32x8(0xdf);
}
static really_inline

View File

@@ -30,11 +30,11 @@
static really_inline m128 getMask(u8 c, bool noCase) {
u8 k = caseClear8(c, noCase);
return set16x8(k);
return set1_16x8(k);
}
static really_inline m128 getCaseMask(void) {
return set16x8(0xdf);
return set1_16x8(0xdf);
}
static really_inline