/freebsd/usr.sbin/nvram/ |
H A D | nvram.c | 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 23 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 62 struct deletelist *dl; in main() local 65 dl = NULL; in main() 67 while((opt = getopt(argc, argv, "d:p")) != -1) { in main() 74 if (dl == NULL) { in main() 75 dl = malloc(sizeof(*dl)); in main() 76 if (dl == NULL) in main() 78 bzero(dl, sizeof(*dl)); in main() 79 dl->last = dl; in main() [all …]
|
/freebsd/crypto/krb5/src/lib/gssapi/mechglue/ |
H A D | g_initialize.c | 6 * Permission to use, copy, modify, distribute, and sell this software 11 * in advertising or publicity pertaining to distribution of the software 13 * representations about the suitability of this software for any 16 * SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 22 * PERFORMANCE OF THIS SOFTWARE. 50 #include "k5-thread.h" 51 #include "k5-plugin.h" 74 #define MECH_KEY "SOFTWARE\\gss\\mech" 96 static time_t g_confFileModTime = (time_t)-1; 200 if (aMech->mech && aMech->mech->gss_internal_release_oid) { [all …]
|
/freebsd/lib/libc/net/ |
H A D | getifaddrs.c | 3 /*- 4 * SPDX-License-Identifier: BSD-1-Clause 7 * Berkeley Software Design, Inc. All rights reserved. 15 * THIS SOFTWARE IS PROVIDED BY Berkeley Software Design, Inc. ``AS IS'' AND 18 * ARE DISCLAIMED. IN NO EVENT SHALL Berkeley Software Design, Inc. BE LIABLE 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * try-and-error for region size. 50 #include "un-namespace.h" 57 #define SA_LEN(sa) (sa)->sa_len 60 #define SALIGN (sizeof(long) - 1) [all …]
|
/freebsd/share/man/man4/ |
H A D | udl.4 | 5 .\" Permission to use, copy, modify, and distribute this software for any 9 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 15 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 22 .Nd DisplayLink DL-120 / DL-160 USB display devices 27 .Bd -ragged -offset indent 35 .Bd -literal -offset indent 41 driver supports USB display devices based on the DisplayLink DL-120 / DL-160 46 .Bl -tag -width Ds -offset indent -compact 47 .It Century Corp. Japan Plus One LCD-8000U [all …]
|
/freebsd/contrib/bearssl/src/int/ |
H A D | i31_mulacc.c | 5 * a copy of this software and associated documentation files (the 6 * "Software"), to deal in the Software without restriction, including 8 * distribute, sublicense, and/or sell copies of the Software, and to 9 * permit persons to whom the Software is furnished to do so, subject to 13 * included in all copies or substantial portions of the Software. 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 * SOFTWARE. 32 uint32_t dl, dh; in br_i31_mulacc() local 41 dl = (a[0] & 31) + (b[0] & 31); in br_i31_mulacc() [all …]
|
H A D | i15_mulacc.c | 5 * a copy of this software and associated documentation files (the 6 * "Software"), to deal in the Software without restriction, including 8 * distribute, sublicense, and/or sell copies of the Software, and to 9 * permit persons to whom the Software is furnished to do so, subject to 13 * included in all copies or substantial portions of the Software. 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 * SOFTWARE. 32 unsigned dl, dh; in br_i15_mulacc() local 41 dl = (a[0] & 15) + (b[0] & 15); in br_i15_mulacc() [all …]
|
/freebsd/lib/libc/iconv/ |
H A D | citrus_db.c | 3 /*- 4 * SPDX-License-Identifier: BSD-2-Clause 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 70 if (strncmp(dhx->dhx_magic, magic, _CITRUS_DB_MAGIC_SIZE) != 0) in _citrus_db_open() 72 if (_memstream_seek(&ms, be32toh(dhx->dhx_entry_offset), SEEK_SET)) in _citrus_db_open() 75 if (be32toh(dhx->dhx_num_entries)*_CITRUS_DB_ENTRY_SIZE > in _citrus_db_open() 82 db->db_region = *r; in _citrus_db_open() 83 db->db_hashfunc = hashfunc; in _citrus_db_open() 84 db->db_hashfunc_closure = hashfunc_closure; in _citrus_db_open() [all …]
|
H A D | citrus_db.h | 3 /*- 4 * SPDX-License-Identifier: BSD-2-Clause 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 64 _citrus_db_locator_init(struct _citrus_db_locator *dl) in _citrus_db_locator_init() argument 67 dl->dl_hashval = 0; in _citrus_db_locator_init() 68 dl->dl_offset = 0; in _citrus_db_locator_init()
|
/freebsd/lib/libc/amd64/string/ |
H A D | strcat.S | 1 /*- 4 * SPDX-License-Expression: BSD-2-Clause 6 * Portions of this software were developed by Robert Clausecker 58 cmpb $0,-8(%rdi) /* 1st byte == 0? */ 63 1: cmpb $0,-7(%rdi) /* 2nd byte == 0? */ 68 1: cmpb $0,-6(%rdi) /* 3rd byte == 0? */ 73 1: cmpb $0,-5(%rdi) /* 4th byte == 0? */ 78 1: cmpb $0,-4(%rdi) /* 5th byte == 0? */ 83 1: cmpb $0,-3(%rdi) /* 6th byte == 0? */ 88 1: cmpb $0,-2(%rdi) /* 7th byte == 0? */ [all …]
|
H A D | stpcpy.S | 1 /*- 4 * SPDX-License-Expression: BSD-2-Clause 6 * Portions of this software were developed by Robert Clausecker 52 movb (%rsi),%dl 54 movb %dl,(%rdi) 56 testb %dl,%dl 79 movb %dl,(%rdi) 80 testb %dl,%dl /* 1st byte == 0? */ 85 movb %dl,(%rdi) 86 testb %dl,%dl /* 2nd byte == 0? */ [all …]
|
/freebsd/stand/efi/boot1/ |
H A D | ufs_module.c | 1 /*- 20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 54 lba += devinfo->partoff; in dskread() 55 lba = lba / (devinfo->dev->Media->BlockSize / DEV_BSIZE); in dskread() 58 status = devinfo->dev->ReadBlocks(devinfo->dev, in dskread() 59 devinfo->dev->Media->MediaId, lba, size, buf); in dskread() 63 "status: %lu\n", devinfo->dev, in dskread() 64 devinfo->dev->Media->MediaId, (uintmax_t)lba, size, in dskread() 66 return (-1); in dskread() [all …]
|
/freebsd/usr.sbin/ppp/ |
H A D | arp.c | 2 * sys-bsd.c - System-dependent procedures for setting up 3 * PPP interfaces on bsd-4.4-ish systems (including 386BSD, NetBSD, etc.) 5 * SPDX-License-Identifier: BSD-4.3TAHOE 14 * distribution and use acknowledge that the software was developed 17 * from this software without specific prior written permission. 18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 78 * SET_SA_FAMILY - set the sa_family field of a struct sockaddr, 90 * arp_SetProxy - Make a proxy ARP entry for the peer. 124 arpmsg.hdr.rtm_seq = ++bundle->routing_seq; in arp_ProxySub() 131 arpmsg.hdr.rtm_msglen = (char *) &arpmsg.hwa - (char *) &arpmsg in arp_ProxySub() [all …]
|
H A D | pap.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> 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 80 #define MAXPAPCODE (sizeof papcodes / sizeof papcodes[0] - 1) 85 struct bundle *bundle = authp->physical->dl->bundle; in pap_Req() 91 namelen = strlen(bundle->cfg.auth.name); in pap_Req() 92 keylen = strlen(bundle->cfg.auth.key); in pap_Req() [all …]
|
H A D | datalink.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 88 struct datalink *dl = (struct datalink *)v; in datalink_OpenTimeout() local 90 timer_Stop(&dl->dial.timer); in datalink_OpenTimeout() 91 if (dl->state == DATALINK_OPENING) in datalink_OpenTimeout() 92 log_Printf(LogCHAT, "%s: Redial timer expired.\n", dl->name); in datalink_OpenTimeout() 96 datalink_StartDialTimer(struct datalink *dl, int Timeout) in datalink_StartDialTimer() argument 100 timer_Stop(&dl->dial.timer); in datalink_StartDialTimer() [all …]
|
H A D | cbcp.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 65 cbcp->required = 0; in cbcp_Init() 66 cbcp->fsm.state = CBCP_CLOSED; in cbcp_Init() 67 cbcp->fsm.id = 0; in cbcp_Init() 68 cbcp->fsm.delay = 0; in cbcp_Init() 69 *cbcp->fsm.phone = '\0'; in cbcp_Init() 70 memset(&cbcp->fsm.timer, '\0', sizeof cbcp->fsm.timer); in cbcp_Init() [all …]
|
H A D | mp.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 94 peer->enddisc.class = 0; in peerid_Init() 95 *peer->enddisc.address = '\0'; in peerid_Init() 96 peer->enddisc.len = 0; in peerid_Init() 97 *peer->authname = '\0'; in peerid_Init() 103 return !strcmp(p1->authname, p2->authname) && in peerid_Equal() 104 p1->enddisc.class == p2->enddisc.class && in peerid_Equal() [all …]
|
/freebsd/contrib/bionic-x86_64-string/ |
H A D | sse2-memset-slm.S | 16 * may be used to endorse or promote products derived from this software 19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 60 testb $8, %dl 62 testb $4, %dl 64 testb $2, %dl 66 testb $1, %dl 74 movq %rcx, -8(%rdi, %rdx) 79 movl %ecx, -4(%rdi, %rdx) 84 movw %cx, -2(%rdi, %rdx) [all …]
|
H A D | avx2-memset-kbl.S | 16 * may be used to endorse or promote products derived from this software 19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 59 testb $8, %dl 61 testb $4, %dl 63 testb $2, %dl 65 testb $1, %dl 73 movq %rcx, -8(%rdi, %rdx) 78 movl %ecx, -4(%rdi, %rdx) 83 movw %cx, -2(%rdi, %rdx) [all …]
|
H A D | sse4-memcmp-slm.S | 16 * may be used to endorse or promote products derived from this software 19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 65 .size name, .-name 72 #define JMPTBL(I, B) (I - B) 114 and $-16, %rsi 831 mov -16(%rdi), %rax 832 mov -16(%rsi), %rcx 836 mov -8(%rdi), %rax 837 mov -8(%rsi), %rcx [all …]
|
/freebsd/stand/efi/libefi/ |
H A D | efienv.c | 1 /*- 13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 40 UINTN dl; in efi_getenv() local 46 dl = *len; in efi_getenv() 47 rv = RS->GetVariable(uv, g, &attr, &dl, data); in efi_getenv() 49 *len = dl; in efi_getenv() 69 * efi_setenv -- Sets an env variable. 82 rv = RS->SetVariable(uv, guid, attr, len, data); in efi_setenv() 96 rv = RS->SetVariable(var, &FreeBSDBootVarGUID, in efi_setenv_freebsd_wcs() [all …]
|
/freebsd/usr.bin/rpcgen/ |
H A D | rpc_cout.c | 4 * media and as a part of the software program in whole or part. Users 53 * Emit the C-routine for the given definition 58 if (def->def_kind == DEF_CONST) { in emit() 61 if (def->def_kind == DEF_PROGRAM) { in emit() 65 if (def->def_kind == DEF_TYPEDEF) { in emit() 72 if (strcmp(def->def.ty.old_type, def->def_name) == 0) in emit() 76 switch (def->def_kind) { in emit() 100 if (def->def_kind == DEF_PROGRAM || def->def_kind == DEF_CONST) { in findtype() 103 return (streq(def->def_name, type)); in findtype() 133 print_generic_header(def->def_name, in print_header() [all …]
|
/freebsd/usr.sbin/rrenumd/ |
H A D | rrenumd.c | 3 /*- 4 * SPDX-License-Identifier: BSD-3-Clause 18 * may be used to endorse or promote products derived from this software 21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 127 fprintf(stderr, "usage: rrenumd [-c conf_file|-s] [-df" in show_usage() 130 "] [-P policy" in show_usage() 143 sin6->sin6_len = sizeof(*sin6); in init_sin6() 144 sin6->sin6_family = AF_INET6; in init_sin6() 145 if (inet_pton(AF_INET6, addr_ascii, &sin6->sin6_addr) != 1) in init_sin6() [all …]
|
/freebsd/contrib/ntp/html/drivers/ |
H A D | driver44.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 8 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> 12 <h1>NeoClock4X - DCF77 / TDF serial line receiver<br> 15 <!-- #BeginDate format:En2m -->21-Oct-2010 23:44<!-- #EndDate --> 46 <td valign="top">/dev/neoclock4x-u<br> 53 …ref="http://www.linum.com"><img src="../pic/neoclock4x.gif" alt="NeoClock4X - DCF77 receiver" heig… 60 …Software GmbH</a>. The receiver is available as a <a href="http://www.dcf77.de">DCF77</a> or TDF r… 63 <dl> 67 </dl> 68 <dl> [all …]
|
/freebsd/contrib/lua/doc/ |
H A D | readme.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 6 <META HTTP-EQUIV="content-type" CONTENT="text/html; charset=iso-8859-1"> 10 border-radius: 8px ; 16 word-spacing: 0.25em ; 19 dl.display dd { 20 padding-bottom: 0.2em ; 24 font-size: 12pt ; 54 <A HREF="http://www.puc-rio.br/">PUC-Rio</A>, 57 <A HREF="#license">free software</A> 90 The instructions given below for building Lua are for Unix-like platforms, [all …]
|
/freebsd/stand/i386/pmbr/ |
H A D | pmbr.S | 1 #- 14 # 3. Neither the name of the author nor the names of any co-contributors 15 # may be used to endorse or promote products derived from this software 18 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 27 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 75 movw $main-EXEC+LOAD,%si # Source 77 movw $SECSIZE-(main-start),%cx # Byte count 83 jmp main-LOAD+EXEC # To relocated code 85 # Validate drive number in %dl. 87 main: cmpb $0x80,%dl # Drive valid? [all …]
|