Home
last modified time | relevance | path

Searched refs:INTBITS (Results 1 – 2 of 2) sorted by relevance

/freebsd-11-stable/gnu/usr.bin/grep/
HDdfa.h57 #ifndef INTBITS
58 #define INTBITS (CHARBITS * sizeof (int)) macro
62 #define CHARCLASS_INTS ((NOTCHAR + INTBITS - 1) / INTBITS)
HDdfa.c226 return c[b / INTBITS] & 1 << b % INTBITS; in tstbit()
232 c[b / INTBITS] |= 1 << b % INTBITS; in setbit()
238 c[b / INTBITS] &= ~(1 << b % INTBITS); in clrbit()
2203 for (k = 0; k < INTBITS; ++k) in dfastate()
2206 int c = j * INTBITS + k; in dfastate()