| /freebsd/sys/contrib/device-tree/Bindings/power/ |
| H A D | power_domain.txt | 5 current. 12 #power-domain-cells property in the PM domain provider node. 16 See power-domain.yaml. 21 - power-domains : A list of PM domain specifiers, as defined by bindings of 25 - power-domain-names : A list of power domain name strings sorted in the same 26 order as the power-domains property. Consumers drivers will use 27 power-domain-names to match power domains with power-domains 32 leaky-device@12350000 { 33 compatible = "foo,i-leak-current"; 35 power-domains = <&power 0>; [all …]
|
| H A D | qcom,rpmpd.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Bjorn Andersson <andersson@kernel.org> 19 - enum: 20 - qcom,mdm9607-rpmpd 21 - qcom,msm8226-rpmpd 22 - qcom,msm8909-rpmpd 23 - qcom,msm8916-rpmpd 24 - qcom,msm8917-rpmpd [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_common.cpp | 1 //=-- lsan_common.cpp -----------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // Implementation of common leak checking functionality. 12 //===----------------------------------------------------------------------===// 31 // https://github.com/apple-oss-distributions/objc4/blob/8701d5672d3fd3cd817aeb84db1077aafe1a1604/r… 51 if (common_flags()->detect_leaks) { in DisableCounterUnderflow() 65 RegisterFlag(parser, #Name, Description, &f->Name); in RegisterLsanFlags() 72 if (flags()->log_pointers) \ 78 if (flags()->log_threads) \ [all …]
|
| /freebsd/tools/tools/vimage/ |
| H A D | vimage.8 | 47 .Fl i 89 .Bl -tag -width indent 102 using the same syntax as with the -c form of the command. 108 Non-loopback interfaces residing in the target virtual image 112 the current one in the hierarchy. 119 .Op Ar -r 121 current level in the vimage hierarchy. 123 .Op Ar -v 125 .Op Ar -j 127 .It Fl i [all …]
|
| /freebsd/contrib/ntp/sntp/libevent/ |
| H A D | whatsnew-2.1.txt | 18 NOTE: I am very sure that I missed some thing on this list. Caveat 27 There is a work-in-progress book with reference manual at 28 http://www.wangafu.net/~nickm/libevent-book/ . 31 on the mailing list at libevent-users@freehaven.net. The mailing list 32 is subscribers-only, so you will need to subscribe before you post. 36 Our source-compatibility policy is that correct code (that is to say, 44 probably need to be recompiled against Libevent 2.1.4-alpha if you 52 We now provide an --enable-gcc-hardening configure option to turn on 55 There is also an --enable-silent-rules configure option to make 58 You no longer need to use the --enable-gcc-warnings option to turn on [all …]
|
| /freebsd/contrib/libevent/ |
| H A D | whatsnew-2.1.txt | 18 NOTE: I am very sure that I missed some thing on this list. Caveat 27 There is a work-in-progress book with reference manual at 28 http://www.wangafu.net/~nickm/libevent-book/ . 31 on the mailing list at libevent-users@freehaven.net. The mailing list 32 is subscribers-only, so you will need to subscribe before you post. 36 Our source-compatibility policy is that correct code (that is to say, 44 probably need to be recompiled against Libevent 2.1.4-alpha if you 52 We now provide an --enable-gcc-hardening configure option to turn on 55 There is also an --enable-silent-rules configure option to make 58 You no longer need to use the --enable-gcc-warnings option to turn on [all …]
|
| /freebsd/contrib/ntp/ntpd/ |
| H A D | ntp_prio_q.c | 19 * -------------- 37 /* preserve original callsite __FILE__ and __LINE__ for leak report */ in debug_create_priority_queue() 40 my_queue->get_order = get_order; in debug_create_priority_queue() 41 my_queue->front = NULL; in debug_create_priority_queue() 42 my_queue->no_of_elements = 0; in debug_create_priority_queue() 48 /* Define a function to "destroy" a priority queue, freeing-up 59 while (my_queue->front != NULL) { in destroy_queue() 60 temp = my_queue->front; in destroy_queue() 61 my_queue->front = my_queue->front->node_next; in destroy_queue() 91 new_node->node_next = NULL; in debug_get_node() [all …]
|
| /freebsd/contrib/ldns/ |
| H A D | Changelog | 1 1.8.3 2022-08-15 8 1.8.2 2022-08-12 14 * Fix -U flag with ldns-signzone. Thanks Ulrich and Jonathan 24 * bugfix #145: ldns-verify-zone should not call occluded records 27 1.8.1 2021-12-03 28 * bugfix #146: ldns-1.7.1 had soname 3.0, so ldns-1.8.x soname 30 * Undo PR#123 fix ldns.pc installation when building out-of-source 33 1.8.0 2021-11-26 36 * bugfix: Revert unused variables in ldns-config removal patch. 37 * bugfix #50: heap Out-of-bound Read vulnerability in [all …]
|
| /freebsd/contrib/gdtoa/ |
| H A D | changes | 3 (fixed-point mode); fix rounding bug in these modes when the input 4 d (to be converted) satisfies 10^-(ndigits+1) <= |d| < 10^-ndigits , 5 i.e., when the result, before rounding, would be empty but might 7 the result is empty (i.e., when |d| <= 5 * 10^-ndigits). 25 return +-Infinity for IEEE arithmetic, +- the largest machine number 30 dtoa.c: tweak strtod (one-line addition) so the end-pointer = start 35 reasonably with huge numbers and 16-bit ints. 47 < for(result_k = 0; sizeof(Bigint) - sizeof(unsigned long) + j < i; 48 --- 49 > for(result_k = 0; sizeof(Bigint) - sizeof(unsigned long) + j <= i; [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Signals.inc | 1 //===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 14 // This file is extremely careful to only do signal-safe things while in a 29 // Adding work to a signal handler requires lock-freedom (and assume atomics are 30 // always lock-free) because the signal handler could fire while new work is 33 //===----------------------------------------------------------------------===// 66 #include <mach-o/dyld.h> 89 /// The function to call if ctrl-c is pressed. [all …]
|
| /freebsd/sys/contrib/ncsw/etc/ |
| H A D | ncsw_mem.c | 3 � 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. 46 #define PAD_ALIGNMENT(align, x) (((x)%(align)) ? ((align)-((x)%(align))) : 0) 70 if (p_Mem->current == p_Mem->num) 72 p_Mem->getFailures++; 77 p_Block = p_Mem->p_BlocksStack[p_Mem->current]; 79 p_Mem->p_BlocksStack[p_Mem->current] = NULL; 81 /* advance current index */ 82 p_Mem->current++; 91 if (p_Mem->current > 0) 93 /* decrease current index */ [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountDiagnostics.cpp | 1 // RetainCountDiagnostics.cpp - Checks for leaks and other issues -*- C++ -*--// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 27 return "Use-after-release"; in bugTypeToName() 31 return "-dealloc sent to non-exclusively owned object"; in bugTypeToName() 33 return "freeing non-exclusively owned object"; in bugTypeToName() 39 return "Leak"; in bugTypeToName() 41 return "Leak of returned object"; in bugTypeToName() 49 return "Reference-counted object is used after it is released"; in getDescription() [all …]
|
| /freebsd/contrib/googletest/docs/ |
| H A D | primer.md | 24 platform-neutral; its tests should also be platform-neutral. GoogleTest 29 only stops the current test and continues with the next. You can also set up 30 tests that report non-fatal failures after which the current test continues. 31 Thus, you can detect and fix multiple bugs in a single run-edit-compile 38 across tests and pay for the set-up/tear-down only once, without making 52 related tests, whereas current publications, including International Software 72 :----------------------------------------------------------------------------------- | :-----------… 73 …am path with specific input values and verify the results | [TEST()](#simple-tests) | [Test Case][… 76 [istqb test case]: https://glossary.istqb.org/en_US/term/test-case-2 77 [istqb test suite]: https://glossary.istqb.org/en_US/term/test-suite-1-3 [all …]
|
| /freebsd/sys/contrib/openzfs/man/man8/ |
| H A D | zdb.8 | 1 .\" SPDX-License-Identifier: CDDL-1.0 29 .Op Fl I Ar inflight-I/O-ops 35 .Op Ar poolname Ns Op / Ns Ar dataset Ns | Ns Ar objset-ID 42 .Ar poolname Ns Op Ar / Ns Ar dataset Ns | Ns Ar objset-ID 49 .Ar poolname Ns Ar / Ns Ar objset-ID 50 .Op Ar backup-flags 72 .Fl -allocated-map 111 The output of this command in general reflects the on-disk structure of a ZFS 137 .Bl -tag -width Ds 138 .It Fl Sy -allocated-map [all …]
|
| /freebsd/contrib/smbfs/ |
| H A D | HISTORY | 2 - Some iconv libraries may refuse to recode some characters. This 6 - Workaround for W2K bug in resource listing. 7 - Minor bug fixes. 8 - Manual pages updated. Thanks to Ruslan Ermilov. 11 - Additional cleanups for FreeBSD builds. 12 - Charset specifications now accepted in the [default] section. 15 - Various merges (but not all) from Darwin project. 16 - Minor man pages corrections. 17 - Support builds in the FreeBSD main tree. 20 - Kernel side of smbfs committed in the FreeBSD-current. It controlled [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerLoop.cpp | 1 //===- FuzzerLoop.cpp - Fuzzer's main loop -------- 428 for (size_t i = 0; i != AdditionalCorpus.size(); ++i) { RereadOutputCorpus() local 740 for (int i = 0; i < Options.MutateDepth; i++) { MutateAndTestOne() local 920 for (int i = 0; i < Options.MutateDepth; i++) { MinimizeCrashLoop() local [all...] |
| /freebsd/contrib/jemalloc/ |
| H A D | ChangeLog | 13 workloads. The release has gone through large-scale production testing. 16 - Add the thread.idle mallctl which hints that the calling thread will be 18 - Allow small size classes to be the maximum size class to cache in the 19 thread-specific cache, through the opt.[lg_]tcache_max option. (@interwq, 21 - Make the behavior of realloc(ptr, 0) configurable with opt.zero_realloc. 23 - Add 'make uninstall' support. (@sangshuduo, @Lapenkov) 24 - Support C++17 over-aligned allocation. (@marksantaniello) 25 - Add the thread.peak mallctl for approximate per-threa [all...] |
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | OPENSSL_malloc.pod | 22 - Memory allocation functions 93 parameters and call a lower-level B<CRYPTO_xxx> API. 108 NOTE: The call to OPENSSL_aligned_alloc() accepts a 3rd argument, I<freeptr> 114 method, the caller must return the value in the I<freeptr> variable, rather than 141 it validates the input I<str> and I<num> parameters for not being NULL, and confirms 149 function pointers for the current implementations. 157 If the library is built with the C<crypto-mdebug> option, then one 208 CRYPTO_set_mem_debug(), and CRYPTO_mem_ctrl() are deprecated and are no-ops that 209 always return -1. 212 are deprecated and are no-ops that always return 0. [all …]
|
| H A D | CRYPTO_THREAD_run_once.pod | 12 OSSL_THREAD_SUPPORT_FLAG_DEFAULT_SPAWN - OpenSSL thread support 47 OpenSSL can be safely used in multi-threaded applications provided that 48 support for the underlying OS threading API is built-in. Currently, OpenSSL 50 any multi-threading support, for example on platforms that don't provide 54 The following multi-threading function are provided: 60 CRYPTO_THREAD_run_once() can be used to perform one-time initialization. 61 The I<once> argument must be a pointer to a static object of type 64 The I<init> argument is a pointer to a function that performs the desired 66 In particular, this can be used to allocate locks in a thread-safe manner, 76 CRYPTO_THREAD_read_lock() locks the provided I<lock> for reading. [all …]
|
| /freebsd/contrib/one-true-awk/ |
| H A D | FIXES.1e | 44 discovered by todd miller. also use-after-free issue with 48 Various leaks and use-after-free issues plugged/fixed. 52 Memory leak when assigning a string to some of the built-in 57 Historic bug: command-line "name=value" assignment had been 62 Fixed file management memory leak that appears to have been 83 As per IEEE Std 1003.1-2008, -F "str" is now consistent with 84 -v FS="str" when str is null. Thanks to Warner Losh. 91 Fix regular expression RS ^-anchoring. RS ^-anchoring needs to 120 Merge PR #98: Disallow hex data. Allow only +nan, -nan, 121 +inf, -inf (case independent) to give NaN and infinity values. [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ |
| H A D | SanitizerArgs.cpp | 1 //===--- SanitizerArgs.cpp - Arguments for sanitizer tools ---------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 51 SanitizerKind::KernelMemory | SanitizerKind::Leak | 112 /// Parse a -fsanitize= or -fno-sanitize= argument's values, diagnosing any 117 /// Parse -f(no-)?sanitize-coverage= flag values, diagnosing any invalid 122 /// Parse -f(no-)?sanitize-metadata= flag values, diagnosing any invalid 129 /// "-fsanitize=thread,vptr -fsanitize=address" with mask \c NeedsUbsanRt 130 /// would produce "-fsanitize=vptr". 137 /// "-fsanitize=address,alignment" with mask \c NeedsUbsanRt would produce [all …]
|
| /freebsd/tests/sys/fs/fusefs/ |
| H A D | default_permissions.cc | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 62 /* With -o default_permissions, FUSE_ACCESS should never be called */ in SetUp() 139 .WillRepeatedly(Invoke(ReturnImmediate([=](auto i __unused, auto& out) { in expect_getattr() 214 ).WillOnce(Invoke(ReturnImmediate([](auto i __unused, auto& out) { in expect_listxattr() 254 int i, ngroups = 64; in excluded_group() local 261 for (i = 0; i < ngroups; i++) { in excluded_group() 262 if (groups[i] == newgid) in excluded_group() 268 /* newgid is now a group to which the current user does not belong */ in excluded_group() 348 EXPECT_EQ(0, chown(FULLPATH, uid, -1)) << strerror(errno); in TEST_F() [all …]
|
| /freebsd/contrib/sendmail/libsm/ |
| H A D | debug.html | 11 <br> $Id: debug.html,v 1.9 2002-02-02 16:50:56 ca Exp $ 21 Sendmail 8.11 and earlier has a <tt>-d</tt> option which 31 controls the argument validity checking and memory leak detection 35 In sendmail 8.12, the <tt>-d</tt> flag is generalized 39 "-dANSI" is implemented using a libsm named debug category. 45 <tt> -dANSI </tt> 49 <tt> -dfoo_*.3 </tt> 53 <tt> -d0-99.1 </tt> 57 <tt> -dANSI,foo_*.3,0-99.1 </tt> 81 SM_DEBUG_T dbg = SM_DEBUG_INITIALIZER("name", "@(#)$Debug: name - description $"); [all …]
|
| /freebsd/share/man/man7/ |
| H A D | mitigations.7 | 1 .\"- 2 .\" SPDX-License-Identifer: BSD-2-Clause 42 Some of these mitigations have run-time controls to enable them on a global 43 or per-process basis, some are optionally enabled or disabled at compile time, 48 .Bl -bullet -compact 58 Relocation Read-Onl [all...] |
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | PrettyStackTrace.cpp | 1 //===- PrettyStackTrace.cpp - Pretty Crash Handling -----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 15 #include "llvm-c/ErrorHandling.h" 52 // thread-local variable. 64 // the current thread". If the user happens to overflow an 'unsigned' with 74 std::tie(Prev, Head, Head->NextEntry) = in ReverseStackTrace() 75 std::make_tuple(Head, Head->NextEntry, Prev); in ReverseStackTrace() 82 // to fail if we crashed due to stack overflow), we do an up-front pass to in PrintStack() [all …]
|