| /freebsd/sys/contrib/openzfs/module/lua/ |
| H A D | lparser.c | 1 // SPDX-License-Identifier: MIT 52 ** prototypes for recursive non-terminal functions 60 lua_assert(ls->fs != NULL || ls->t.token == TK_EOS); in anchor_token() 61 if (ls->t.token == TK_NAME || ls->t.token == TK_STRING) { in anchor_token() 62 TString *ts = ls->t.seminfo.ts; in anchor_token() 63 luaX_newstring(ls, getstr(ts), ts->tsv.len); in anchor_token() 70 ls->t.token = 0; /* remove 'near to' from final message */ in semerror() 77 luaO_pushfstring(ls->L, "%s expected", luaX_token2str(ls, token))); in error_expected() 82 lua_State *L = fs->ls->L; in errorlimit() 84 int line = fs->f->linedefined; 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/crypto/krb5/src/plugins/kdb/db2/libdb2/btree/ |
| H A D | bt_debug.c | 1 /*- 20 * 4. Neither the name of the University nor the names of its contributors 47 #include "db-int.h" 55 * __bt_dinit -- 77 * __bt_dump -- 94 t = dbp->internal; 96 F_ISSET(t, B_INMEM) ? "memory" : "disk", t->bt_psize); 98 (void)fprintf(tracefp, " keys %lu", (u_long)t->bt_nrecs); 100 #define X(flag, name) \ argument 102 (void)fprintf(tracefp, "%s%s", sep, name); \ [all …]
|
| H A D | bt_utils.c | 1 /*- 20 * 4. Neither the name of the University nor the names of its contributors 47 #include "db-int.h" 51 * __bt_ret -- 70 BLEAF *bl; in __bt_ret() local 73 bl = GETBLEAF(e->page, e->index); in __bt_ret() 83 if (bl->flags & P_BIGKEY) { in __bt_ret() 84 if (__ovfl_get(t, bl->bytes, in __bt_ret() 85 &key->size, &rkey->data, &rkey->size)) in __bt_ret() 87 key->data = rkey->data; in __bt_ret() [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 /*- 45 stp x0, x1, [sp, #-(TF_SIZE - TF_X + 128)]! 47 stp x0, x1, [sp, #-(TF_SIZE - TF_X)]! 64 add x18, sp, #(TF_SIZE - TF_X + 128) 72 stp x18, lr, [sp, #(TF_SP - TF_X)]! 88 /* Apply the SSBD (CVE-2018-3639) workaround if needed */ 96 bl ptrauth_exit_el0 99 bl dbg_monitor_enter 122 bl dbg_monitor_exit 125 bl ptrauth_enter_el0 [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/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/contrib/mandoc/ |
| H A D | mdoc_validate.c | 3 * Copyright (c) 2010-2022, 2025 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->las in mdoc_validate() 2410 const char *name, *sec; post_sh_see_also() local [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(--f [all...] |
| H A D | mdoc_html.c | 3 * Copyright (c) 2014-2022, 2025 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->to in synopsis_pre() 672 char *name, *section, *label; mdoc_xr_pre() local 743 const struct roff_node *bl; mdoc_it_pre() local 819 struct mdoc_bl *bl; mdoc_bl_pre() local [all...] |
| H A D | mandoc.h | 3 * Copyright (c) 2012-2022, 2025 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/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/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.
|