Lines Matching defs:uint
340 kmp_uint64 uint = *out;
341 __kmp_str_to_uint(value, &uint, &msg);
343 if (uint < (unsigned int)min) {
345 uint = min;
346 } else if (uint > (unsigned int)max) {
348 uint = max;
351 // If overflow occurred msg contains error message and uint is very big. Cut
353 if (uint < (unsigned int)min) {
354 uint = min;
355 } else if (uint > (unsigned int)max) {
356 uint = max;
364 __kmp_str_buf_print(&buf, "%" KMP_UINT64_SPEC "", uint);
368 __kmp_type_convert(uint, out);