HomeSort by relevance Sort by last modified time
    Searched defs:clz32 (Results 1 - 4 of 4) sorted by null

  /external/qemu/
host-utils.h 52 static inline int clz32(uint32_t val) function
91 return clz32(~val);
110 return cnt + clz32(val);
  /external/valgrind/main/VEX/priv/
guest_generic_x87.c 566 static UInt clz32 ( UInt x ) function
592 return 32 - clz32((~x) & (x-1));
667 newECX = intRes2 == 0 ? 16 : (31 - clz32(intRes2));
735 newECX = intRes2 == 0 ? 8 : (31 - clz32(intRes2));
    [all...]
  /external/valgrind/main/none/tests/amd64/
pcmpstr64.c 41 UInt clz32 ( UInt x ) function
67 return 32 - clz32((~x) & (x-1));
148 newECX = intRes2 == 0 ? 16 : (31 - clz32(intRes2));
    [all...]
pcmpstr64w.c 44 UInt clz32 ( UInt x ) function
70 return 32 - clz32((~x) & (x-1));
151 newECX = intRes2 == 0 ? 8 : (31 - clz32(intRes2));
    [all...]

Completed in 338 milliseconds