/freebsd-src/contrib/llvm-project/llvm/lib/IR/ |
H A D | ConstantRange.cpp | 1 //===- ConstantRange.cpp - ConstantRange implementation -------- 73 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue(); fromKnownBits() local 273 APInt Lower, Upper; makeExactMulNSWRegion() local 1250 APInt Lower = getUnsignedMin().udiv(RHS.getUnsignedMax()); udiv() local 1417 APInt Lower = APIntOps::umax(MinLHS, -MaxAbsRHS + 1); srem() local 1422 APInt Lower = APIntOps::umax(MinLHS, -MaxAbsRHS + 1); srem() local 1749 getUnsignedCountTrailingZerosRange(const APInt & Lower,const APInt & Upper) getUnsignedCountTrailingZerosRange() argument 1817 getUnsignedPopCountRange(const APInt & Lower,const APInt & Upper) getUnsignedPopCountRange() argument [all...] |
/freebsd-src/contrib/ncurses/ncurses/tinfo/ |
H A D | lib_acs.c | 2 * Copyright 2018-2019,2020 Thomas E. Dickey * 3 * Copyright 1998-2014,2017 Free Software Foundation, Inc. * 31 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 * 33 * and: Thomas E. Dickey 1996-on * 69 map = (SP_PARM != 0) ? SP_PARM->_acs_map : in NCURSES_SP_NAME() 84 chtype *real_map = SP_PARM != 0 ? SP_PARM->_acs_map : fake_map; in NCURSES_SP_NAME() 99 SP_PARM->_screen_acs_map[j] = FALSE; in NCURSES_SP_NAME() 108 * Initializations for a UNIX-like multi-terminal environment. Use in NCURSES_SP_NAME() 112 real_map['m'] = '+'; /* should be lower left corner */ in NCURSES_SP_NAME() 114 real_map['j'] = '+'; /* should be lower right corner */ in NCURSES_SP_NAME() [all …]
|
/freebsd-src/contrib/llvm-project/clang/lib/Basic/Targets/ |
H A D | CSKY.cpp | 1 //===--- CSKY.cpp - Implement CSKY target feature support ------ [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Target/LoongArch/AsmParser/ |
H A D | LoongArchAsmParser.cpp | 1 // LoongArchAsmParser.cpp - Parse LoongArch assembly to MCInst instructions -=// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===---- 1293 generateImmOutOfRangeError(OperandVector & Operands,uint64_t ErrorInfo,int64_t Lower,int64_t Upper,const Twine & Msg="immediate must be an integer in the range") generateImmOutOfRangeError() argument [all...] |
/freebsd-src/sys/fs/nullfs/ |
H A D | null_vnops.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 47 * a stackable layers techniques, and its "null-node"s stack above 48 * all lower-layer vnodes, not just over directory vnodes. 66 * of the lower vfs (target-p [all...] |
/freebsd-src/contrib/bsnmp/snmp_mibII/ |
H A D | mibII_ifstack.c | 2 * Copyright (c) 2001-2003 31 * ifStackTable. Read-only. 36 mib_ifstack_create(const struct mibif *lower, const struct mibif *upper) in mib_ifstack_create() argument 41 return (-1); in mib_ifstack_create() 43 stack->index.len = 2; in mib_ifstack_create() 44 stack->index.subs[0] = upper ? upper->index : 0; in mib_ifstack_create() 45 stack->index.subs[1] = lower ? lower->index : 0; in mib_ifstack_create() 55 mib_ifstack_delete(const struct mibif *lower, const struct mibif *upper) in mib_ifstack_delete() argument 60 if (stack->index.subs[0] == (upper ? upper->index : 0) && in mib_ifstack_delete() 61 stack->index.subs[1] == (lower ? lower->index : 0)) { in mib_ifstack_delete() [all …]
|
/freebsd-src/usr.bin/tr/ |
H A D | tr.1 | 60 .Bl -tag -width Ds 133 .Bl -tag -width [:equiv:] 140 To follow an octal sequence with a digit as a character, left zero-pad 145 .Bl -column "\ea" 148 .It "\ef <form-feed>" 156 .It c-c 157 For non-octal range endpoints 176 .Bl -column "phonogram" 184 .It "lower <lower-case alphabetic characters>" 191 .It "upper <upper-case characters>" [all …]
|
/freebsd-src/sys/netgraph/ |
H A D | ng_car.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 32 * ng_car - An implementation of committed access rate for netgraph 35 * - Sanitize input config values (impose some limits) 36 * - Implement DSCP marking for IPv4 37 * - Decouple functionality into a simple classifier (g/y/r) 86 struct hookinfo lower; /* hook to lower layers */ member 201 priv->node = node; in ng_car_constructor() 207 priv->upper.hook = NULL; in ng_car_constructor() 208 priv->upper.dest = NULL; in ng_car_constructor() [all …]
|
H A D | ng_pipe.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2004-2010 University of Zagreb 5 * Copyright (c) 2007-2008 FreeBSD Foundation 36 * The node has two hooks, upper and lower. Traffic flowing from upper to 37 * lower hook is referenced as downstream, and vice versa. Parameters for 101 struct hookinfo lower; member 110 if (hinfo->cfg.wfq && hinfo->cfg.bandwidth) { \ 111 ngp_f->vtime.tv_usec = now->tv_usec + ((uint64_t) (plen) \ 112 + priv->overhead ) * hinfo->run.fifo_queues * \ [all …]
|
H A D | ng_gif.c | 5 /*- 6 * SPDX-License-Identifier: BSD-3-Clause AND BSD-2-Clause 35 * Copyright (c) 1996-2000 Whistle Communications, Inc. 53 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. 93 #define IFP2NG(ifp) ((struct ng_node *)((struct gif_softc *)(ifp->if_softc))->gif_netgraph) 94 #define IFP2NG_SET(ifp, val) (((struct gif_softc *)(ifp->if_softc))->gif_netgraph = (val)) 96 /* Per-node private data */ 99 hook_p lower; /* lower OR orphan hook connection */ member 100 u_char lowerOrphan; /* whether lower is lower or orphan */ 174 /* If "lower" hook not connected, let packet continue */ in ng_gif_input() [all …]
|
/freebsd-src/contrib/spleen/ |
H A D | ChangeLog | 1 Spleen 2.1.0 (2024-03-22) 3 - Document how wsfont header files (for OpenBSD and NetBSD) are generated 4 - Add base cyrillic (basic alphabet + most used extended) characters (Thanks 6 - Fix latin small letter 'u' smoothing in the 32x64 version 7 - Fix smoothing on more variants of 'u' in the 32x64 version 11 Spleen 2.0.2 (2023-12-25) 13 - Fix MALE and FEMALE character ordering in the 16x32 and 32x64 15 - Updat [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/ |
H A D | RISCVLegalizerInfo.cpp | 1 //===-- RISCVLegalizerInfo.cpp -------- [all...] |
/freebsd-src/lib/libc/locale/ |
H A D | towupper.3 | 37 .Nd "lower case to upper case letter conversion (wide character version)" 47 function converts a lower-case letter to the corresponding 48 upper-case letter. 50 If the argument is a lower-case letter, the 52 function returns the corresponding upper-case letter if there is 63 .St -isoC-99 .
|
H A D | towlower.3 | 37 .Nd "upper case to lower case letter conversion (wide character version)" 47 function converts an upper-case letter to the corresponding lower-case 50 If the argument is an upper-case letter, the 52 function returns the corresponding lower-case letter if there is 63 .St -isoC-99 .
|
H A D | toupper.3 | 38 .Nd lower case to upper case letter conversion 52 functions convert a lower-case letter to the corresponding 53 upper-case letter. 63 function uses the current global or per-thread locale. 65 If the argument is a lower-case letter, the 69 functions return the corresponding upper-case letter if there is 95 .St -isoC .
|
H A D | tolower.3 | 38 .Nd upper case to lower case letter conversion 52 functions convert an upper-case letter to the corresponding lower-case 63 function uses the current global or per-thread locale. 65 If the argument is an upper-case letter, the 69 functions return the corresponding lower-case letter if there is 95 .St -isoC .
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonConstExtenders.cpp | 1 //===- HexagonConstExtenders.cpp --------- 666 rotateLeft(Node * Lower,Node * Higher) rotateLeft() argument 681 rotateRight(Node * Lower,Node * Higher) rotateRight() argument [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVOptWInstrs.cpp | 1 //===- RISCVOptWInstrs.cpp - MI W instruction optimizations -------- [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsMCInstLower.cpp | 1 //===- MipsMCInstLower.cpp - Convert Mips MachineInstr to MCInst ----------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file contains code to lower Mips MachineInstrs to their corresponding 12 //===----------------------------------------------------------------------===// 45 case MipsII::MO_NO_FLAG: in LowerSymbolOperand() 47 case MipsII::MO_GPREL: in LowerSymbolOperand() 50 case MipsII::MO_GOT_CALL: in LowerSymbolOperand() 53 case MipsII::MO_GOT: in LowerSymbolOperand() 56 case MipsII::MO_ABS_HI: in LowerSymbolOperand() [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZAsmPrinter.cpp | 1 //===-- SystemZAsmPrinter.cpp - SystemZ LLVM assembly printer ------- 199 SystemZMCInstLower Lower(MF->getContext(), *this); emitInstruction() local 725 LowerFENTRY_CALL(const MachineInstr & MI,SystemZMCInstLower & Lower) LowerFENTRY_CALL() argument 787 LowerPATCHPOINT(const MachineInstr & MI,SystemZMCInstLower & Lower) LowerPATCHPOINT() argument 938 SystemZMCInstLower Lower(MF->getContext(), *this); PrintAsmOperand() local [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kMCInstLower.cpp | 1 //===-- M68kMCInstLower.cpp - M68k MachineInstr to MCInst -------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 /// This file contains code to lower M68k MachineInstrs to their 13 //===----------------------------------------------------------------------===// 32 #define DEBUG_TYPE "m68k-mc-inst-lower" 63 Sym = MO.getMBB()->getSymbol(); in GetSymbolFromOperand() 83 case M68kII::MO_NO_FLAG: in LowerSymbolOperand() 84 case M68kII::MO_ABSOLUTE_ADDRESS: in LowerSymbolOperand() 85 case M68kII::MO_PC_RELATIVE_ADDRESS: in LowerSymbolOperand() [all …]
|
/freebsd-src/contrib/sendmail/libsm/ |
H A D | lowercase.c | 25 ** ASCIISTR -- check whether a string is printable ASCII 28 ** str -- string 48 ** ASCIINSTR -- check whether a string is printable ASCII up to len 51 ** str -- string 52 ** len -- length to check 81 ** MAKELOWER -- Translate a line into lower case 84 ** p -- string to translate (modified in place if possible). [A] 87 ** lower cased string 90 ** String p is translated to lower case if possible. 115 ** SM_LOWERCASE -- lower case a UTF-8 string [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYMCInstLower.cpp | 1 //===-- CSKYMCInstLower.cpp - Convert CSKY MachineInstr to an MCInst --------=// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file contains code to lower CSKY MachineInstrs to their corresponding 12 //===----------------------------------------------------------------------===// 20 #define DEBUG_TYPE "csky-mcinst-lower" 27 void CSKYMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { in Lower() function in CSKYMCInstLower 28 OutMI.setOpcode(MI->getOpcode()); in Lower() 30 for (const MachineOperand &MO : MI->operands()) { in Lower() 45 case CSKYII::MO_None: in lowerSymbolOperand() [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | IntrinsicLowering.cpp | 1 //===-- IntrinsicLowering.cpp - Intrinsic Lowering default implementation -===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===-- [all...] |
/freebsd-src/sys/arm64/arm64/ |
H A D | trap.c | 1 /*- 139 p = td->td_proc; in cpu_fetch_syscall_args() 140 sa = &td->td_sa; in cpu_fetch_syscall_args() 141 ap = td->td_frame->tf_x; in cpu_fetch_syscall_args() 142 dst_ap = &sa->args[0]; in cpu_fetch_syscall_args() 144 sa->code = td->td_frame->tf_x[8]; in cpu_fetch_syscall_args() 145 sa->original_cod in cpu_fetch_syscall_args() 209 align_abort(struct thread * td,struct trapframe * frame,uint64_t esr,uint64_t far,int lower) align_abort() argument 226 external_abort(struct thread * td,struct trapframe * frame,uint64_t esr,uint64_t far,int lower) external_abort() argument 257 data_abort(struct thread * td,struct trapframe * frame,uint64_t esr,uint64_t far,int lower) data_abort() argument [all...] |