OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DUPMAX
(Results
1 - 5
of
5
) sorted by null
/bionic/libc/upstream-netbsd/libc/regex/
utils.h
75
#define
DUPMAX
_POSIX2_RE_DUP_MAX /* xxx is this right? */
76
#define INFINITY (
DUPMAX
+ 1)
regcomp.c
742
while (MORE() && isdigit((unsigned char)PEEK()) && count <=
DUPMAX
) {
747
REQUIRE(ndigits > 0 && count <=
DUPMAX
, REG_BADBR);
[
all
...]
/ndk/sources/host-tools/ndk-stack/regex/
utils.h
39
#define
DUPMAX
255
40
#define INFINITY (
DUPMAX
+ 1)
regcomp.c
609
while (MORE() && isdigit((uch)PEEK()) && count <=
DUPMAX
) {
614
REQUIRE(ndigits > 0 && count <=
DUPMAX
, REG_BADBR);
[
all
...]
/external/llvm/lib/Support/
regcomp.c
141
#define
DUPMAX
_POSIX2_RE_DUP_MAX
143
#define
DUPMAX
255
145
#define INFINITY (
DUPMAX
+ 1)
645
while (MORE() && isdigit((uch)PEEK()) && count <=
DUPMAX
) {
650
REQUIRE(ndigits > 0 && count <=
DUPMAX
, REG_BADBR);
[
all
...]
Completed in 85 milliseconds