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

Declarations

projects/openmp/runtime/src/kmp.h
 2783     __kmp_debug_buf_chars; /* How many characters allowed per line in buffer */

References

projects/openmp/runtime/src/kmp_debug.cpp
   89                                    __kmp_debug_buf_chars];
   91         &__kmp_debug_buffer[__kmp_debug_buf_lines * __kmp_debug_buf_chars];
  102         for (db2 = db + 1; db2 < db + __kmp_debug_buf_chars - 1; db2++) {
  113         if (db2 == db + __kmp_debug_buf_chars - 1 && *db2 == '\0' &&
  118         __kmp_printf_no_lock("%4d: %.*s", i, __kmp_debug_buf_chars, db);
  122       db += __kmp_debug_buf_chars;
projects/openmp/runtime/src/kmp_io.cpp
  148     char *db = &__kmp_debug_buffer[dc * __kmp_debug_buf_chars];
  155     chars += KMP_VSNPRINTF(db, __kmp_debug_buf_chars, format, ap);
  157     if (chars + 1 > __kmp_debug_buf_chars) {
  177       db[__kmp_debug_buf_chars - 2] = '\n';
  178       db[__kmp_debug_buf_chars - 1] = '\0';