Searched refs:snp_result (Results 1 – 1 of 1) sorted by relevance
/external/llvm-project/openmp/runtime/src/ |
D | kmp_utility.cpp | 319 int snp_result; in __kmp_expand_file_name() local 365 snp_result = KMP_SNPRINTF(pos, end - pos + 1, "%0*d", cpu_width, in __kmp_expand_file_name() 367 if (snp_result >= 0 && snp_result <= end - pos) { in __kmp_expand_file_name() 378 snp_result = KMP_SNPRINTF(pos, end - pos + 1, "%0*lld", width, id); in __kmp_expand_file_name() 380 snp_result = KMP_SNPRINTF(pos, end - pos + 1, "%0*d", width, id); in __kmp_expand_file_name() 382 if (snp_result >= 0 && snp_result <= end - pos) { in __kmp_expand_file_name()
|