Skip to content

Instantly share code, notes, and snippets.

View shangsony's full-sized avatar

sonyshang shangsony

View GitHub Profile
@pps83
pps83 / ctz_clz.cpp
Last active January 15, 2024 01:20
__builtin_ctz (ctzl, ctzll) and __builtin_clz (clzl, clzll) for Visual Studio
#ifdef _MSC_VER
#include <intrin.h>
static inline int __builtin_ctz(unsigned x)
{
return (int)_tzcnt_u32(x);
}
static inline int __builtin_ctzll(unsigned long long x)
{