OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bitcnt
(Results
1 - 2
of
2
) sorted by null
/external/bison/lib/
abitset.c
149
unsigned int
bitcnt
;
local
167
bitcnt
= bitno % BITSET_WORD_BITS;
174
word = srcp[windex] << (BITSET_WORD_BITS - 1 -
bitcnt
);
175
for (; word;
bitcnt
--)
179
list[count++] = bitoff +
bitcnt
;
182
*next = n_bits - (bitoff +
bitcnt
);
189
bitcnt
= BITSET_WORD_BITS - 1;
vbitset.c
172
unsigned int
bitcnt
;
local
190
bitcnt
= bitno % BITSET_WORD_BITS;
197
word = srcp[windex] << (BITSET_WORD_BITS - 1 -
bitcnt
);
198
for (; word;
bitcnt
--)
202
list[count++] = bitoff +
bitcnt
;
205
*next = n_bits - (bitoff +
bitcnt
);
212
bitcnt
= BITSET_WORD_BITS - 1;
Completed in 245 milliseconds