andrewChen2014

Results 1 comments of andrewChen2014

modify like this can fix it static __inline int clz64(uint64_t val) { DWORD zeros = 0; if (_BitScanReverse64(&zeros, val)) { return 63 - zeros; } else { return 64; }...