Searched defs:clz32 (Results 1 - 3 of 3) sorted by relevance

/external/qemu/
H A Dhost-utils.h52 static inline int clz32(uint32_t val) function
91 return clz32(~val);
110 return cnt + clz32(val);
/external/valgrind/main/VEX/priv/
H A Dguest_generic_x87.c566 static UInt clz32 ( UInt x ) function
592 return 32 - clz32((~x) & (x-1));
655 newECX = intRes2 == 0 ? 16 : (31 - clz32(intRes2));
/external/valgrind/main/none/tests/amd64/
H A Dpcmpstr64.c41 UInt clz32 ( UInt x ) function
67 return 32 - clz32((~x) & (x-1));
148 newECX = intRes2 == 0 ? 16 : (31 - clz32(intRes2));
1309 UInt clz32 ( UInt x ) function
1335 return 32 - clz32((~x) & (x-1));
1416 newECX = intRes2 == 0 ? 16 : (31 - clz32(intRes2));

Completed in 69 milliseconds