/freebsd/sys/contrib/device-tree/Bindings/iio/frequency/ |
H A D | adi,admv1013.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
H A D | adi,admv1014.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
/freebsd/contrib/sendmail/src/ |
H A D | convtime.c | 2 * Copyright (c) 1998-2001 Proofpoint, Inc. and its suppliers. 4 * Copyright (c) 1983, 1995-1997 Eric P. Allman. All rights reserved. 16 SM_RCSID("@(#)$Id: convtime.c,v 8.40 2013-11-22 20:51:55 ca Exp $") 20 ** CONVTIME -- convert time 24 ** s -- seconds 25 ** m -- minutes 26 ** h -- hours 27 ** d -- days (default) 28 ** w -- weeks 32 ** p -- pointer to ascii time. [all …]
|
/freebsd/contrib/lua/src/ |
H A D | lutf8lib.c | 3 ** Standard library for UTF-8 manipulation 29 #define MSGInvalid "invalid UTF-8 code" 32 ** Integer type for decoded UTF-8 values; MAXUTF needs 31 bits. 47 static lua_Integer u_posrelat (lua_Integer pos, size_t len) { in u_posrelat() argument 48 if (pos >= 0) return pos; in u_posrelat() 49 else if (0u - (size_t)pos > len) return 0; in u_posrelat() 50 else return (lua_Integer)len + pos + 1; in u_posrelat() 55 ** Decode one UTF-8 sequence, returning NULL if byte sequence is 58 ** entry forces an error for non-ascii bytes with no continuation 92 ** utf8len(s [, i [, j [, lax]]]) --> number of characters that [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | NaryReassociate.cpp | 1 //===- NaryReassociate.cpp - Reassociate n-ary expressions ----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This pass reassociates n-ary add expressions and eliminates the redundancy 40 // into an SCEV-to-instruction map. 42 // Although the algorithm pattern-matches only ternary additions, it 43 // automatically handles many >3-ary expressions by walking through the function 44 // in the depth-first order. For example, given 52 // Finally, the above dominator-based algorithm may need to be run multiple 57 // single-use instruction and thus eligible for split consideration. For [all …]
|
H A D | LoopFuse.cpp | 1 //===- LoopFuse.cpp - Loop Fusion Pass ------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 45 //===----------------------------------------------------------------------===// 71 #define DEBUG_TYPE "loop-fusion" 92 "Loop has a non-empty preheader with instructions that cannot be moved"); 95 STATISTIC(NonEmptyExitBlock, "Candidate has a non-empty exit block with " 97 STATISTIC(NonEmptyGuardBlock, "Candidate has a non-empty guard block with " 112 "loop-fusion-dependence-analysis", 123 "loop-fusion-peel-max-count", cl::init(0), cl::Hidden, [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | ScalarEvolutionExpander.h | 1 //===---- llvm/Analysis/ScalarEvolutionExpander.h - SCEV Exprs --*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 64 ScalarEvolution &SE; variable 81 /// Keep track of the existing IR values re-used during expansion. 82 /// FIXME: Ideally re-used instructions would not be added to 96 /// Addrecs referring to any of the given loops are expanded in post-inc 97 /// mode. For example, expanding {1,+,1}<L> in post-inc mode returns the add 99 /// phi starting at 1. This is only supported in non-canonical mode. [all …]
|
/freebsd/contrib/ldns/compat/ |
H A D | b64_pton.c | 33 * granted for any product per se or for any other function of any product. 51 /* (From RFC1521 and draft-ietf-dnssec-secext-03.txt) 56 A 65-character subset of US-ASCII is used, enabling 6 bits to be 60 The encoding process represents 24-bit groups of input bits as output 62 24-bit input group is formed by concatenating 3 8-bit input groups. 63 These 24 bits are then treated as 4 concatenated 6-bit groups, each 66 Each 6-bit group is used as an index into an array of 64 printable 95 right) to form an integral number of 6-bit groups. Padding at the 99 ------------------------------------------------- 116 src from base - 64 numbers into three 8 bit bytes in the target area. [all …]
|
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/ |
H A D | zfs_ctldir.c | 9 * or https://opensource.org/licenses/CDDL-1.0. 26 * LLNL-CODE-403049. 40 * This directory provides a common location for all ZFS meta-objects. 49 * ctldir ------> snapshotdir -------> snapshot 98 * - be attached to both trees, and 99 * - be unique, no duplicate entries are allowed. 129 static void zfsctl_snapshot_unmount_delay_impl(zfs_snapentry_t *se, int delay); 139 zfs_snapentry_t *se; in zfsctl_snapshot_alloc() local 141 se = kmem_zalloc(sizeof (zfs_snapentry_t), KM_SLEEP); in zfsctl_snapshot_alloc() 143 se->se_name = kmem_strdup(full_name); in zfsctl_snapshot_alloc() [all …]
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | base64.c | 35 * granted for any product per se or for any other function of any product. 68 /* (From RFC1521 and draft-ietf-dnssec-secext-03.txt) 73 A 65-character subset of US-ASCII is used, enabling 6 bits to be 77 The encoding process represents 24-bit groups of input bits as output 79 24-bit input group is formed by concatenating 3 8-bit input groups. 80 These 24 bits are then treated as 4 concatenated 6-bit groups, each 83 Each 6-bit group is used as an index into an array of 64 printable 112 right) to form an integral number of 6-bit groups. Padding at the 116 ------------------------------------------------- 144 srclength -= 3; in b64_ntop() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/ |
H A D | elfnix_platform.cpp | 1 //===- elfnix_platform.cpp ------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file contains code required to load the rest of the ELF-on-*IX runtime. 11 //===----------------------------------------------------------------------===// 35 // eh-frame registration functions, made available via aliases 48 const ExecutorAddrRange &SE) { in validatePointerSectionExtent() argument 49 if (SE.size() % sizeof(uintptr_t)) { in validatePointerSectionExtent() 52 << SE.Start.getValue() << " -- 0x" << SE.End.getValue() in validatePointerSectionExtent() 155 // FIXME: Move to thread-state. [all …]
|
/freebsd/lib/libc/net/ |
H A D | base64.c | 33 * granted for any product per se or for any other function of any product. 62 /* (From RFC1521 and draft-ietf-dnssec-secext-03.txt) 67 A 65-character subset of US-ASCII is used, enabling 6 bits to be 71 The encoding process represents 24-bit groups of input bits as output 73 24-bit input group is formed by concatenating 3 8-bit input groups. 74 These 24 bits are then treated as 4 concatenated 6-bit groups, each 77 Each 6-bit group is used as an index into an array of 64 printable 106 right) to form an integral number of 6-bit groups. Padding at the 110 ------------------------------------------------- 136 srclength -= 3; in b64_ntop() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_fake_stack.h | 1 //===-- asan_fake_stack.h ---------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 // ASan-private header for asan_fake_stack.cpp, implements FakeStack. 12 //===----------------------------------------------------------------------===// 31 // a fast malloc-like allocator so that when a function exits the fake stack 34 // It helps us find use-after-return bugs. 52 // async-signal safety. 53 // This allocator does not have quarantine per se, but it tries to allocate the 62 kMaxStackFrameSizeLog - kMinStackFrameSizeLog + 1; [all …]
|
/freebsd/contrib/mandoc/ |
H A D | tag.c | 58 * where various marked-up terms are documented. 76 free(entry->nodes); in tag_free() 93 const char *se, *src; in tag_put() local 108 if (n->flags & NODE_ID) in tag_put() 115 if (n->child == NULL || n->child->type != ROFFT_TEXT) in tag_put() 117 s = n->child->string; in tag_put() 119 case '-': in tag_put() 125 case '-': in tag_put() 140 * Translate \- and ASCII_HYPH to plain '-'. in tag_put() 153 cpy[len] = '-'; in tag_put() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsInstrFormats.td | 1 //===-- MipsInstrFormats.td - Mips Instruction Formats -----*- tablegen -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===// 14 // opcode - operation code. 15 // rs - src reg. 16 // rt - dst reg (on a 2 regs instr) or src reg (on a 3 reg instr). 17 // rd - dst reg, only used on 3 regs instr. 18 // shamt - only used on shift instructions, contains the shift amount. 19 // funct - combined with opcode field give us an operation code. [all …]
|
/freebsd/crypto/heimdal/ |
H A D | ChangeLog.2004 | 1 2004-12-30 Love Hörnquist Åstrand <lha@it.su.se> 6 2004-12-29 Love Hörnquist Åstrand <lha@it.su.se> 12 * lib/krb5/Makefile.am: add CHECK_SYMBOLS, approve of: -com_err 13 -version krb5_ _krb5_ __heimdal krb524_ krb4_fkt_ops 35 2004-12-29 Love Hörnquist Åstrand <lha@it.su.se> 43 2004-12-28 Love Hörnquist Åstrand <lha@it.su.se> 47 * lib/hdb/hdb-ldap.c: Add account expiration for samba from James 51 2004-12-27 Love Hörnquist Åstrand <lha@it.su.se> 56 2004-12-18 Love Hörnquist Åstrand <lha@it.su.se> 61 2004-12-17 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86FlagsCopyLowering.cpp | 1 //====- X86FlagsCopyLowering.cpp - Lowers COPY nodes of EFLAGS ------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 17 /// and other non-status flags being overwritten. Using sequences involving 21 //===----------------------------------------------------------------------===// 62 #define PASS_KEY "x86-flags-copy-lowering" 104 void insertTest(MachineBasicBlock &MBB, MachineBasicBlock::iterator Pos, 107 void rewriteSetCC(MachineBasicBlock &MBB, MachineBasicBlock::iterator Pos, 111 MachineBasicBlock::iterator Pos, const DebugLoc &Loc, 113 void rewriteMI(MachineBasicBlock &MBB, MachineBasicBlock::iterator Pos, [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | llvm-objdump.cpp | 1 //===-- llvm-objdump.cpp - Object file dumping utility for llvm -----------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 16 //===----------------------------------------------------------------------===// 18 #include "llvm-objdump.h" 127 std::size(NAME##_init) - 1); 158 std::size(NAME##_init) - 1); 173 "Mach-O object file displaying tool") {} in OtoolOptTable() 230 [&](const PGOAnalysisMap::PGOBBEntry::SuccessorEntry &SE) { in constructPGOLabelString() argument 231 PGOSS << "BB" << SE.ID << ":"; in constructPGOLabelString() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonVectorCombine.cpp | 1 //===-- HexagonVectorCombine.cpp ------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // that assist in vector-based optimizations. 13 //===----------------------------------------------------------------------===// 57 #define DEBUG_TYPE "hexagon-vc" 62 cl::opt<bool> DumpModule("hvc-dump-module", cl::Hidden); 63 cl::opt<bool> VAEnabled("hvc-va", cl::Hidden, cl::init(true)); // Align 64 cl::opt<bool> VIEnabled("hvc-vi", cl::Hidden, cl::init(true)); // Idioms 65 cl::opt<bool> VADoFullStores("hvc-va-full-stores", cl::Hidden); [all …]
|
/freebsd/contrib/bc/src/ |
H A D | history.c | 4 * SPDX-License-Identifier: BSD-2-Clause 6 * Copyright (c) 2018-2024 Gavin D. Howard and contributors. 34 * linenoise.c -- guerrilla line editing library against the idea that a 41 * https://github.com/rain-1/linenoise-mob 43 * ------------------------------------------------------------------------ 47 * Copyright (c) 2010-2016, Salvatore Sanfilippo <antirez at gmail dot com> 48 * Copyright (c) 2010-2013, Pieter Noordhuis <pcnoordhuis at gmail dot com> 73 * ------------------------------------------------------------------------ 79 * - http://invisible-island.net/xterm/ctlseqs/ctlseqs.html 80 * - http://www.3waylabs.com/nw/WWW/products/wizcon/vt220.html [all …]
|
/freebsd/contrib/wpa/src/common/ |
H A D | ieee802_11_common.c | 3 * Copyright (c) 2002-2019, Jouni Malinen <j@w1.fi> 15 #include "qca-vendor.h" 20 static int ieee802_11_parse_vendor_specific(const u8 *pos, size_t elen, in ieee802_11_parse_vendor_specific() argument 28 * sub-type. */ in ieee802_11_parse_vendor_specific() 35 return -1; in ieee802_11_parse_vendor_specific() 38 oui = WPA_GET_BE24(pos); in ieee802_11_parse_vendor_specific() 41 /* Microsoft/Wi-Fi information elements are further typed and in ieee802_11_parse_vendor_specific() 43 switch (pos[3]) { in ieee802_11_parse_vendor_specific() 47 elems->wpa_ie = pos; in ieee802_11_parse_vendor_specific() 48 elems->wpa_ie_len = elen; in ieee802_11_parse_vendor_specific() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIDefines.h | 1 //===-- SIDefines.h - SI Helper Macros ----------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 //===----------------------------------------------------------------------===// 28 RegTupleAlignUnitsMask = (1 << RegTupleAlignUnitsWidth) - 1, 54 // Low bits - basic encoding information. 100 // High bits - other information. 181 // v_cmp_class_* etc. use a 10-bit mask for what operation is checked. 199 /// Operands with register or 32-bit immediate 233 /// Operand with 32-bit immediate that uses the constant bus. 283 // Input operand modifiers bit-masks [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | BranchFolding.cpp | 1 //===- BranchFolding.cpp - Fold machine code branch instructions ----------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 17 //===----------------------------------------------------------------------===// 65 #define DEBUG_TYPE "branch-folder" 73 static cl::opt<cl::boolOrDefault> FlagEnableTailMerge("enable-tail-merge", 78 TailMergeThreshold("tail-merge-threshold", 84 TailMergeSize("tail-merge-size", 90 /// BranchFolderPass - Wrap branch folder in a machine function pass. 130 PassConfig->getEnableTailMerge(); in runOnMachineFunction() [all …]
|
/freebsd/usr.sbin/ppp/ |
H A D | command.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org> 5 * based on work by Toshiharu OHNO <tony-o@iij.ad.jp> 202 if (cmd->lauth & LOCAL_CX) in showcx() 204 else if (cmd->lauth & LOCAL_CX_OPT) in showcx() 217 if (!arg->prompt) { in HelpCommand() 222 if (arg->argc > arg->argn) { in HelpCommand() 223 for (cmd = arg->cmdtab; cmd->name || cmd->alias; cmd++) in HelpCommand() 224 if ((cmd->lauth & arg->prompt->auth) && in HelpCommand() [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | VarLenCodeEmitterGen.cpp | 1 //===- VarLenCodeEmitterGen.cpp - CEG for variable-length insts -----------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // The CodeEmitterGen component for variable-length instructions. 11 // The basic CodeEmitterGen is almost exclusively designed for fixed- 30 // encoding for variable-length instructions. 50 //===----------------------------------------------------------------------===// 75 const AltEncodingTy Universal = -1; 108 const Init *Op = DI->getOperator(); in getCustomCoders() 112 StringRef OpName = cast<DefInit>(Op)->getDef()->getName(); in getCustomCoders() [all …]
|