/freebsd-src/contrib/pjdfstest/tests/open/ |
H A D | 06.t | 3 # $FreeBSD: head/tools/regression/pjdfstest/tests/open/06.t 211352 2010-08-15 21:24:17Z pjd $ 22 expect 0 -u 65534 -g 65534 create ${n1} 0644 24 expect 0 -u 65534 -g 65534 chmod ${n1} 0600 25 expect 0 -u 65534 -g 65534 open ${n1} O_RDONLY, 26 expect 0 -u 65534 -g 65534 open ${n1} O_WRONLY, 27 expect 0 -u 65534 -g 65534 open ${n1} O_RDWR, 28 expect 0 -u 65534 -g 65534 chmod ${n1} 0060 29 expect 0 -u 65533 -g 65534 open ${n1} O_RDONLY, 30 expect 0 -u 65533 -g 65534 open ${n1} O_WRONLY, 31 expect 0 -u 65533 -g 65534 open ${n1} O_RDWR, [all …]
|
H A D | 07.t | 3 # $FreeBSD: head/tools/regression/pjdfstest/tests/open/07.t 211352 2010-08-15 21:24:17Z pjd $ 20 expect 0 -u 65534 -g 65534 create ${n1} 0644 22 expect 0 -u 65534 -g 65534 chmod ${n1} 0477 23 expect EACCES -u 65534 -g 65534 open ${n1} O_RDONLY,O_TRUNC 24 expect 0 -u 65534 -g 65534 chmod ${n1} 0747 25 expect EACCES -u 65533 -g 65534 open ${n1} O_RDONLY,O_TRUNC 26 expect 0 -u 65534 -g 65534 chmod ${n1} 0774 27 expect EACCES -u 65533 -g 65533 open ${n1} O_RDONLY,O_TRUNC 29 expect 0 -u 65534 -g 65534 chmod ${n1} 0177 30 expect EACCES -u 65534 -g 65534 open ${n1} O_RDONLY,O_TRUNC [all …]
|
/freebsd-src/share/examples/mdoc/ |
H A D | deshallify.sh | 5 sed -e 's/s shall define/s define/g' \ 6 -e 's/shall define/defines/g' \ 7 -e 's/shall attempt/attempts/g' \ 8 -e 's/shall include/includes/g' \ 9 -e 's/shall return zero and have/returns zero and has/g' \ 10 -e 's/shall return/returns/g' \ 11 -e 's/shall also include/also includes/g' \ 12 -e 's/pipe or FIFO shall be /pipe of FIFO are /g' \ 13 -e 's/s shall be /s are /g' \ 14 -e 's/shall be /is /g' \ [all …]
|
/freebsd-src/sys/contrib/openzfs/module/lua/ |
H A D | lgc.c | 57 #define makewhite(g,x) \ argument 58 (gch(x)->marked = cast_byte((gch(x)->marked & maskcolors) | luaC_white(g))) 60 #define white2gray(x) resetbits(gch(x)->marked, WHITEBITS) 61 #define black2gray(x) resetbit(gch(x)->marked, BLACKBIT) 64 #define isfinalized(x) testbit(gch(x)->marked, FINALIZEDBIT) 73 #define markvalue(g,o) { checkconsistency(o); \ argument 74 if (valiswhite(o)) reallymarkobject(g,gcvalue(o)); } 76 #define markobject(g,t) { if ((t) && iswhite(obj2gco(t))) \ argument 77 reallymarkobject(g, obj2gco(t)); } 79 static void reallymarkobject (global_State *g, GCObject *o); [all …]
|
H A D | lstate.c | 68 global_State g; member 73 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l))) 102 void luaE_setdebt (global_State *g, l_mem debt) { in luaE_setdebt() argument 103 g->totalbytes -= (debt - g->GCdebt); in luaE_setdebt() 104 g->GCdebt = debt; in luaE_setdebt() 110 lua_assert(L->ci->next == NULL); in luaE_extendCI() 111 L->ci->next = ci; in luaE_extendCI() 112 ci->previous = L->ci; in luaE_extendCI() 113 ci->next = NULL; in luaE_extendCI() 119 CallInfo *ci = L->ci; in luaE_freeCI() [all …]
|
/freebsd-src/contrib/lua/src/ |
H A D | lgc.c | 71 #define makewhite(g,x) \ argument 72 (x->marked = cast_byte((x->marked & ~maskcolors) | luaC_white(g))) 75 #define set2gray(x) resetbits(x->marked, maskcolors) 80 (x->marked = cast_byte((x->marked & ~WHITEBITS) | bitmask(BLACKBIT))) 94 #define markvalue(g,o) { checkliveness(g->mainthread,o); \ argument 95 if (valiswhite(o)) reallymarkobject(g,gcvalue(o)); } 97 #define markkey(g, n) { if keyiswhite(n) reallymarkobject(g,gckey(n)); } argument 99 #define markobject(g,t) { if (iswhite(t)) reallymarkobject(g, obj2gco(t)); } argument 105 #define markobjectN(g,t) { if (t) markobject(g,t); } argument 107 static void reallymarkobject (global_State *g, GCObject *o); [all …]
|
H A D | lstate.c | 46 global_State g; member 51 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l))) 89 void luaE_setdebt (global_State *g, l_mem debt) { in luaE_setdebt() argument 90 l_mem tb = gettotalbytes(g); in luaE_setdebt() 92 if (debt < tb - MAX_LMEM) in luaE_setdebt() 93 debt = tb - MAX_LMEM; /* will make 'totalbytes == MAX_LMEM' */ in luaE_setdebt() 94 g->totalbytes = tb - debt; in luaE_setdebt() 95 g->GCdebt = debt; in luaE_setdebt() 107 lua_assert(L->ci->next == NULL); in luaE_extendCI() 109 lua_assert(L->ci->next == NULL); in luaE_extendCI() [all …]
|
/freebsd-src/sys/dev/hpt27xx/ |
HD | i386-elf.hpt27xx_lib.o | ... .zf Ja h] +o*7 Z - 3 w ]) g) g) g) ... |
/freebsd-src/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_globals.cpp | 1 //===-- asan_globals.cpp -------- 34 const Global *g; global() member 43 Global g; global() member 58 PoisonShadowForGlobal(const Global * g,u8 value) PoisonShadowForGlobal() argument 62 PoisonRedZones(const Global & g) PoisonRedZones() argument 76 IsAddressNearGlobal(uptr addr,const __asan_global & g) IsAddressNearGlobal() argument 82 ReportGlobal(const Global & g,const char * prefix) ReportGlobal() argument 101 FindRegistrationSite(const Global * g) FindRegistrationSite() argument 118 const Global &g = *l->g; GetGlobalsForAddress() local 141 CheckODRViolationViaIndicator(const Global * g) CheckODRViolationViaIndicator() argument 164 CheckODRViolationViaPoisoning(const Global * g) CheckODRViolationViaPoisoning() argument 194 UseODRIndicator(const Global * g) UseODRIndicator() argument 201 RegisterGlobal(const Global * g) RegisterGlobal() argument 242 UnregisterGlobal(const Global * g) UnregisterGlobal() argument 270 const Global *g = &dyn_g.g; StopInitOrderChecking() local 293 PrintGlobalNameIfASCII(InternalScopedString * str,const __asan_global & g) PrintGlobalNameIfASCII() argument 303 PrintGlobalLocation(InternalScopedString * str,const __asan_global & g,bool print_module_name) PrintGlobalLocation() argument 442 const Global *g = &dyn_g.g; __asan_before_dynamic_init() local 465 const Global *g = &dyn_g.g; __asan_after_dynamic_init() local [all...] |
/freebsd-src/tools/regression/environ/ |
H A D | envtest.t | 3 # Copyright (c) 2007-2008 Sean C. Farley <scf@FreeBSD.org> 37 result=`./envctl -t "${@}"` 39 if [ ${?} -ne 0 ] 54 echo "${result}" | sed 's/[ \t]*$//' | grep -q "^${@}$" 55 if [ ${?} -eq 0 ] 59 echo "not ok ${testndx} - '${lasttest}'" 80 run_test -g FOO 83 run_test -c 3 -g FOO 86 run_test -g FOOBAR 89 run_test -c 3 -g FOOBAR [all …]
|
/freebsd-src/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
H A D | cert-onecolumn.pem | 1 -----BEGIN CERTIFICATE----- 17 g 31 g 37 G 59 g 64 g 83 G 125 G 143 G 181 g [all …]
|
H A D | dsa-onecolumn.pem | 1 -----BEGIN DSA PRIVATE KEY----- 2 Proc-Type: 4,ENCRYPTED 3 DEK-Info: AES-256-CBC,A2A7FA3E5E454B59C8777564E7AF3CD6 21 g 69 g 74 G 95 g 105 g 110 g 115 g [all …]
|
/freebsd-src/crypto/openssh/regress/ |
H A D | sftp-glob.sh | 1 # $OpenBSD: sftp-glob.sh,v 1.4 2009/08/13 01:11:55 djm Exp $ 19 printf "ls -l %s" "${target}" | \ 20 ${SFTP} -b - -D ${SFTPSERVER} 2>/dev/null | \ 21 grep -v "^sftp>" > ${RESULTS} 22 if [ $? -ne 0 ]; then 36 rm -f ${RESULTS} 44 GLOB1="${DIR}/g-wild*" 45 GLOB2="${DIR}/g-wildx" 46 QUOTE="${DIR}/g-quote\"" 47 SLASH="${DIR}/g-sl\\ash" [all …]
|
/freebsd-src/contrib/netbsd-tests/bin/df/ |
H A D | t_df.sh | 31 "correct according to some already-known, sane" \ 36 Filesystem 1K-blocks Used Avail %Cap Mounted on 47 filer:/ 1202716672 1202716672 -60135833 105% /filer 51 filer:/ 1202716672 1142580838 -60135833 105% /filer 52 filer:/ 1202716672 1202716672 -120271667 111% /filer 56 filer:/ 1202716672 1142580838 -120271667 111% /filer 57 filer:/ 1202716672 1202716672 -180407500 117% /filer 58 /dev/ld0g 1308726116 17901268 1225388540 1% /anon-root 59 /dev/ld0g 1308726116 0 1308726116 0% /anon-root 60 /dev/ld0g 1308726116 261745224 1046980892 20% /anon-root [all …]
|
/freebsd-src/contrib/ntp/sntp/libevent/ |
H A D | bufferevent_ratelim.c | 2 * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson 3 * Copyright (c) 2002-2006 Niels Provos <provos@citi.umich.edu> 28 #include "evconfig-private.h" 42 #include "ratelim-internal.h" 44 #include "bufferevent-internal.h" 45 #include "mm-internal.h" 46 #include "util-internal.h" 47 #include "event-internal.h" 57 already used who-knows-how-much bandwidth this tick. We in ev_token_bucket_init_() 61 if (bucket->read_limit > (ev_int64_t) cfg->read_maximum) in ev_token_bucket_init_() [all …]
|
/freebsd-src/contrib/libevent/ |
H A D | bufferevent_ratelim.c | 2 * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson 3 * Copyright (c) 2002-2006 Niels Provos <provos@citi.umich.edu> 28 #include "evconfig-private.h" 42 #include "ratelim-internal.h" 44 #include "bufferevent-internal.h" 45 #include "mm-internal.h" 46 #include "util-internal.h" 47 #include "event-internal.h" 57 already used who-knows-how-much bandwidth this tick. We in ev_token_bucket_init_() 61 if (bucket->read_limit > (ev_int64_t) cfg->read_maximum) in ev_token_bucket_init_() [all …]
|
/freebsd-src/sys/contrib/openzfs/config/ |
H A D | Substfiles.am | 2 -e 's|@abs_top_srcdir[@]|$(abs_top_srcdir)|g' \ 3 -e 's|@bindir[@]|$(bindir)|g' \ 4 -e 's|@datadir[@]|$(datadir)|g' \ 5 -e 's|@initconfdir[@]|$(initconfdir)|g' \ 6 -e 's|@initdir[@]|$(initdir)|g' \ 7 -e 's|@mounthelperdir[@]|$(mounthelperdir)|g' \ 8 -e 's|@pammoduledir[@]|$(pammoduledir)|g' \ 9 -e 's|@runstatedir[@]|$(runstatedir)|g' \ 10 -e 's|@sbindir[@]|$(sbindir)|g' \ 11 -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ [all …]
|
/freebsd-src/contrib/llvm-project/lld/docs/ |
H A D | partitions.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 4 <!-- Generated by graphviz version 2.38.0 (20140413.2041) 5 --> 6 <!-- Title: G Pages: 1 --> 9 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 184)"> 10 <title>G</title> 11 <polygon fill="white" stroke="none" points="-4,4 -4,-184 389,-184 389,4 -4,4"/> 12 <!-- part_main --> 13 <g id="node1" class="node"><title>part_main</title> [all …]
|
/freebsd-src/tools/tools/netmap/ |
H A D | pkt-gen.c | 2 * Copyright (C) 2011-2014 Matteo Landi, Luigi Rizzo. All rights reserved. 3 * Copyright (C) 2013-2015 Universita` di Pisa. All rights reserved. 28 * $Id: pkt-gen.c 12346 2013-06-12 17:36:25Z luigi $ 133 n->octet[0], n->octet[1], n->octet[2], in ether_ntoa() 134 n->octet[3], n->octet[4], n->octet[5]); in ether_ntoa() 184 static const char *default_payload = "netmap pkt-gen DIRECT payload\n" 187 static const char *indirect_payload = "netmap pkt-gen indirect payload\n" 193 #define VIRT_HDR_1 10 /* length of a base vnet-hdr */ 194 #define VIRT_HDR_2 12 /* length of the extenede vnet-hdr */ 220 ((af) == AF_INET ? (p)->ipv4.f: (p)->ipv6.f) [all …]
|
/freebsd-src/share/man/man4/ |
H A D | ath_hal.4 | 1 .\"- 2 .\" Copyright (c) 2002-2009 Sam Leffler, Errno Consulting 64 driver but configured separately to allow fine-grained control 72 PCIe, Mini-PCIe or ExpressCard format. 74 Historically this code has been released in a binary-only form 83 .Bl -column -compact "Samsung SWL-5200N" "AR5212" "Cardbus" "a/b/g" 85 .It "Aztech WL830PC AR5212 CardBus b/g" 86 .It "D-Link DWL-A650 AR5210 CardBus a" 87 .It "D-Link DWL-AB650 AR5211 CardBus a/b" 88 .It "D-Link DWL-A520 AR5210 PCI a" [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/ |
H A D | ReductionRules.h | 1 //===- ReductionRules.h - Reduction Rules -----------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 30 void applyR1(GraphT &G, typename GraphT::NodeId NId) { in applyR1() argument 37 assert(G.getNodeDegree(NId) == 1 && in applyR1() 40 EdgeId EId = *G.adjEdgeIds(NId).begin(); in applyR1() 41 NodeId MId = G.getEdgeOtherNodeId(EId, NId); in applyR1() 43 const Matrix &ECosts = G.getEdgeCosts(EId); in applyR1() 44 const Vector &XCosts = G.getNodeCosts(NId); in applyR1() [all …]
|
/freebsd-src/contrib/pjdfstest/tests/granular/ |
H A D | 05.t | 3 # $FreeBSD: head/tools/regression/pjdfstest/tests/granular/05.t 211352 2010-08-15 21:24:17Z pjd $ 5 desc="NFSv4 granular permissions checking - DELETE and DELETE_CHILD with directories" 26 expect EACCES -u 65534 -g 65534 rmdir ${n0} 28 expect 0 -u 65534 -g 65534 rmdir ${n0} 33 expect EACCES -u 65534 -g 65534 rename ${n0} ../${n3}/${n0} 35 expect 0 -u 65534 -g 65534 rename ${n0} ../${n3}/${n0} 39 expect EACCES -u 65534 -g 65534 rename ../${n3}/${n0} ${n0} 41 expect 0 -u 65534 -g 65534 rename ../${n3}/${n0} ${n0} 42 expect 0 -u 65534 -g 65534 rmdir ${n0} 49 expect EACCES -u 65534 -g 65534 rename ../${n3}/${n0} ${n0} [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/Support/ |
H A D | SHA256.cpp | 1 //====- SHA256.cpp - SHA256 implementation ---*- C++ -* ======// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 * The SHA-256 Secure Hash Standard was published by NIST in 2002. 11 * http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf 14 * pre-exsiting SHA1 code [1]. 16 * [0] https://hyperelliptic.org/nacl/nacl-20110221.tar.bz2 (public domain 20 //===----------------------------------------------------------------------===// 32 #define ROTR(x, n) (((x) >> n) | ((x) << (32 - (n)))) 43 #define F_EXPAND(A, B, C, D, E, F, G, H, M1, M2, M3, M4, k) \ argument [all …]
|
/freebsd-src/crypto/openssl/crypto/sm3/ |
H A D | sm3.c | 2 * Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved. 18 c->A = SM3_A; in ossl_sm3_init() 19 c->B = SM3_B; in ossl_sm3_init() 20 c->C = SM3_C; in ossl_sm3_init() 21 c->D = SM3_D; in ossl_sm3_init() 22 c->E = SM3_E; in ossl_sm3_init() 23 c->F = SM3_F; in ossl_sm3_init() 24 c->G = SM3_G; in ossl_sm3_init() 25 c->H = SM3_H; in ossl_sm3_init() 32 register unsigned MD32_REG_T A, B, C, D, E, F, G, H; in ossl_sm3_block_data_order() local [all …]
|
/freebsd-src/sys/contrib/openzfs/scripts/ |
H A D | zfs2zol-patch.sed | 1 #!/bin/sed -f 3 s:usr/src/uts/common/fs/zfs/sys:include/sys:g 4 s:usr/src/uts/common/fs/zfs:module/zfs:g 5 s:usr/src/lib/libzpool:lib/libzpool:g 6 s:usr/src/cmd:cmd:g 7 s:usr/src/common/nvpair:module/nvpair:g 8 s:usr/src/lib/libzfs/common/libzfs.h:include/libzfs.h:g 9 s:usr/src/man/man1m/zfs.1m:man/man8/zfs.8:g 10 s:usr/src/uts/common/sys:include/sys:g 11 s:usr/src/lib/libzfs_core/common/libzfs_core.h:include/libzfs_core.h:g [all …]
|