Home
last modified time | relevance | path

Searched refs:robust (Results 1 – 25 of 43) sorted by relevance

12

/llvm-project-15.0.7/libc/test/src/pthread/
H A Dpthread_mutexattr_test.cpp51 int robust; in TEST() local
54 ASSERT_EQ(__llvm_libc::pthread_mutexattr_getrobust(&attr, &robust), 0); in TEST()
55 ASSERT_EQ(robust, int(PTHREAD_MUTEX_STALLED)); in TEST()
59 ASSERT_EQ(__llvm_libc::pthread_mutexattr_getrobust(&attr, &robust), 0); in TEST()
60 ASSERT_EQ(robust, int(PTHREAD_MUTEX_ROBUST)); in TEST()
65 ASSERT_EQ(__llvm_libc::pthread_mutexattr_getrobust(&attr, &robust), 0); in TEST()
66 ASSERT_EQ(robust, int(PTHREAD_MUTEX_STALLED)); in TEST()
/llvm-project-15.0.7/libc/src/pthread/
H A Dpthread_mutexattr_setrobust.cpp20 (pthread_mutexattr_t *__restrict attr, int robust)) {
21 if (robust != PTHREAD_MUTEX_STALLED && robust != PTHREAD_MUTEX_ROBUST)
25 *attr = old | (robust << unsigned(PThreadMutexAttrPos::ROBUST_SHIFT));
H A Dpthread_mutexattr_getrobust.cpp20 int *__restrict robust)) {
21 *robust = (*attr & unsigned(PThreadMutexAttrPos::ROBUST_MASK)) >>
H A Dpthread_mutexattr_setrobust.h17 int robust);
H A Dpthread_mutexattr_getrobust.h17 int *__restrict robust);
/llvm-project-15.0.7/libc/src/__support/threads/linux/
H A Dmutex.h26 unsigned char robust; member
41 : timed(istimed), recursive(isrecursive), robust(isrobust), in Mutex()
49 mutex->robust = isrobust; in init()
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Dlocal_vars.ll5 ; generated. This test is not robust in the face of an frame-handling
/llvm-project-15.0.7/libcxx/docs/DesignDocs/
H A DCapturingConfigInfo.rst20 * The solution should be simple, consistent and robust to avoid subtle bugs.
/llvm-project-15.0.7/libcxx/docs/Status/
H A DCxx14Papers.csv16 "`3671 <https://wg21.link/n3671>`__","LWG","Making non-modifying sequence operations more robust","…
/llvm-project-15.0.7/llvm/docs/GlobalISel/
H A Dindex.rst104 b) to be robust against unforeseen failures and to enable iterative
/llvm-project-15.0.7/llvm/test/CodeGen/Mips/
H A Dfp16-promote.ll60 ; This test is not robust against variations in instruction scheduling.
/llvm-project-15.0.7/llvm/docs/
H A DMarkedUpDisassembly.rst21 The markup is simple enough in syntax to be robust even in the case of version
H A DHowToUpdateDebugInfo.rst343 Regression tests must be robust. Avoid hardcoding line/variable numbers in
H A DCompileCudaWithLLVM.rst290 clang's approach allows it to be highly robust to C++ edge cases, as it doesn't
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A DREADME-TestSuite153 tests much more robust.
161 test will be more robust.
/llvm-project-15.0.7/clang/docs/
H A DExternalClangExamples.rst80 with a modern, non-intrusive and robust approach."
/llvm-project-15.0.7/llvm/test/tools/llvm-objdump/MachO/
H A Dmalformed-machos.test3 // make sure llvm-objdump is robust is what matters.
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dpr44245.ll145 ; addressed in a non-robust fashion.
/llvm-project-15.0.7/clang/docs/analyzer/developer-docs/
H A Dnullability.rst86 …educing nullability information from the arguments after inlining is not robust enough (for exampl…
/llvm-project-15.0.7/llvm/test/tools/llvm-objdump/
H A Dmalformed-archives.test3 ## make sure llvm-objdump is robust is what matters.
/llvm-project-15.0.7/llvm/test/MC/Disassembler/ARM/
H A Darm-tests.txt49 # robust testing for other values when we get it fleshed out and working
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/
H A DContributing.rst372 Making your check robust
377 check is robust. Running your check on a large code base, such as Clang/LLVM, is a
384 Some suggestions to ensure your check is robust:
/llvm-project-15.0.7/lldb/docs/status/
H A Dprojects.rst57 on the robust communication protocols we always have nowadays, allow for
314 time" tests because they were more robust against a single failure. That makes
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DREADME.txt716 Clean up the test/MC/ARM files to have more robust register choices.
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Linalg/IR/
H A DLinalgInterfaces.td962 A safer and more robust alternative is to allow each op to define

12