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