Searched refs:BITS_PER_LONG (Results 1 - 3 of 3) sorted by relevance

/xsrc/external/mit/xorg-server.old/dist/record/
H A Dset.c85 #define BITS_PER_LONG (sizeof(unsigned long) * 8) macro
101 return (pbitvec[pm / BITS_PER_LONG] & ((unsigned long)1 << (pm % BITS_PER_LONG)));
118 startlong = iterbit / BITS_PER_LONG;
120 startbit = startlong * BITS_PER_LONG;
131 startbit += BITS_PER_LONG;
136 startbit += BITS_PER_LONG;
144 while (walkbit < BITS_PER_LONG && ((!(bits & ((unsigned long)1 << walkbit))) == bitval))
180 nlongs = (maxMember + BITS_PER_LONG) / BITS_PER_LONG;
[all...]
/xsrc/external/mit/xorg-server/dist/record/
H A Dset.c85 #define BITS_PER_LONG (sizeof(unsigned long) * 8) macro
102 return (pbitvec[pm / BITS_PER_LONG] &
103 ((unsigned long) 1 << (pm % BITS_PER_LONG)));
119 startlong = iterbit / BITS_PER_LONG;
121 startbit = startlong * BITS_PER_LONG;
131 startbit += BITS_PER_LONG;
135 startbit += BITS_PER_LONG;
144 while (walkbit < BITS_PER_LONG &&
183 nlongs = (maxMember + BITS_PER_LONG) / BITS_PER_LONG;
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/kdrive/linux/
H A Devdev.c38 #define BITS_PER_LONG (sizeof(long) * 8) macro
39 #define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1)
41 #define OFF(x) ((x)%BITS_PER_LONG)
42 #define LONG(x) ((x)/BITS_PER_LONG)

Completed in 4 milliseconds