reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/builtins/ctzsi2.c
   21   si_int t = ((x & 0x0000FFFF) == 0)
   23   x >>= t;         // x = [0 - 0xFFFF] + higher garbage bits
   26   t = ((x & 0x00FF) == 0) << 3;
   27   x >>= t; // x = [0 - 0xFF] + higher garbage bits
   30   t = ((x & 0x0F) == 0) << 2;
   31   x >>= t; // x = [0 - 0xF] + higher garbage bits
   34   t = ((x & 0x3) == 0) << 1;
   35   x >>= t;
   36   x &= 3; // x = [0 - 3]
   52   return r + ((2 - (x >> 1)) & -((x & 1) == 0));
   52   return r + ((2 - (x >> 1)) & -((x & 1) == 0));