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

References

projects/openmp/runtime/src/kmp_settings.cpp
  373   __kmp_str_to_uint(value, &uint, &msg);
  375     if (uint < (unsigned int)min) {
  377       uint = min;
  378     } else if (uint > (unsigned int)max) {
  380       uint = max;
  385     if (uint < (unsigned int)min) {
  386       uint = min;
  387     } else if (uint > (unsigned int)max) {
  388       uint = max;
  396     __kmp_str_buf_print(&buf, "%" KMP_UINT64_SPEC "", uint);
  400   *out = uint;