Home | History | Annotate | Download | only in pcrecpp

Lines Matching refs:max_value

936     static const int max_value = 0x7fffffff;
937 static const int min_value = -max_value - 1;
940 CHECK(RE("(-?\\d+)").FullMatch("2147483647", &v)); CHECK_EQ(v, max_value);
947 static const unsigned int max_value = 0xfffffffful;
949 CHECK(RE("(\\d+)").FullMatch("4294967295", &v)); CHECK_EQ(v, max_value);
962 static const long long max_value = 0x7fffffffffffffffLL;
963 static const long long min_value = -max_value - 1;
969 sprintf(buf, LLD, max_value);
970 CHECK(RE("(-?\\d+)").FullMatch(buf,&v)); CHECK_EQ(v, max_value);
975 sprintf(buf, LLD, max_value);
990 static const unsigned long long max_value = 0xffffffffffffffffULL;
996 sprintf(buf, LLU, max_value);
997 CHECK(RE("(-?\\d+)").FullMatch(buf,&v)); CHECK_EQ(v, max_value);