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

References

projects/openmp/runtime/src/kmp_runtime.cpp
 7813   (*ptr)++;
 7816   if (**ptr == '%') {
 7818     (*ptr)++; // skip over the second %
 7824   if (**ptr == '0') {
 7826     (*ptr)++; // skip over 0
 7829   if (**ptr == '.') {
 7831     (*ptr)++; // skip over .
 7835   if (**ptr >= '0' && **ptr <= '9') {
 7835   if (**ptr >= '0' && **ptr <= '9') {
 7836     width_left = *ptr;
 7837     SKIP_DIGITS(*ptr);
 7838     width_right = *ptr;
 7862   parse_long_name = (**ptr == '{');
 7864     (*ptr)++; // skip initial left brace
 7873       if (strncmp(*ptr, long_name, length) == 0) {
 7875         (*ptr) += length; // skip the long name
 7877     } else if (**ptr == short_name) {
 7879       (*ptr)++; // skip the short name
 7889     if (**ptr != '}') {
 7892       (*ptr)++; // skip over the right brace
 7946       SKIP_TOKEN(*ptr);
 7947       if (**ptr == '}')
 7948         (*ptr)++;
 7950       (*ptr)++;