reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_settings.cpp
 4195     SKIP_WS(next);
 4197     if (*next == '\0') {
 4202     if (((*next < '0' || *next > '9') && *next != ',') || total > 2) {
 4202     if (((*next < '0' || *next > '9') && *next != ',') || total > 2) {
 4202     if (((*next < '0' || *next > '9') && *next != ',') || total > 2) {
 4207     if (*next == ',') {
 4213       next++; // skip ','
 4214       SKIP_WS(next);
 4217     if (*next >= '0' && *next <= '9') {
 4217     if (*next >= '0' && *next <= '9') {
 4219       const char *buf = next;
 4222       SKIP_DIGITS(next);
 4225       const char *tmp = next;
 4227       if ((*next == ' ' || *next == '\t') && (*tmp >= '0' && *tmp <= '9')) {
 4227       if ((*next == ' ' || *next == '\t') && (*tmp >= '0' && *tmp <= '9')) {
 4232       num = __kmp_str_to_int(buf, *next);