/freebsd/sys/contrib/zlib/ |
H A D | adler32.c | 10 #define BASE 65521U /* largest prime smaller than 65536 */ macro 34 if (a >= BASE) a -= BASE; \ 52 if (a >= BASE) a -= BASE; \ 55 # define MOD(a) a %= BASE 56 # define MOD28(a) a %= BASE 57 # define MOD63(a) a %= BASE 72 if (adler >= BASE) in adler32_z() 73 adler -= BASE; in adler32_z() 75 if (sum2 >= BASE) in adler32_z() 76 sum2 -= BASE; in adler32_z() [all …]
|
/freebsd/contrib/libxo/xohtml/ |
H A D | xohtml.sh.in | 12 BASE=@XO_SHAREDIR@ 32 BASE="$1"; 48 BASE="${WEB}"; 70 echo '<link rel="stylesheet" href="'$BASE'/xohtml.css">' 71 echo '<link rel="stylesheet" href="'$BASE'/external/jquery.qtip.css"/>' 72 echo '<script type="text/javascript" src="'$BASE'/external/jquery.js"></script>' 73 echo '<script type="text/javascript" src="'$BASE'/external/jquery.qtip.js"></script>' 74 echo '<script type="text/javascript" src="'$BASE'/xohtml.js"></script>'
|
/freebsd/usr.bin/xohtml/ |
H A D | xohtml.sh | 13 BASE=/usr/share/libxo 33 BASE="$1"; 49 BASE="${WEB}"; 71 echo '<link rel="stylesheet" href="'$BASE'/xohtml.css">' 72 echo '<link rel="stylesheet" href="'$BASE'/external/jquery.qtip.css"/>' 73 echo '<script type="text/javascript" src="'$BASE'/external/jquery.js"></script>' 74 echo '<script type="text/javascript" src="'$BASE'/external/jquery.qtip.js"></script>' 75 echo '<script type="text/javascript" src="'$BASE'/xohtml.js"></script>'
|
/freebsd/sys/dev/mii/ |
H A D | miidevs | 133 model yyAMD 79C972_10T 0x0001 Am79C972 internal 10BASE-T interface 135 model yyAMD 79c901 0x0037 Am79C901 10BASE-T interface 156 model BROADCOM BCM5400 0x0004 BCM5400 1000BASE-T media interface 157 model BROADCOM BCM5401 0x0005 BCM5401 1000BASE-T media interface 158 model BROADCOM BCM5402 0x0006 BCM5402 1000BASE-T media interface 159 model BROADCOM BCM5411 0x0007 BCM5411 1000BASE-T media interface 160 model BROADCOM BCM5404 0x0008 BCM5404 1000BASE-T media interface 161 model BROADCOM BCM5424 0x000a BCM5424/BCM5234 1000BASE-T media interface 162 model BROADCOM BCM5464 0x000b BCM5464 1000BASE-T media interface 163 model BROADCOM BCM5461 0x000c BCM5461 1000BASE-T media interface [all …]
|
/freebsd/crypto/openssl/Configurations/platform/ |
H A D | Windows.pm | 9 require platform::BASE; 32 my $in_libname = platform::BASE->staticname($_[1]); 38 return platform::BASE->staticname($_[1]) 49 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 56 return platform::BASE::__isshared($_[1]) ? $_[1] : undef; 60 return platform::BASE::__concat($_[0]->sharedname_import($_[1]),
|
H A D | Unix.pm | 9 require platform::BASE; 47 my $in_libname = platform::BASE->staticname($_[1]); 53 return platform::BASE->staticname($_[1]); 57 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 62 return platform::BASE::__isshared($_[1]) ? $_[1] : undef; 80 return platform::BASE::__concat($simplename, $simpleext);
|
H A D | VMS.pm | 9 require platform::BASE; 41 my $in_libname = platform::BASE->staticname($_[1]); 45 return platform::BASE::__concat($_[0]->osslprefix(), 46 platform::BASE->staticname($_[1]), 58 return platform::BASE::__concat($_[0]->osslprefix(), 59 platform::BASE->sharedname($_[1]),
|
H A D | mingw.pm | 33 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 47 return platform::BASE::__concat(platform::BASE->sharedname($_[1]),
|
H A D | AIX.pm | 24 my $in_libname = platform::BASE->staticname($_[1]); 28 return platform::BASE->staticname($_[1]) . ($disabled{shared} ? '' : '_a');
|
H A D | BASE.pm | 1 package platform::BASE;
|
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/ |
H A D | APISetVisitor.h | 92 #define GENERATE_TRAVERSE_METHOD(CLASS, BASE) \ argument 99 #define GENERATE_WALKUP_AND_VISIT_METHODS(CLASS, BASE) \ argument 101 TRY_TO(walkUpFrom##BASE(Record)); \ 107 #define CONCRETE_RECORD(CLASS, BASE, KIND) \ argument 108 GENERATE_TRAVERSE_METHOD(CLASS, BASE) \ 109 GENERATE_WALKUP_AND_VISIT_METHODS(CLASS, BASE) 111 #define ABSTRACT_RECORD(CLASS, BASE) \ argument 112 GENERATE_WALKUP_AND_VISIT_METHODS(CLASS, BASE) 153 #define CONCRETE_RECORD(CLASS, BASE, KIND) \ in traverseAPIRecord() argument
|
/freebsd/crypto/openssl/Configurations/platform/Windows/ |
H A D | MSVC.pm | 21 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 29 return platform::BASE::__concat($_[0]->staticname($_[1]), $_[0]->pdbext()); 33 return platform::BASE::__concat($_[0]->sharedname($_[1]), $_[0]->pdbext()); 37 return platform::BASE::__concat($_[0]->dsoname($_[1]), $_[0]->pdbext()); 41 return platform::BASE::__concat($_[0]->binname($_[1]), $_[0]->pdbext());
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_ids_to_path/ |
H A D | zfs_ids_to_path_001_pos.ksh | 73 typeset BASE=$TESTPOOL/$TESTFS 81 typeset mntpnt=$(get_prop mountpoint $BASE) 90 typeset ds_id=$(zdb $BASE | grep "^Dataset" | sed 's/.* ID \([0-9]*\).*/\1/') 91 test_one $ds_id $BASE $TESTFILE1 92 test_one $ds_id $BASE $TESTFILE2 93 test_one $ds_id $BASE $TESTFILE3 94 test_one $ds_id $BASE $TESTFILE4
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Template.h | 600 #define DECL(DERIVED, BASE) \ argument 605 #define OBJCCONTAINER(DERIVED, BASE) argument 606 #define FILESCOPEASM(DERIVED, BASE) argument 607 #define TOPLEVELSTMT(DERIVED, BASE) argument 608 #define IMPORT(DERIVED, BASE) argument 609 #define EXPORT(DERIVED, BASE) argument 610 #define LINKAGESPEC(DERIVED, BASE) argument 611 #define OBJCCOMPATIBLEALIAS(DERIVED, BASE) argument 612 #define OBJCMETHOD(DERIVED, BASE) argument 613 #define OBJCTYPEPARAM(DERIVED, BASE) argument [all …]
|
/freebsd/crypto/openssh/regress/ |
H A D | sftp-glob.sh | 39 BASE=${OBJ}/glob 41 DIR=${BASE}/dir 52 rm -rf ${BASE} 59 sftp_ls "${BASE}/d*" "dir glob" "`basename ${DATA}`" "" 74 rm -rf ${BASE}
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclVisitor.h | 39 #define DECL(DERIVED, BASE) \ in Visit() argument 49 #define DECL(DERIVED, BASE) \ argument 50 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); }
|
/freebsd/sys/contrib/openzfs/.github/workflows/scripts/ |
H A D | qemu-7-prepare.sh | 27 BASE="$HOME/work/zfs/zfs" 28 MERGE="$BASE/.github/workflows/scripts/merge_summary.awk" 71 cat $file | $BASE/scripts/zfs-tests-color.sh > $fileC 78 $MERGE summary | $BASE/scripts/zfs-tests-color.sh > /tmp/summary.txt 105 cat /tmp/fail.txt | $BASE/scripts/zfs-tests-color.sh >> /tmp/failed.txt
|
H A D | qemu-6-tests.sh | 26 BASE="$HOME/work/zfs/zfs" 27 COLOR="$BASE/scripts/zfs-tests-color.sh"
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTTypeTraits.cpp | 42 #define DECL(DERIVED, BASE) { NKI_##BASE, #DERIVED "Decl" }, argument 45 #define STMT(DERIVED, BASE) { NKI_##BASE, #DERIVED }, argument 48 #define TYPE(DERIVED, BASE) { NKI_##BASE, #DERIVED "Type" }, argument 122 #define DECL(DERIVED, BASE) \ in getFromNode() argument
|
H A D | DeclBase.cpp | 59 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0; argument 67 #define DECL(DERIVED, BASE) \ argument 148 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED; in getDeclKindName() argument 179 #define DECL(DERIVED, BASE) case Decl::DERIVED: return true; in hasValidDeclKind() argument 188 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED; in getDeclKindName() argument 204 #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s; in PrintStats() argument 210 #define DECL(DERIVED, BASE) \ in PrintStats() argument 226 #define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break; in add() argument 1045 #define DECL(NAME, BASE) in castFromDeclContext() argument 1058 #define DECL(NAME, BASE) in castToDeclContext() argument [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/ |
H A D | APIRecords.inc | 15 #define ABSTRACT_RECORD(CLASS, BASE) RECORD(CLASS, BASE) 18 #define CONCRETE_RECORD(CLASS, BASE, KIND) RECORD(CLASS, BASE) 21 #define RECORD(CLASS, BASE)
|
/freebsd/contrib/unbound/contrib/ |
H A D | unbound_cache.sh | 19 BASE="/opt/csw" 22 UC="$BASE/sbin/unbound-control"
|
/freebsd/contrib/telnet/libtelnet/ |
H A D | pk.c | 153 # define BASE (1 << BASEBITS) in genkeys() macro 158 MINT *base = mp_itom((short)BASE); in genkeys() 167 r = seed[i] % BASE; in genkeys()
|
/freebsd/lib/libc/locale/ |
H A D | nl_langinfo.c | 48 #define _REL(BASE) ((int)item-BASE) argument
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/ |
H A D | lse.S | 118 #define NAME(BASE) GLUE4(__aarch64_, BASE, SIZE, SUFF) argument
|