Home | History | Annotate | Download | only in regex

Lines Matching refs:here

134 /* do "if I'm here, I can also be there" etc without branches */
135 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
136 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
137 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
188 /* do "if I'm here, I can also be there" etc without branches */
189 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
190 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
191 #define ISSETBACK(v, n) ((v)[here - (n)])
221 * We put this here so we can exploit knowledge of the state representation