Lines Matching refs:j
269 int i, j, nstate; in expandlex() local
282 for (j = 0; j < 256; j++) in expandlex()
283 bigfsm[j][fp->state] = (short) nstate; in expandlex()
286 for (j = 0; j < 256; j++) in expandlex()
288 if( isalpha( j ) || (j == '_') ) in expandlex()
290 if (('a' <= j && j <= 'z') || ('A' <= j && j <= 'Z') in expandlex()
291 || j == '_') in expandlex()
293 bigfsm[j][fp->state] = (short) nstate; in expandlex()
296 for (j = '0'; j <= '9'; j++) in expandlex()
297 bigfsm[j][fp->state] = (short) nstate; in expandlex()
311 for (j = 0; j < 0xFF; j++) in expandlex()
312 if (j == '?' || j == '\\' || j == '\n' || j == '\r') in expandlex()
314 if (bigfsm[j][i] > 0) in expandlex()
315 bigfsm[j][i] = ~bigfsm[j][i]; in expandlex()
316 bigfsm[j][i] &= ~QBSBIT; in expandlex()