Lines Matching defs:bit
1229 ANTLR3_UINT32 bit;
1253 // No token number 0, so look for bit 1 and on.
1255 for (bit = 1; bit < numbits && count < 8 && count < size; bit++)
1257 // TODO: This doesn;t look right - should be asking if the bit is set!!
1259 if (tokenNames[bit])
1261 ANTLR3_FPRINTF(stderr, "%s%s", count > 0 ? ", " : "", tokenNames[bit]);
1870 /* Did not find it, so create a new one for it, with a bit depth based on the
1871 * size of the input stream. We need the bit depth to incorporate the number if
1873 * last character. An int stream is free to return the largest 64 bit offset if it has
1875 * bit match algorithm to run to 63 bits, which will be the whole time spent in the trie ;-)
2141 recognizer->state->ruleMemo = antlr3IntTrieNew(15); /* 16 bit depth is enough for 32768 rules! */