/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lparser.c | 51 ** prototypes for recursive non-terminal functions 59 lua_assert(ls->fs != NULL || ls->t.token == TK_EOS); in anchor_token() 60 if (ls->t.token == TK_NAME || ls->t.token == TK_STRING) { in anchor_token() 61 TString *ts = ls->t.seminfo.ts; in anchor_token() 62 luaX_newstring(ls, getstr(ts), ts->tsv.len); in anchor_token() 69 ls->t.token = 0; /* remove 'near to' from final message */ in semerror() 76 luaO_pushfstring(ls->L, "%s expected", luaX_token2str(ls, token))); in error_expected() 81 lua_State *L = fs->ls->L; in errorlimit() 83 int line = fs->f->linedefined; in errorlimit() 89 luaX_syntaxerror(fs->ls, msg); in errorlimit() [all …]
|
/freebsd/lib/libc/db/btree/ |
H A D | bt_debug.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 18 * 3. Neither the name of the University nor the names of its contributors 46 * BT_DUMP -- Dump the tree 59 t = dbp->internal; in __bt_dump() 61 F_ISSET(t, B_INMEM) ? "memory" : "disk", t->bt_psize); in __bt_dump() 63 (void)fprintf(stderr, " keys %u", t->bt_nrecs); in __bt_dump() 65 #define X(flag, name) \ in __bt_dump() argument 67 (void)fprintf(stderr, "%s%s", sep, name); \ in __bt_dump() 70 if (t->flags != 0) { in __bt_dump() [all …]
|
H A D | bt_utils.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 18 * 3. Neither the name of the University nor the names of its contributors 45 * __bt_ret -- 63 BLEAF *bl; in __bt_ret() local 66 bl in __bt_ret() 143 BLEAF *bl; __bt_cmp() local [all...] |
/freebsd/contrib/lua/src/ |
H A D | lparser.c | 56 lu_byte insidetbc; /* true if inside the scope of a to-be-closed var. */ 62 ** prototypes for recursive non-terminal functions 70 luaO_pushfstring(ls->L, "%s expected", luaX_token2str(ls, token))); in error_expected() 75 lua_State *L = fs->ls->L; in errorlimit() 77 int line = fs->f->linedefined; in errorlimit() 83 luaX_syntaxerror(fs->ls, msg); in errorlimit() 96 if (ls->t.token == c) { in testnext() 108 if (ls->t.token != c) in check() 132 if (where == ls->linenumber) /* all in the same line? */ in check_match() 135 luaX_syntaxerror(ls, luaO_pushfstring(ls->L, in check_match() [all …]
|
/freebsd/lib/libc/i386/string/ |
H A D | strncmp.S | 16 * 4. The name of the author may not be used to endorse or promote products 38 * %eax - pointer to s1 39 * %ecx - pointer to s2 40 * %edx - length 67 movb (%eax),%bl 68 testb %bl,%bl 70 cmpb %bl,(%ecx) 76 * movb n(%eax),%bl; testb %bl, %bl; je L3; cmpb n(%ecx); jne L3 78 * movb n(%eax),%bl; cmpb n(%ecx); jne L3; testb %bl,%bl; je return_0 89 movb (%eax),%bl [all …]
|
H A D | strchr.S | 16 * 4. The name of the author may not be used to endorse or promote products 37 * %edx - pointer iterating through string 38 * %eax - pointer to first occurrence of 'c' 39 * %cl - character we're comparing against 40 * %bl - character at %edx 52 movb (%eax),%bl 53 cmpb %bl,%cl /* found char??? */ 56 testb %bl,%bl /* null terminator??? */ 66 .section .note.GNU-stack,"",%progbits
|
H A D | strrchr.S | 16 * 4. The name of the author may not be used to endorse or promote products 37 * %edx - pointer iterating through string 38 * %eax - pointer to last occurrence of 'c' 39 * %cl - character we're comparing against 40 * %bl - character at %edx 53 movb (%edx),%bl 54 cmpb %bl,%cl 59 testb %bl,%bl /* null terminator??? */ 67 .section .note.GNU-stack,"",%progbits
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64SLSHardening.cpp | 1 //===- AArch64SLSHardening.cpp - Harden Straight Line Missspeculation -----===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // vulnerabilities that may happen under straight line miss-speculation. 12 //===----------------------------------------------------------------------===// 35 #define DEBUG_TYPE "aarch64-sls-hardening" 39 // Common name prefix of all thunks generated by this pass. 110 // Bitmasks representing operands used, with n-th bit corresponding to Xn 204 unsigned Result = (unsigned)Reg - (unsigned)AArch64::X0; in indexOfXReg() 228 assert(std::prev(MBBI)->isBarrier() && in insertSpeculationBarrier() [all …]
|
/freebsd/sys/arm64/arm64/ |
H A D | exception.S | 1 /*- 46 stp x0, x1, [sp, #(TF_X - TF_SIZE - 128)]! 48 stp x0, x1, [sp, #(TF_X - TF_SIZE)]! 71 stp x18, lr, [sp, #(TF_SP - TF_X)]! 87 /* Apply the SSBD (CVE-2018-3639) workaround if needed */ 95 bl ptrauth_exit_el0 98 bl dbg_monitor_enter 121 bl dbg_monitor_exit 124 bl ptrauth_enter_el0 126 /* Remove the SSBD (CVE-2018-3639) workaround if needed */ [all …]
|
/freebsd/stand/ficl/softwords/ |
H A D | softcore.fr | 11 : user \ name ( -- ) 18 : empty ( xn..x1 -- ) depth 0 ?do drop loop ; 19 \ CELL- undoes CELL+ 20 : cell- ( addr -- addr ) [ 1 cells ] literal - ; 21 : -rot ( a b c -- c a b ) 2 -roll ; 24 : abs ( x -- x ) 26 decimal 32 constant bl 28 : space ( -- ) bl emit ; 30 : spaces ( n -- ) 0 ?do space loop ; 37 -2 [all …]
|
/freebsd/share/man/man3/ |
H A D | pthread_np.3 | 27 .Sh NAME 41 .Bl -bullet -offset indent -compact 54 .\" Per-Thread Context Routines 58 .Bl -tag -width indent 68 .Fn pthread_get_name_np "pthread_t thread" "char *name" "size_t len" 70 Get the name of a specified thread. 73 .Fn pthread_getname_np "pthread_t thread" "char *name" "size_t len" 75 Get the name of a specified thread. 90 Sets the thread's scheduling mode to multi-threaded. 110 .Fn pthread_set_name_np "pthread_t thread" "char *name" [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMSLSHardening.cpp | 1 //===- ARMSLSHardening.cpp - Harden Straight Line Missspeculation ---------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // vulnerabilities that may happen under straight line miss-speculation. 12 //===----------------------------------------------------------------------===// 29 #define DEBUG_TYPE "arm-sls-hardening" 67 INITIALIZE_PASS(ARMSLSHardening, "arm-sls-hardening", 77 assert(std::prev(MBBI)->isBarrier() && in insertSpeculationBarrier() 80 assert(std::prev(MBBI)->isTerminator() && in insertSpeculationBarrier() 82 const TargetInstrInfo *TII = ST->getInstrInfo(); in insertSpeculationBarrier() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
H A D | UDTLayout.cpp | 1 //===- UDTLayout.cpp ------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 45 const IPDBRawSymbol &RawType = SymbolType->getRawSymbol(); in getTypeLength() 51 const PDBSymbol *Symbol, const std::string &Name, in LayoutItemBase() argument 54 : Symbol(Symbol), Parent(Parent), Name(Name), in LayoutItemBase() 61 return UsedBytes.size() - UsedBytes.count(); in deepPaddingSize() 67 return UsedBytes.size() - (Last + 1); in tailPadding() 72 : LayoutItemBase(&Parent, Member.get(), Member->getName(), in DataMemberLayoutItem() 73 Member->getOffset(), getTypeLength(*Member), false), in DataMemberLayoutItem() [all …]
|
/freebsd/contrib/mandoc/ |
H A D | mdoc_validate.c | 3 * Copyright (c) 2010-2021 Ingo Schwarze <schwarze@openbsd.org> 4 * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv> 46 /* FIXME: .Bl -diag can't have non-text children in HEAD. */ 128 static const v_post mdoc_valids[MDOC_MAX - MDOC_Dd] = { 139 post_bl, /* Bl */ 273 "NAME", 300 /* Validate the subtree rooted at mdoc->last. */ 313 n = mdoc->last; in mdoc_validate() 314 switch (n->tok) { in mdoc_validate() 316 n->tok = MDOC_Pp; in mdoc_validate() [all …]
|
H A D | mandoc.css | 3 * Standard style sheet for mandoc(1) -Thtml and man.cgi(8). 13 html { max-width: 65em; 14 --bg: #FFFFFF; 15 --fg: #000000; } 16 body { background: var(--bg); 17 color: var(--fg); 18 font-family: Helvetica,Arial,sans-serif; } 19 h1, h2 { font-size: 110%; } 20 table { margin-top: 0em; 21 margin-bottom: 0em; [all …]
|
H A D | mdoc_html.c | 3 * Copyright (c) 2014-2022 Ingo Schwarze <schwarze@openbsd.org> 4 * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> 119 static const struct mdoc_html_act mdoc_html_acts[MDOC_MAX - MDOC_Dd] = { 130 {mdoc_bl_pre, NULL}, /* Bl */ 252 if ((n->flags & NODE_SYNPRETTY) == 0 || in synopsis_pre() 256 if (np->tok == n->tok && in synopsis_pre() 257 MDOC_Fo != n->tok && in synopsis_pre() 258 MDOC_Ft != n->tok && in synopsis_pre() 259 MDOC_Fn != n->tok) { in synopsis_pre() 264 switch (np->tok) { in synopsis_pre() [all …]
|
H A D | mandoc.h | 3 * Copyright (c) 2012-2022 Ingo Schwarze <schwarze@openbsd.org> 22 #define ASCII_NBRSP 31 /* non-breaking space */ 23 #define ASCII_NBRZW 30 /* non-breaking zero-width space */ 24 #define ASCII_BREAK 29 /* breakable zero-width space */ 66 MANDOCERR_SEC_TYPO, /* possible typo in section name: Sh ... */ 72 MANDOCERR_XR_BAD, /* referenced manual not found: Xr name sec */ 78 MANDOCERR_DASHDASH, /* verbatim "--", maybe consider using \(em */ 79 MANDOCERR_FUNC, /* function name without markup: name() */ 102 MANDOCERR_NAMESEC_FIRST, /* first section is not NAME: Sh title */ 103 MANDOCERR_NAMESEC_NONM, /* NAME section without Nm before Nd */ [all …]
|
/freebsd/sys/arm/arm/ |
H A D | locore.S | 1 /*- 2 * Copyright 2004-2014 Olivier Houchard <cognet@FreeBSD.org> 3 * Copyright 2012-2014 Ian Lepore <ian@FreeBSD.org> 4 * Copyright 2013-2014 Andrew Turner <andrew@FreeBSD.org> 51 /* A small statically-allocated stack used only during initarm() and AP startup. */ 67 bl hypervisor_stub_vect_install ;\ 82 mov r0, -1 ;\ 89 * r0 - metadata pointer or 0 90 * r1 - if (r0 == 0) then metadata pointer 92 * r0 - 0 [all …]
|
/freebsd/lib/libc/stdlib/ |
H A D | getopt_long.3 | 15 .\" 3. Neither the name of the University nor the names of its contributors 34 .Sh NAME 92 .Dl "myprogram --myoption=somevalue" 111 .Bd -literal -offset indent 113 char *name; 121 .Va name 122 field should contain the option name without the leading double dash. 128 .Bl -tag -width ".Dv optional_argument" -offset indent -compact 179 .Ql - 181 .Ql -- . [all …]
|
/freebsd/tests/sys/net/routing/ |
H A D | rtsock_common.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 64 #include <atf-c.h> 80 * Checks if the interface cloner module is present for @name. 83 _check_cloner(char *name) in _check_cloner() argument 92 if (s == -1) in _check_cloner() 102 err(1, "unable to allocate cloner name buffer"); in _check_cloner() 117 if (!strcmp(cp, name)) { in _check_cloner() 158 ifname[strlen(ifname) - 1] = 'b'; in iface_create() 193 if (fd == -1) { in iface_open() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/leds/backlight/ |
H A D | lp855x.txt | 4 - compatible: "ti,lp8550", "ti,lp8551", "ti,lp8552", "ti,lp8553", 6 - reg: I2C slave address (u8) 7 - dev-ctrl: Value of DEVICE CONTROL register (u8). It depends on the device. 10 - bl-name: Backlight device name (string) 11 - init-brt: Initial value of backlight brightness (u8) 12 - pwm-period: PWM period value. Set only PWM input mode used (u32) 13 - rom-addr: Register address of ROM area to be updated (u8) 14 - rom-val: Register value to be updated (u8) 15 - power-supply: Regulator which controls the 3V rail 16 - enable-supply: Regulator which controls the EN/VDDIO input [all …]
|
/freebsd/sys/powerpc/powerpc/ |
H A D | swtch32.S | 3 /*- 27 /*- 43 * 4. The name of TooLs GmbH may not be used to endorse or promote products 87 stmw %r12,PCB_CONTEXT(%r6) /* Save the non-volatile GP regs. 95 bl 1f 97 mflr %r30 /* Prepare for secure-PLT calls */ 98 addis %r30, %r30, (_GLOBAL_OFFSET_TABLE_-1b)@ha 99 addi %r30, %r30, (_GLOBAL_OFFSET_TABLE_-1b)@l 112 bl save_fpu 119 bl save_vec [all …]
|
/freebsd/contrib/ntp/ntpq/ |
H A D | ntpq-opts.def | 1 /* -*- Mode: Text -*- */ 7 #include autogen-version.def 9 prog-name = "ntpq"; 10 prog-title = "query Network Time Protocol servers"; 14 name = ipv4; 15 flags-cant = ipv6; 17 descrip = "Force IPv4 name resolution"; 18 doc = <<- _EndOfDoc_ 25 name = ipv6; 26 flags-cant = ipv4; [all …]
|
/freebsd/contrib/ntp/sntp/ag-tpl/ |
H A D | Mdoc.pm | 3 ## Mdoc.pm -- Perl functions for mdoc processing 10 ## AutoOpts is Copyright (C) 1992-2015 by Bruce Korb - all rights reserved 28 =head1 NAME 30 Mdoc - perl module to parse Mdoc macros 42 =item def_macro( NAME, CODE, [ raw => 1, greedy => 1, concat_until => '.Xx' ] ) 72 =item get_macro( NAME ) 78 Where C<CODE> is the CODE reference used to define macro called C<NAME> 117 This module implements the Bl/El macros for you. Using set_Bl_callback you can 118 provide a macro definition that should be executed on a .Bl call. 122 This module implements the Bl/El macros for you. Using set_El_callback you can [all …]
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBBreakpointDocstrings.i | 15 # Now create a breakpoint on main.c by name 'c'. 58 for bl in breakpoint: 59 print('breakpoint location load addr: %s' % hex(bl.GetLoadAddress())) 60 print('breakpoint location condition: %s' % hex(bl.GetCondition())) 79 Set the name of the script function to be called when the breakpoint is hit." 83 Set the name of the script function to be called when the breakpoint is hit. 91 'frame' - which holds the bottom-most SBFrame of the thread that hit the breakpoint 92 'bpno' - which is the SBBreakpointLocation to which the callback was attached.
|