Home | History | Annotate | Download | only in regex

Lines Matching refs:here

73 /* do "if I'm here, I can also be there" etc without branches */
74 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
75 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
76 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
122 /* do "if I'm here, I can also be there" etc without branches */
123 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
124 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
125 #define ISSETBACK(v, n) ((v)[here - (n)])
134 * We put this here so we can exploit knowledge of the state representation