| /freebsd-13.1/contrib/googletest/googletest/test/ |
| H A D | gtest_environment_test.cc | 112 void Check(bool condition, const char* msg) { in Check() function 144 Check(RunAllTests(env, NO_FAILURE) != 0, in main() 147 Check(test_was_run, in main() 150 Check(env->tear_down_was_run(), in main() 158 Check(test_was_run, in main() 161 Check(env->tear_down_was_run(), in main() 169 Check(!test_was_run, in main() 172 Check(env->tear_down_was_run(), in main() 178 Check(RunAllTests(env, NO_FAILURE) == 0, in main() 180 Check(!env->set_up_was_run(), in main() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/ |
| H A D | ARMDisassembler.cpp | 842 Check(S, SoftFail); in AddThumbPredicate() 867 Check(S, SoftFail); in AddThumbPredicate() 897 Check(S, SoftFail); in UpdateThumbVFPPredicate() 1197 Check(S, MCDisassembler::SoftFail); in DecodeGPRwithZRRegisterClass() 1452 Check(S, MCDisassembler::SoftFail); in DecodePredicateOperand() 1650 Check(S, MCDisassembler::SoftFail); in DecodeBitfieldMaskOperand() 5569 Check(S, MCDisassembler::SoftFail); in DecodeT2LDRDPreInstruction() 5571 Check(S, MCDisassembler::SoftFail); in DecodeT2LDRDPreInstruction() 5606 Check(S, MCDisassembler::SoftFail); in DecodeT2STRDPreInstruction() 6029 if (!Check(S, in DecodeLOLoop() [all …]
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/ |
| H A D | guarded_pool_allocator_fuchsia.cpp | 27 Check(Status == ZX_OK, "Failed to create Vmo"); in map() 33 Check(Status == ZX_OK, "Vmo mapping failed"); in map() 43 Check(Status == ZX_OK, "Vmo unmapping failed"); in unmap() 53 Check(Status == ZX_OK, "Failed to reserve guarded pool allocator memory"); in reserveGuardedPool() 62 Check(_zx_vmar_destroy(Vmar) == ZX_OK, "Failed to destroy a vmar"); in unreserveGuardedPool() 63 Check(_zx_handle_close(Vmar) == ZX_OK, "Failed to close a vmar"); in unreserveGuardedPool() 72 Check(Status == ZX_OK, "Failed to create vmo"); in allocateInGuardedPool() 84 Check(Status == ZX_OK, "Vmo mapping failed"); in allocateInGuardedPool() 96 Check(Status == ZX_OK, "Vmar unmapping failed"); in deallocateInGuardedPool()
|
| H A D | guarded_pool_allocator_posix.cpp | 49 Check(Ptr != MAP_FAILED, "Failed to map guarded pool allocator memory"); in map() 57 Check(munmap(Ptr, Size) == 0, in unmap() 65 Check(Ptr != MAP_FAILED, "Failed to reserve guarded pool allocator memory"); in reserveGuardedPool() 78 Check(mprotect(Ptr, Size, PROT_READ | PROT_WRITE) == 0, in allocateInGuardedPool() 90 Check(mmap(Ptr, Size, PROT_NONE, MAP_FIXED | MAP_ANONYMOUS | MAP_PRIVATE, -1, in deallocateInGuardedPool()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | Checkers.td | 205 HelpText<"Check for division by zero">, 505 HelpText<"Check for mismatched deallocators.">, 510 HelpText<"Check for proper usage of vfork">, 518 HelpText<"Check improper use of chroot">, 527 HelpText<"Check stream handling functions">, 531 HelpText<"Check for misuses of stream APIs">, 814 HelpText<"Check unreachable code">, 1112 HelpText<"Check usage of NSError** parameters">, 1660 HelpText<"Check uncounted lambda captures.">, 1668 HelpText<"Check uncounted call arguments.">, [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 1620 Check::FileCheckType &Check::FileCheckType::setCount(int C) { in setCount() 1647 case Check::CheckNone: in getDescription() 1649 case Check::CheckPlain: in getDescription() 1653 case Check::CheckNext: in getDescription() 1655 case Check::CheckSame: in getDescription() 1657 case Check::CheckNot: in getDescription() 1659 case Check::CheckDAG: in getDescription() 1667 case Check::CheckEOF: in getDescription() 1733 Check::FileCheckType(Check::CheckPlain).setCount(Count)); in FindCheckType() 1986 if ((CheckTy == Check::CheckNext || CheckTy == Check::CheckSame || in readCheckFile() [all …]
|
| /freebsd-13.1/tools/regression/p1003_1b/ |
| H A D | README | 6 p1003_1b fifo : Check that the FIFO scheduler seems to work. 7 p1003_1b p26 : Check that we support the expected features. 8 p1003_1b sched: Check that schedule switching seems to work. 9 p1003_1b yield: Check that yielding runs the expected process.
|
| /freebsd-13.1/sys/contrib/openzfs/config/ |
| H A D | always-compiler-options.m4 | 49 dnl # Check if gcc supports -Wframe-larger-than=<size> option. 70 dnl # Check if gcc supports -Wno-format-truncation option. 91 dnl # Check if gcc supports -Wno-format-truncation option. 113 dnl # Check if gcc supports -Wno-bool-compare option. 139 dnl # Check if gcc supports -Wno-unused-but-set-variable option. 165 dnl # Check if gcc supports -Wimplicit-fallthrough option. 188 dnl # Check if gcc supports -fno-omit-frame-pointer option. 209 dnl # Check if cc supports -fno-ipa-sra option.
|
| H A D | kernel-config-defined.m4 | 38 dnl # Check CONFIG_DEBUG_LOCK_ALLOC 76 dnl # Check CONFIG_TRIM_UNUSED_KSYMS 103 dnl # Check CONFIG_ZLIB_INFLATE 129 dnl # Check CONFIG_ZLIB_DEFLATE
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonDataObjects.h | 317 if (!T::Check(m_py_obj)) 389 if (!T::Check(obj.get().get())) 418 if (T::Check(py_obj)) 433 static bool Check(PyObject *py_obj); 451 static bool Check(PyObject *py_obj); 471 static bool Check(PyObject *py_obj); 493 static bool Check(PyObject *py_obj); 507 static bool Check(PyObject *py_obj); 525 static bool Check(PyObject *py_obj); 547 static bool Check(PyObject *py_obj); [all …]
|
| H A D | PythonDataObjects.cpp | 151 if (PythonModule::Check(m_py_obj)) in GetObjectType() 153 if (PythonList::Check(m_py_obj)) in GetObjectType() 155 if (PythonTuple::Check(m_py_obj)) in GetObjectType() 157 if (PythonDictionary::Check(m_py_obj)) in GetObjectType() 159 if (PythonString::Check(m_py_obj)) in GetObjectType() 162 if (PythonBytes::Check(m_py_obj)) in GetObjectType() 165 if (PythonByteArray::Check(m_py_obj)) in GetObjectType() 167 if (PythonBoolean::Check(m_py_obj)) in GetObjectType() 169 if (PythonInteger::Check(m_py_obj)) in GetObjectType() 171 if (PythonFile::Check(m_py_obj)) in GetObjectType() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | PoisonChecking.cpp | 155 auto *Check = in generateCreationChecksForBinOp() local 158 Checks.push_back(Check); in generateCreationChecksForBinOp() 164 auto *Check = in generateCreationChecksForBinOp() local 167 Checks.push_back(Check); in generateCreationChecksForBinOp() 206 Value *Check = in generateCreationChecks() local 209 Checks.push_back(Check); in generateCreationChecks() 219 Value *Check = in generateCreationChecks() local 222 Checks.push_back(Check); in generateCreationChecks()
|
| /freebsd-13.1/contrib/sendmail/cf/feature/ |
| H A D | ldap_routing.m4 | 16 # Check first two arguments. If they aren't set, may need to warn in proto.m4 21 # Check for third argument to indicate how to deal with non-existant 28 # Check for fourth argument to indicate how to deal with +detail info 33 # Check for sixth argument to indicate how to deal with tempfails
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python-typemaps.swig | 10 /* Check if is a list */ 11 if (PythonList::Check($input)) { 36 /* Check if is a list */ 38 if (PythonList::Check($input)) { 154 if (PythonString::Check($input)) { 164 else if (PythonBytes::Check($input)) { 177 if (PythonString::Check($input)) { 187 else if (PythonBytes::Check($input)) { 285 /* Check if is a list */ 432 if (PythonFile::Check($input)) { [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | GuardWidening.cpp | 606 GuardWideningImpl::RangeCheck Check( in parseRangeChecks() local 610 if (!isKnownNonNegative(Check.getLength(), DL)) in parseRangeChecks() 625 auto *BaseInst = dyn_cast<Instruction>(Check.getBase()); in parseRangeChecks() 631 Check.setBase(OpLHS); in parseRangeChecks() 632 APInt NewOffset = Check.getOffsetValue() + OpRHS->getValue(); in parseRangeChecks() 633 Check.setOffset(ConstantInt::get(Ctx, NewOffset)); in parseRangeChecks() 635 } else if (match(Check.getBase(), in parseRangeChecks() 639 Check.setBase(OpLHS); in parseRangeChecks() 640 APInt NewOffset = Check.getOffsetValue() + OpRHS->getValue(); in parseRangeChecks() 641 Check.setOffset(ConstantInt::get(Ctx, NewOffset)); in parseRangeChecks() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/FileCheck/ |
| H A D | FileCheck.h | 44 namespace Check { 112 Check::FileCheckType CheckTy; 167 FileCheckDiag(const SourceMgr &SM, const Check::FileCheckType &CheckTy,
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Context.cpp | 51 return Check(Parent, C.interpretExpr(E)); in evaluateAsRValue() 57 return Check(Parent, C.interpretDecl(VD)); in evaluateAsInitializer() 122 bool Context::Check(State &Parent, llvm::Expected<bool> &&Flag) { in Check() function in Context
|
| /freebsd-13.1/contrib/unbound/ |
| H A D | acx_python.m4 | 22 # Check if you have distutils, else fail 36 # Check for Python include path 51 # Check for Python library path 67 # Check for site packages
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MallocOverflowSecurityChecker.cpp | 151 auto P = [DR, Pred](const MallocOverflowCheck &Check) { in Erase() argument 152 if (const auto *CheckDR = dyn_cast<T1>(Check.variable)) in Erase() 153 return getDecl(CheckDR) == getDecl(DR) && Pred(Check); in Erase() 215 denomExtVal](const MallocOverflowCheck &Check) { in CheckAssignmentExpr() argument 217 (numeratorKnown && (denomExtVal >= Check.maxVal.getExtValue())); in CheckAssignmentExpr()
|
| /freebsd-13.1/contrib/expat/tests/ |
| H A D | README.txt | 6 The Expat tests use a partial internal implementation of the "Check" 7 unit testing framework for C. More information on Check can be found at:
|
| /freebsd-13.1/contrib/googletest/googletest/ |
| H A D | configure.ac | 26 # Check for programs used in building Google Test. 62 # TODO([email protected]) Check for the necessary system headers. 64 # TODO([email protected]) Check the types, structures, and other compiler
|
| /freebsd-13.1/contrib/file/magic/Magdir/ |
| H A D | natinst | 13 # Check if it's a LabVIEW File 15 # Check which kind of file it is
|
| /freebsd-13.1/crypto/heimdal/appl/rcp/ |
| H A D | ChangeLog | 16 * util.c: Check return values from setuid, prompted by MIT 20 * rcp.c: Check return values from setuid, prompted by MIT 24 * rcp.c: Check return values from seteuid, prompted by MIT 30 * rcp.c: Check return value from asprintf instead of string !=
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetInstrPredicate.td | 101 // Check if machine operands at index `First` and index `Second` both reference 119 // Check that the machine register operand at position `Index` references 126 // Check if register operand at index `Index` is the invalid register. 134 // Check that the operand at position `Index` is immediate `Imm`. 157 // Check that the operand at position `Index` is immediate value zero. 160 // Check that the instruction has exactly `Num` operands. 165 // Check that the instruction opcode is one of the opcodes in set `Opcodes`. 173 // Check that the instruction opcode is a pseudo opcode member of the set 192 // Check that all of the predicates in `Preds` evaluate to true. 196 // Check that at least one of the predicates in `Preds` evaluates to true. [all …]
|
| /freebsd-13.1/contrib/ntp/sntp/m4/ |
| H A D | openldap-thread-check.m4 | 133 dnl Check for no flags 136 dnl Check special pthread (final) flags 144 dnl Check pthread (final) libraries 152 dnl Check pthread (draft4) flags (depreciated) 155 dnl Check pthread (draft4) libraries (depreciated) 240 dnl Check functions for compatibility 243 dnl Check for pthread_rwlock_destroy with <pthread.h> 258 dnl Check for pthread_detach with <pthread.h> inclusion 278 dnl Check for setconcurreny functions 318 dnl Check if select causes an yield [all …]
|