/freebsd/sys/contrib/device-tree/Bindings/input/ |
H A D | azoteq,iqs7222.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
/freebsd/sys/fs/msdosfs/ |
H A D | msdosfs_conv.c | 3 /*- 4 * SPDX-License-Identifier: BSD-4-Clause 36 /*- 71 * 0 - character disallowed in long file name. 72 * 1 - character should be replaced by '_' in DOS file name, 74 * 2 - character ('.' and ' ') should be skipped in DOS file name, 79 /* iso8859-1 -> cp850 */ 80 0, 0, 0, 0, 0, 0, 0, 0, /* 00-07 */ 81 0, 0, 0, 0, 0, 0, 0, 0, /* 08-0f */ 82 0, 0, 0, 0, 0, 0, 0, 0, /* 10-17 */ [all …]
|
/freebsd/contrib/unbound/compat/ |
H A D | snprintf.c | 1 /* snprintf - compatibility implementation of snprintf, vsnprintf 60 * mostly in formatting and range (e+-16), for %f and %g. 63 * This includes width, precision, flags 0- +, and *(arg for wid,prec). 81 while(num--) { in print_pad() 84 (*left)--; in print_pad() 95 return '-'; in get_negsign() 216 *(*at)++ = buf[--i]; in spool_str_rev() 217 (*left)--; in spool_str_rev() 218 } else --i; in spool_str_rev() 231 (*left)--; in spool_str() [all …]
|
/freebsd/contrib/ldns/compat/ |
H A D | snprintf.c | 1 /* snprintf - compatibility implementation of snprintf, vsnprintf 59 * mostly in formatting and range (e+-16), for %f and %g. 62 * This includes width, precision, flags 0- +, and *(arg for wid,prec). 80 while(num--) { in print_pad() 83 (*left)--; in print_pad() 94 return '-'; in get_negsign() 215 *(*at)++ = buf[--i]; in spool_str_rev() 216 (*left)--; in spool_str_rev() 217 } else --i; in spool_str_rev() 230 (*left)--; in spool_str() [all …]
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_msfees.c | 1 /* refclock_ees - clock driver for the EES M201 receiver */ 55 if (flags & CLK_FLAG2 && unitinuse) ees->leaphold = 0; 56 ees->dump_vals = flags & CLK_FLAG3; 57 ees->usealldata = flags & CLK_FLAG4; 60 bug->values[0] = (ees->lasttime) ? current_time - ees->lasttime : 0; 61 bug->values[1] = (ees->clocklastgood)?current_time-ees->clocklastgood:0; 62 bug->values[2] = (u_long)ees->status; 63 bug->values[3] = (u_long)ees->lastevent; 64 bug->values[4] = (u_long)ees->reason; 65 bug->values[5] = (u_long)ees->nsamples; [all …]
|
/freebsd/contrib/libarchive/tar/ |
H A D | bsdtar.1 | 2 .\" SPDX-License-Identifier: BSD-2-Clause 4 .\" Copyright (c) 2003-2007 Tim Kientzle 16 .Op Ar bundled-flags Ao args Ac 24 .Fl f Ar archive-file 35 rpm, 7-zip, and ISO 9660 cdrom images and can create tar, pax, cpio, ar, zip, 36 7-zip, and shar archives. 48 .Bl -tag -compact -width indent 100 Patterns are shell-style globbing patterns as 106 .Bl -tag -width indent 112 .Dl Nm Fl c Fl f Pa - Pa newfile Cm @ Ns Pa original.tar [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 1 //===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 63 // Convert the nested-name-specifier into a type. in getInheritingConstructorName() 65 switch (NNS->getKind()) { in getInheritingConstructorName() 68 Type = QualType(NNS->getAsType(), 0); in getInheritingConstructorName() 72 // Strip off the last layer of the nested-name-specifier and build a in getInheritingConstructorName() 74 assert(NNS->getAsIdentifier() == &Name && "not a constructor name"); in getInheritingConstructorName() 76 ElaboratedTypeKeyword::None, NNS->getPrefix(), NNS->getAsIdentifier()); in getInheritingConstructorName() [all …]
|
H A D | SemaChecking.cpp | 1 //===- SemaChecking.cpp - Extra Semantic Checking -------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 125 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts, in getLocationOfStringLiteralByte() 135 unsigned ArgCount = Call->getNumArgs(); in checkArgCountAtLeast() 139 return Diag(Call->getEndLoc(), diag::err_typecheck_call_too_few_args) in checkArgCountAtLeast() 141 << /*is non object*/ 0 << Call->getSourceRange(); in checkArgCountAtLeast() 145 unsigned ArgCount = Call->getNumArgs(); in checkArgCountAtMost() 148 return Diag(Call->getEndLoc(), diag::err_typecheck_call_too_many_args_at_most) in checkArgCountAtMost() [all …]
|
H A D | SemaDecl.cpp | 1 //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 96 if (!AllowInvalidDecl && ND->isInvalidDecl()) in ValidateCandidate() 109 // An injected-class-name of a class template (specialization) is valid in ValidateCandidate() 110 // as a template or as a non-template. in ValidateCandidate() 113 if (!RD || !RD->isInjectedClassName()) in ValidateCandidate() 115 RD = cast<CXXRecordDecl>(RD->getDeclContext()); in ValidateCandidate() 116 return RD->getDescribedClassTemplate() || in ValidateCandidate() [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 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. 144 In run.c, use non-restartable multibyte routines to attain [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 1 //===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 20 // * A flag indicating if evaluation encountered (unevaluated) side-effects. 29 // fold a potential constant sub-expression will be indicated by a 'false' 31 // expression is not necessarily non-constant). 33 //===----------------------------------------------------------------------===// 108 if (E->isPRValue()) in getStorageType() 109 return E->getType(); in getStorageType() 110 return Ctx.getLValueReferenceType(E->getType()); in getStorageType() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/include/ |
H A D | libtest.shlib | 9 # or https://opensource.org/licenses/CDDL-1.0. 29 # Copyright (c) 2017, Open-E Inc. All rights reserved. 43 PWD="$(readlink -f $PWD)" 50 if [ -n "$STF_PATH" ]; then 61 [ "$(printf "$1\n$2" | sort -V | tail -n1)" = "$1" ] 71 [ -z "$ver" ] && case "$UNAME" in 75 # RHEL7: 3.10.0-1160.108.1.el7.x86_64 76 # Fedora 37: 6.5.12-100.fc37.x86_64 77 # Debian 12.6: 6.1.0-22-amd64 78 ver=$(uname -r | grep -Eo "^[0-9]+\.[0-9]+\.[0-9]+") [all …]
|
/freebsd/tests/sys/cddl/zfs/include/ |
H A D | libtest.kshlib | 29 ZFS=${ZFS:-/sbin/zfs} 30 ZPOOL=${ZPOOL:-/sbin/zpool} 31 os_name=`uname -s` 39 until [[ $# -eq 0 ]];do 49 if [[ unsupported -gt 0 ]] ; then 59 # $2 filesystem type; optional - defaulted to zfs 66 [[ -z $fstype ]] && fstype=zfs 96 # $2 filesystem type; optional - defaulted to zfs 108 # $2 filesystem type; optional - defaulted to zfs 119 # $1 - line to split [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 1 //===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 268 /// placing fix-its. 284 /// A single-element cache based on the file ID. 292 // Check the single-element cache. 296 // It's not in the single-element cache; flush the cache if we have one. 329 /// The callback should also emit signature help as a side-effect, but only 340 /// Handles all type casts, including C-style cast, C++ casts, etc. [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ExprCXX.h | 1 //===- ExprCXX.h - Classes for representing expressions ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 64 //===--------------------------------------------------------------------===// 66 //===--------------------------------------------------------------------===// 77 /// any of the arguments are type-dependent. In this case, the 164 return T->getStmtClass() == CXXOperatorCallExprClass; in classof() 170 /// or "objptr->func()") or with normal function-call syntax 198 /// For example, in "x.f(5)", this returns the sub-expression "x". [all …]
|