mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-18 10:10:35 +03:00
fix names, use own intrinsic instead of explicit _mm* ones
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user