Symbol: OPSHIFT
lib/libc/regex/regcomp.c
1750
assert(opnd < 1<<OPSHIFT);
lib/libc/regex/regcomp.c
1808
assert(value < 1<<OPSHIFT);
lib/libc/regex/regex2.h
100
#define OOR2 (17L<<OPSHIFT) /* | pt. 2 fwd to OOR2 or O_CH */
lib/libc/regex/regex2.h
101
#define O_CH (18L<<OPSHIFT) /* end choice back to OOR1 */
lib/libc/regex/regex2.h
102
#define OBOW (19L<<OPSHIFT) /* begin word - */
lib/libc/regex/regex2.h
103
#define OEOW (20L<<OPSHIFT) /* end word - */
lib/libc/regex/regex2.h
104
#define OBOS (21L<<OPSHIFT) /* begin subj. - */
lib/libc/regex/regex2.h
105
#define OEOS (22L<<OPSHIFT) /* end subj. - */
lib/libc/regex/regex2.h
106
#define OWBND (23L<<OPSHIFT) /* word bound - */
lib/libc/regex/regex2.h
107
#define ONWBND (24L<<OPSHIFT) /* not bound - */
lib/libc/regex/regex2.h
84
#define OEND (1L<<OPSHIFT) /* endmarker - */
lib/libc/regex/regex2.h
85
#define OCHAR (2L<<OPSHIFT) /* character wide character */
lib/libc/regex/regex2.h
86
#define OBOL (3L<<OPSHIFT) /* left anchor - */
lib/libc/regex/regex2.h
87
#define OEOL (4L<<OPSHIFT) /* right anchor - */
lib/libc/regex/regex2.h
88
#define OANY (5L<<OPSHIFT) /* . - */
lib/libc/regex/regex2.h
89
#define OANYOF (6L<<OPSHIFT) /* [...] set number */
lib/libc/regex/regex2.h
90
#define OBACK_ (7L<<OPSHIFT) /* begin \d paren number */
lib/libc/regex/regex2.h
91
#define O_BACK (8L<<OPSHIFT) /* end \d paren number */
lib/libc/regex/regex2.h
92
#define OPLUS_ (9L<<OPSHIFT) /* + prefix fwd to suffix */
lib/libc/regex/regex2.h
93
#define O_PLUS (10L<<OPSHIFT) /* + suffix back to prefix */
lib/libc/regex/regex2.h
94
#define OQUEST_ (11L<<OPSHIFT) /* ? prefix fwd to suffix */
lib/libc/regex/regex2.h
95
#define O_QUEST (12L<<OPSHIFT) /* ? suffix back to prefix */
lib/libc/regex/regex2.h
96
#define OLPAREN (13L<<OPSHIFT) /* ( fwd to ) */
lib/libc/regex/regex2.h
97
#define ORPAREN (14L<<OPSHIFT) /* ) back to ( */
lib/libc/regex/regex2.h
98
#define OCH_ (15L<<OPSHIFT) /* begin choice fwd to OOR2 */
lib/libc/regex/regex2.h
99
#define OOR1 (16L<<OPSHIFT) /* | pt. 1 back to OOR1 or OCH_ */