This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-maat/scanner/ip_matcher/IntervalIndex/sigmastar_tools.cpp

15 lines
312 B
C++

#include "sigmastar_tools.h"
#include <stdlib.h>
#include <stdio.h>
static unsigned char popcnt_u16[65536];
#ifndef USE_SSE_INSTR
int popcnt_u64(unsigned long long x)
{
return popcnt_u16[x&0xFFFF]
+popcnt_u16[(x>>16)&0xFFFF]
+popcnt_u16[(x>>32)&0xFFFF]
+popcnt_u16[(x>>48)&0xFFFF];
}
#endif