forked from boostorg/unordered
temporarily omitted _mm_loadu_si128
This commit is contained in:
@ -113,7 +113,7 @@ struct group15
|
|||||||
{
|
{
|
||||||
return _mm_movemask_epi8(
|
return _mm_movemask_epi8(
|
||||||
_mm_cmpeq_epi8(
|
_mm_cmpeq_epi8(
|
||||||
_mm_loadu_si128(&m),_mm_set1_epi32(match_word(hash))))&0x7FFF;
|
m/*_mm_loadu_si128(&m)*/,_mm_set1_epi32(match_word(hash))))&0x7FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool is_not_overflowed(std::size_t hash)const
|
inline bool is_not_overflowed(std::size_t hash)const
|
||||||
@ -131,7 +131,7 @@ struct group15
|
|||||||
inline int match_available()const
|
inline int match_available()const
|
||||||
{
|
{
|
||||||
return _mm_movemask_epi8(
|
return _mm_movemask_epi8(
|
||||||
_mm_cmpeq_epi8(_mm_loadu_si128(&m),_mm_setzero_si128()))&0x7FFF;
|
_mm_cmpeq_epi8(m/*_mm_loadu_si128(&m)*/,_mm_setzero_si128()))&0x7FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline int match_occupied()const
|
inline int match_occupied()const
|
||||||
|
Reference in New Issue
Block a user