Peter Wemm 2f9267ec23 Move the "- 1" into the RQB_FFS(mask) macro itself so that
implementations can provide a base zero ffs function if they wish.
This changes
  #define RQB_FFS(mask) (ffs64(mask))
  foo = RQB_FFS(mask) - 1;
to
  #define RQB_FFS(mask) (ffs64(mask) - 1)
  foo = RQB_FFS(mask);
On some platforms we can get the "- 1" for free, eg: those that use the
C code for ffs64().

Reviewed by:	jake (in principle)
2002-06-20 06:21:20 +00:00
..
2002-05-10 02:02:54 +00:00
2002-03-23 02:01:27 +00:00
2002-05-25 01:44:08 +00:00
2002-03-24 02:50:53 +00:00
2002-03-25 04:53:18 +00:00
2002-01-08 04:36:53 +00:00
2002-04-09 01:42:19 +00:00
2002-05-15 16:40:25 +00:00
2002-03-21 00:06:55 +00:00
2002-05-14 20:35:29 +00:00
2001-12-29 07:00:30 +00:00
2002-05-08 04:21:58 +00:00
2002-06-08 07:21:52 +00:00
2002-05-10 02:02:54 +00:00
2002-05-10 02:02:54 +00:00