Lines Matching defs:maxshift
71 int maxshift; /* Max shift of self and descendents. */
429 curr->maxshift = kwset->mind;
451 if (curr->accepting && fail->maxshift > curr->depth - fail->depth)
452 fail->maxshift = curr->depth - fail->depth;
457 shift exceeds their inherited maxshift. */
460 if (curr->maxshift > curr->parent->maxshift)
461 curr->maxshift = curr->parent->maxshift;
462 if (curr->shift > curr->maxshift)
463 curr->shift = curr->maxshift;