Home
last modified time | relevance | path

Searched refs:errorCount (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/tools/test/testfloat/
H A DtestLoops.c478 errorCount = 0; in test_a_int32_z_float32()
529 errorCount = 0; in test_a_int32_z_float64()
582 errorCount = 0; in test_a_int32_z_floatx80()
637 errorCount = 0; in test_a_int32_z_float128()
692 errorCount = 0; in test_a_int64_z_float32()
743 errorCount = 0; in test_a_int64_z_float64()
796 errorCount = 0; in test_a_int64_z_floatx80()
851 errorCount = 0; in test_a_int64_z_float128()
906 errorCount = 0; in test_a_float32_z_int32()
963 errorCount = 0; in test_a_float32_z_int64()
[all …]
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DScriptLexer.cpp95 if (errorCount()) in setError()
188 bool ScriptLexer::atEOF() { return errorCount() || tokens.size() == pos; } in atEOF()
239 if (!inExpr || errorCount() || atEOF()) in maybeSplitExpr()
252 if (errorCount()) in next()
263 if (errorCount()) in peek()
272 if (errorCount()) in peek2()
301 if (errorCount()) in expect()
H A DScriptParser.cpp278 if (errorCount()) in readDefsym()
340 while (!errorCount() && !consume(")")) in readAsNeeded()
356 while (!errorCount() && !consume(")")) in readExtern()
387 while (!errorCount() && !consume(")")) { in readInput()
407 while (!errorCount() && !consume(")")) in readOutputArch()
473 while (!errorCount() && !consume("}")) { in readPhdrs()
562 while (!errorCount() && !consume("}")) in readOverwriteSections()
640 while (!errorCount() && !consume(")")) in readFilePatterns()
1082 while (!atEOF() && !errorCount()) { in readExpr1()
1215 while (!errorCount()) { in readInputSectionFlags()
[all …]
H A DDriver.cpp128 exitLld(errorCount() ? 1 : 0); in link()
130 bool ret = errorCount() == 0; in link()
542 if (errorCount()) in linkerMain()
548 if (errorCount()) in linkerMain()
1577 if (files.empty() && errorCount() == 0) in createFiles()
2191 if (errorCount()) in link()
2278 if (errorCount()) in link()
2331 if (errorCount()) in link()
H A DWriter.cpp595 if (errorCount()) in run()
637 if (errorCount()) in run()
644 if (errorCount()) in run()
659 if (errorCount()) in run()
1696 if (hasLinkOrder && errorCount() == 0) { in resolveShfLinkOrder()
2084 if (errorCount()) in finalizeSections()
2221 if (errorCount()) in finalizeSections()
/freebsd-13.1/contrib/llvm-project/lld/Common/
H A DErrorHandler.cpp219 if (errorLimit == 0 || errorCount < errorLimit) { in error()
222 } else if (errorCount == errorLimit) { in error()
230 ++errorCount; in error()
264 --errorCount; in error()
/freebsd-13.1/contrib/llvm-project/lld/include/lld/Common/
H A DErrorHandler.h96 uint64_t errorCount = 0;
140 inline uint64_t errorCount() { return errorHandler().errorCount; } in errorCount() function
/freebsd-13.1/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c504 int errorCount; member
521 zwd->errorCount = 0; in ZWRAP_initDCtx()
883 zwd->errorCount++; in z_inflate()
885 ZSTD_getErrorName(dErr), zwd->errorCount); in z_inflate()
886 if (zwd->errorCount<=1) return Z_NEED_DICT; else goto error; in z_inflate()
/freebsd-13.1/contrib/llvm-project/lld/COFF/
H A DDriver.cpp98 exitLld(errorCount() ? 1 : 0); in link()
100 bool ret = errorCount() == 0; in link()
1817 if (errorCount()) in linkerMain()
1881 if (errorCount()) in linkerMain()
2144 if (errorCount()) in linkerMain()
2175 if (errorCount()) in linkerMain()
H A DWriter.cpp655 if (errorCount()) in run()
/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DDriver.cpp1495 exitLld(errorCount() ? 1 : 0); in link()
1497 return !errorCount(); in link()
H A DWriter.cpp1090 if (errorCount()) in writeOutputFile()
/freebsd-13.1/contrib/llvm-project/lld/lib/Driver/
H A DDarwinLdDriver.cpp1222 exitLld(errorCount() ? 1 : 0); in link()