| /freebsd-12.1/contrib/binutils/opcodes/ |
| H A D | alpha-opc.c | 400 #define BASE AXP_OPCODE_BASE macro 486 { "lda", MEM(0x08), BASE, ARG_MEM }, 488 { "ldah", MEM(0x09), BASE, ARG_MEM }, 492 { "ldq_u", MEM(0x0B), BASE, ARG_MEM }, 496 { "stq_u", MEM(0x0F), BASE, ARG_MEM }, 1068 BASE, { ZA, CPRB } }, 1072 0xFFFFFFFF, BASE, { 0 } }, 1470 { "ldl", MEM(0x28), BASE, ARG_MEM }, 1471 { "ldq", MEM(0x29), BASE, ARG_MEM }, 1474 { "stl", MEM(0x2C), BASE, ARG_MEM }, [all …]
|
| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| H A D | adler32.c | 25 if (a >= (BASE << 16)) a -= (BASE << 16); \ 26 if (a >= (BASE << 15)) a -= (BASE << 15); \ 32 if (a >= (BASE << 9)) a -= (BASE << 9); \ 33 if (a >= (BASE << 8)) a -= (BASE << 8); \ 34 if (a >= (BASE << 7)) a -= (BASE << 7); \ 35 if (a >= (BASE << 6)) a -= (BASE << 6); \ 41 if (a >= BASE) a -= BASE; \ 49 if (a >= BASE) a -= BASE; \ 144 if (sum1 > BASE) sum1 -= BASE; 145 if (sum1 > BASE) sum1 -= BASE; [all …]
|
| /freebsd-12.1/sys/contrib/zlib/ |
| H A D | adler32.c | 36 if (a >= BASE) a -= BASE; \ 54 if (a >= BASE) a -= BASE; \ 57 # define MOD(a) a %= BASE 78 if (adler >= BASE) 79 adler -= BASE; 81 if (sum2 >= BASE) 82 sum2 -= BASE; 164 if (sum1 >= BASE) sum1 -= BASE; 165 if (sum1 >= BASE) sum1 -= BASE; 166 if (sum2 >= ((unsigned long)BASE << 1)) sum2 -= ((unsigned long)BASE << 1); [all …]
|
| /freebsd-12.1/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-12.1/usr.bin/xohtml/ |
| H A D | xohtml.sh | 14 BASE=/usr/share/libxo 34 BASE="$1"; 50 BASE="${WEB}"; 72 echo '<link rel="stylesheet" href="'$BASE'/xohtml.css">' 73 echo '<link rel="stylesheet" href="'$BASE'/external/jquery.qtip.css"/>' 74 echo '<script type="text/javascript" src="'$BASE'/external/jquery.js"></script>' 75 echo '<script type="text/javascript" src="'$BASE'/external/jquery.qtip.js"></script>' 76 echo '<script type="text/javascript" src="'$BASE'/xohtml.js"></script>'
|
| /freebsd-12.1/sys/dev/mii/ |
| H A D | miidevs | 134 model yyAMD 79c901 0x0037 Am79C901 10BASE-T interface 155 model BROADCOM BCM5400 0x0004 BCM5400 1000BASE-T media interface 156 model BROADCOM BCM5401 0x0005 BCM5401 1000BASE-T media interface 157 model BROADCOM BCM5402 0x0006 BCM5402 1000BASE-T media interface 158 model BROADCOM BCM5411 0x0007 BCM5411 1000BASE-T media interface 159 model BROADCOM BCM5404 0x0008 BCM5404 1000BASE-T media interface 161 model BROADCOM BCM5464 0x000b BCM5464 1000BASE-T media interface 162 model BROADCOM BCM5461 0x000c BCM5461 1000BASE-T media interface 258 model LEVEL1 LXT1000 0x000c LXT1000 1000BASE-T media interface 333 model TI TLAN10T 0x0001 ThunderLAN 10BASE-T media interface [all …]
|
| /freebsd-12.1/contrib/apr/ |
| H A D | apr.dsp | 37 # PROP BASE Use_MFC 0 41 # PROP BASE Target_Dir "" 52 # ADD BASE BSC32 /nologo 55 # ADD BASE LIB32 /nologo 60 # PROP BASE Use_MFC 0 76 # ADD BASE BSC32 /nologo 79 # ADD BASE LIB32 /nologo 84 # PROP BASE Use_MFC 0 107 # PROP BASE Use_MFC 0 131 # PROP BASE Use_MFC 0 [all …]
|
| H A D | libapr.dsp | 38 # PROP BASE Use_MFC 0 42 # PROP BASE Target_Dir "" 56 # ADD BASE BSC32 /nologo 70 # PROP BASE Use_MFC 0 74 # PROP BASE Target_Dir "" 88 # ADD BASE BSC32 /nologo 102 # PROP BASE Use_MFC 0 120 # ADD BASE BSC32 /nologo 134 # PROP BASE Use_MFC 0 166 # PROP BASE Use_MFC 0 [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Template.h | 451 #define DECL(DERIVED, BASE) \ argument 457 #define FILESCOPEASM(DERIVED, BASE) argument 458 #define IMPORT(DERIVED, BASE) argument 459 #define EXPORT(DERIVED, BASE) argument 460 #define LINKAGESPEC(DERIVED, BASE) argument 462 #define OBJCMETHOD(DERIVED, BASE) argument 464 #define OBJCIVAR(DERIVED, BASE) argument 465 #define OBJCPROPERTY(DERIVED, BASE) argument 467 #define EMPTY(DERIVED, BASE) argument 470 #define BLOCK(DERIVED, BASE) argument [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | ExprOpenMP.h | 46 enum { BASE, LOWER_BOUND, LENGTH, END_EXPR }; enumerator 70 SubExprs[BASE] = Base; in OMPArraySectionExpr() 82 Expr *getBase() { return cast<Expr>(SubExprs[BASE]); } in getBase() 83 const Expr *getBase() const { return cast<Expr>(SubExprs[BASE]); } in getBase() 85 void setBase(Expr *E) { SubExprs[BASE] = E; } in setBase() 124 return child_range(&SubExprs[BASE], &SubExprs[END_EXPR]); in children()
|
| H A D | DeclVisitor.h | 40 #define DECL(DERIVED, BASE) \ in Visit() argument 50 #define DECL(DERIVED, BASE) \ argument 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); }
|
| H A D | ASTFwd.h | 21 #define DECL(DERIVED, BASE) class DERIVED##Decl; argument 24 #define STMT(DERIVED, BASE) class DERIVED; argument 27 #define TYPE(DERIVED, BASE) class DERIVED##Type; argument
|
| H A D | ASTTypeTraits.h | 132 #define DECL(DERIVED, BASE) NKI_##DERIVED##Decl, argument 135 #define STMT(DERIVED, BASE) NKI_##DERIVED, argument 138 #define TYPE(DERIVED, BASE) NKI_##DERIVED##Type, argument 187 #define DECL(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Decl) 189 #define STMT(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED) 191 #define TYPE(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Type)
|
| /freebsd-12.1/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-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | ASTTypeTraits.cpp | 33 #define DECL(DERIVED, BASE) { NKI_##BASE, #DERIVED "Decl" }, argument 36 #define STMT(DERIVED, BASE) { NKI_##BASE, #DERIVED }, argument 39 #define TYPE(DERIVED, BASE) { NKI_##BASE, #DERIVED "Type" }, argument 80 #define DECL(DERIVED, BASE) \ in getFromNode() argument
|
| H A D | DeclBase.cpp | 59 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0; argument 126 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED; in getDeclKindName() argument 157 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED; in getDeclKindName() argument 173 #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s; in PrintStats() argument 195 #define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break; in add() argument 871 #define DECL(NAME, BASE) in castFromDeclContext() argument 878 #define DECL(NAME, BASE) in castFromDeclContext() argument 890 #define DECL(NAME, BASE) in castToDeclContext() argument 897 #define DECL(NAME, BASE) in castToDeclContext() argument 1023 #define DECL(NAME, BASE) in classof() argument [all …]
|
| /freebsd-12.1/contrib/gcc/config/i386/ |
| H A D | sysv4.h | 118 #define CRT_GET_RFIB_DATA(BASE) \ argument 121 BASE = ebx_; \ 124 #define CRT_GET_RFIB_DATA(BASE) \ argument 132 : "=d"(BASE))
|
| H A D | linux.h | 166 #define CRT_GET_RFIB_DATA(BASE) \ argument 169 BASE = ebx_; \ 172 #define CRT_GET_RFIB_DATA(BASE) \ argument 180 : "=d"(BASE))
|
| H A D | sco5.h | 295 #define CRT_GET_RFIB_DATA(BASE) \ argument 298 BASE = ebx_; \ 301 #define CRT_GET_RFIB_DATA(BASE) \ argument 309 : "=d"(BASE))
|
| /freebsd-12.1/contrib/ntp/lib/isc/win32/ |
| H A D | libisc.dsp | 34 # PROP BASE Use_MFC 0 35 # PROP BASE Use_Debug_Libraries 0 36 # PROP BASE Output_Dir "Release" 38 # PROP BASE Target_Dir "" 49 # ADD BASE RSC /l 0x409 /d "NDEBUG" 52 # ADD BASE BSC32 /nologo 62 # PROP BASE Use_MFC 0 63 # PROP BASE Use_Debug_Libraries 1 64 # PROP BASE Output_Dir "Debug" 66 # PROP BASE Target_Dir "" [all …]
|
| /freebsd-12.1/usr.bin/newkey/ |
| H A D | generic.c | 80 # define BASE (1 << BASEBITS) in genkeys() macro 85 MINT *base = mp_itom((short)BASE); in genkeys() 94 r = seed[i] % BASE; in genkeys()
|
| /freebsd-12.1/gnu/usr.bin/cc/ |
| H A D | Makefile.ver | 3 BASEVER!= cat ${GCCDIR}/BASE-VER 7 version.o: version.c ${GCCDIR}/BASE-VER ${GCCDIR}/DATESTAMP ${GCCDIR}/DEV-PHASE
|
| /freebsd-12.1/contrib/unbound/contrib/ |
| H A D | unbound_cache.sh | 19 BASE="/opt/csw" 22 UC="$BASE/sbin/unbound-control"
|
| /freebsd-12.1/contrib/telnet/libtelnet/ |
| H A D | pk.c | 162 # define BASE (1 << BASEBITS) in genkeys() macro 167 MINT *base = mp_itom((short)BASE); in genkeys() 176 r = seed[i] % BASE; in genkeys()
|
| /freebsd-12.1/contrib/binutils/binutils/ |
| H A D | defparse.y | 34 %token SECTIONS EXPORTS IMPORTS VERSIONK BASE CONSTANT 168 opt_base: BASE '=' NUMBER { $$= $3;}
|