Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/Common/
H A DErrorHandler.cpp64 uint64_t lld::errorCount() { return errorHandler().errorCount; } in errorCount() function in lld
274 if (errorLimit == 0 || errorCount < errorLimit) { in error()
276 } else if (errorCount == errorLimit) { in error()
281 ++errorCount; in error()
315 --errorCount; in error()
/freebsd/contrib/llvm-project/lld/include/lld/Common/
H A DErrorHandler.h97 uint64_t errorCount = 0; variable
153 uint64_t errorCount();
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c519 int errorCount; member
536 zwd->errorCount = 0; in ZWRAP_initDCtx()
900 zwd->errorCount++; in z_inflate()
902 ZSTD_getErrorName(dErr), zwd->errorCount); in z_inflate()
903 if (zwd->errorCount<=1) return Z_NEED_DICT; else goto error; in z_inflate()
/freebsd/contrib/llvm-project/lld/COFF/
H A DDriver.cpp80 uint64_t coff::errCount(COFFLinkerContext &ctx) { return ctx.e.errorCount; } in errCount()
2249 if (errorCount()) in linkerMain()
2280 if (errorCount()) in linkerMain()
2636 if (errorCount()) in linkerMain()
2682 if (errorCount()) in linkerMain()
H A DWriter.cpp823 if (errorCount()) in run()
/freebsd/contrib/llvm-project/lld/MachO/
H A DDriver.cpp1612 if (errorCount()) in link()
2164 return errorCount() == 0; in link()
2253 if (errorCount() != 0 || config->strictAutoLink) in link()
2257 return errorCount() == 0; in link()
H A DWriter.cpp1303 if (errorCount()) in writeOutputFile()
1337 if (errorCount()) in run()
/freebsd/contrib/llvm-project/lld/ELF/
H A DDriver.cpp91 uint64_t elf::errCount(Ctx &ctx) { return ctx.e.errorCount; } in errCount()