Home
last modified time | relevance | path

Searched refs:BASE (Results 1 – 25 of 99) sorted by relevance

1234

/freebsd-11-stable/contrib/binutils/opcodes/
HDalpha-opc.c400 #define BASE AXP_OPCODE_BASE macro
472 { "halt", SPCD(0x00,0x0000), BASE, ARG_NONE },
473 { "draina", SPCD(0x00,0x0002), BASE, ARG_NONE },
474 { "bpt", SPCD(0x00,0x0080), BASE, ARG_NONE },
475 { "bugchk", SPCD(0x00,0x0081), BASE, ARG_NONE },
476 { "callsys", SPCD(0x00,0x0083), BASE, ARG_NONE },
477 { "chmk", SPCD(0x00,0x0083), BASE, ARG_NONE },
478 { "imb", SPCD(0x00,0x0086), BASE, ARG_NONE },
479 { "rduniq", SPCD(0x00,0x009e), BASE, ARG_NONE },
480 { "wruniq", SPCD(0x00,0x009f), BASE, ARG_NONE },
[all …]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
HDadler32.c11 #define BASE 65521UL /* largest prime smaller than 65536 */ macro
25 if (a >= (BASE << 16)) a -= (BASE << 16); \
26 if (a >= (BASE << 15)) a -= (BASE << 15); \
27 if (a >= (BASE << 14)) a -= (BASE << 14); \
28 if (a >= (BASE << 13)) a -= (BASE << 13); \
29 if (a >= (BASE << 12)) a -= (BASE << 12); \
30 if (a >= (BASE << 11)) a -= (BASE << 11); \
31 if (a >= (BASE << 10)) a -= (BASE << 10); \
32 if (a >= (BASE << 9)) a -= (BASE << 9); \
33 if (a >= (BASE << 8)) a -= (BASE << 8); \
[all …]
/freebsd-11-stable/sys/contrib/zlib/
HDadler32.c12 #define BASE 65521U /* largest prime smaller than 65536 */ macro
36 if (a >= BASE) a -= BASE; \
54 if (a >= BASE) a -= BASE; \
57 # define MOD(a) a %= BASE
58 # define MOD28(a) a %= BASE
59 # define MOD63(a) a %= BASE
78 if (adler >= BASE)
79 adler -= BASE;
81 if (sum2 >= BASE)
82 sum2 -= BASE;
[all …]
/freebsd-11-stable/contrib/libxo/xohtml/
HDxohtml.sh.in12 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-11-stable/sys/dev/mii/
HDmiidevs132 model yyAMD 79C972_10T 0x0001 Am79C972 internal 10BASE-T interface
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
160 model BROADCOM BCM5424 0x000a BCM5424/BCM5234 1000BASE-T media interface
161 model BROADCOM BCM5464 0x000b BCM5464 1000BASE-T media interface
162 model BROADCOM BCM5461 0x000c BCM5461 1000BASE-T media interface
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
HDTemplate.h460 #define DECL(DERIVED, BASE) \ argument
465 #define OBJCCONTAINER(DERIVED, BASE) argument
466 #define FILESCOPEASM(DERIVED, BASE) argument
467 #define IMPORT(DERIVED, BASE) argument
468 #define EXPORT(DERIVED, BASE) argument
469 #define LINKAGESPEC(DERIVED, BASE) argument
470 #define OBJCCOMPATIBLEALIAS(DERIVED, BASE) argument
471 #define OBJCMETHOD(DERIVED, BASE) argument
472 #define OBJCTYPEPARAM(DERIVED, BASE) argument
473 #define OBJCIVAR(DERIVED, BASE) argument
[all …]
/freebsd-11-stable/sys/dev/hatm/
HDif_hatmreg.h407 #define HE_REGO_TSRA(BASE,CID,NR) ((BASE) + ((CID) << 3) + (NR)) argument
408 #define HE_REGO_TSRB(BASE,CID,NR) ((BASE) + ((CID) << 2) + (NR)) argument
409 #define HE_REGO_TSRC(BASE,CID,NR) ((BASE) + ((CID) << 1) + (NR)) argument
410 #define HE_REGO_TSRD(BASE,CID) ((BASE) + (CID)) argument
484 #define HE_REGO_RSRA(BASE,CID,NR) ((BASE) + ((CID) << 3) + (NR)) argument
485 #define HE_REGO_RSRB(BASE,CID,NR) ((BASE) + ((CID) << 1) + (NR)) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDExprOpenMP.h45 enum { BASE, LOWER_BOUND, LENGTH, END_EXPR }; enumerator
69 SubExprs[BASE] = Base; in OMPArraySectionExpr()
81 Expr *getBase() { return cast<Expr>(SubExprs[BASE]); } in getBase()
82 const Expr *getBase() const { return cast<Expr>(SubExprs[BASE]); } in getBase()
84 void setBase(Expr *E) { SubExprs[BASE] = E; } in setBase()
123 return child_range(&SubExprs[BASE], &SubExprs[END_EXPR]); in children()
127 return const_child_range(&SubExprs[BASE], &SubExprs[END_EXPR]); in children()
HDDeclVisitor.h39 #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); }
HDASTFwd.h20 #define DECL(DERIVED, BASE) class DERIVED##Decl; argument
23 #define STMT(DERIVED, BASE) class DERIVED; argument
26 #define TYPE(DERIVED, BASE) class DERIVED##Type; argument
HDASTTypeTraits.h144 #define DECL(DERIVED, BASE) NKI_##DERIVED##Decl, argument
147 #define STMT(DERIVED, BASE) NKI_##DERIVED, argument
150 #define TYPE(DERIVED, BASE) NKI_##DERIVED##Type, argument
203 #define DECL(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Decl)
205 #define STMT(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED)
207 #define TYPE(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Type)
/freebsd-11-stable/contrib/apr/
HDlibapr.dsp36 # PROP BASE Use_MFC 0
37 # PROP BASE Use_Debug_Libraries 0
38 # PROP BASE Output_Dir "Release"
39 # PROP BASE Intermediate_Dir "Release"
40 # PROP BASE Target_Dir ""
47 # ADD BASE CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /FD /c
49 # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL"
51 # ADD BASE RSC /l 0x409 /d "NDEBUG"
54 # ADD BASE BSC32 /nologo
57 # ADD BASE LINK32 kernel32.lib advapi32.lib ws2_32.lib mswsock.lib ole32.lib shell32.lib rpcrt4.lib…
[all …]
HDapr.dsp35 # PROP BASE Use_MFC 0
36 # PROP BASE Use_Debug_Libraries 0
37 # PROP BASE Output_Dir "LibR"
38 # PROP BASE Intermediate_Dir "LibR"
39 # PROP BASE Target_Dir ""
45 # ADD BASE CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /FD /c
47 # ADD BASE RSC /l 0x409 /d "NDEBUG"
50 # ADD BASE BSC32 /nologo
53 # ADD BASE LIB32 /nologo
58 # PROP BASE Use_MFC 0
[all …]
/freebsd-11-stable/crypto/openssh/regress/
HDsftp-glob.sh39 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-11-stable/contrib/llvm-project/clang/lib/AST/
HDASTTypeTraits.cpp34 #define DECL(DERIVED, BASE) { NKI_##BASE, #DERIVED "Decl" }, argument
37 #define STMT(DERIVED, BASE) { NKI_##BASE, #DERIVED }, argument
40 #define TYPE(DERIVED, BASE) { NKI_##BASE, #DERIVED "Type" }, argument
84 #define DECL(DERIVED, BASE) \ in getFromNode() argument
HDDeclBase.cpp59 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0; argument
67 #define DECL(DERIVED, BASE) \ 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
179 #define DECL(DERIVED, BASE) \ in PrintStats() argument
195 #define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break; in add() argument
866 #define DECL(NAME, BASE) in castFromDeclContext() argument
873 #define DECL(NAME, BASE) in castFromDeclContext() argument
885 #define DECL(NAME, BASE) in castToDeclContext() argument
[all …]
/freebsd-11-stable/contrib/gcc/config/i386/
HDsysv4.h118 #define CRT_GET_RFIB_DATA(BASE) \ argument
121 BASE = ebx_; \
124 #define CRT_GET_RFIB_DATA(BASE) \ argument
132 : "=d"(BASE))
HDlinux.h166 #define CRT_GET_RFIB_DATA(BASE) \ argument
169 BASE = ebx_; \
172 #define CRT_GET_RFIB_DATA(BASE) \ argument
180 : "=d"(BASE))
HDsco5.h295 #define CRT_GET_RFIB_DATA(BASE) \ argument
298 BASE = ebx_; \
301 #define CRT_GET_RFIB_DATA(BASE) \ argument
309 : "=d"(BASE))
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
HDlibisc.dsp34 # PROP BASE Use_MFC 0
35 # PROP BASE Use_Debug_Libraries 0
36 # PROP BASE Output_Dir "Release"
37 # PROP BASE Intermediate_Dir "Release"
38 # PROP BASE Target_Dir ""
45 # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "BIND9" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /…
47 # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
49 # ADD BASE RSC /l 0x409 /d "NDEBUG"
52 # ADD BASE BSC32 /nologo
55 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
[all …]
/freebsd-11-stable/usr.bin/newkey/
HDgeneric.c80 # define BASE (1 << BASEBITS) in genkeys() macro
85 MINT *base = mp_itom((short)BASE); in genkeys()
94 r = seed[i] % BASE; in genkeys()
/freebsd-11-stable/gnu/usr.bin/cc/
HDMakefile.ver3 BASEVER!= cat ${GCCDIR}/BASE-VER
7 version.o: version.c ${GCCDIR}/BASE-VER ${GCCDIR}/DATESTAMP ${GCCDIR}/DEV-PHASE
/freebsd-11-stable/contrib/unbound/contrib/
HDunbound_cache.sh19 BASE="/opt/csw"
22 UC="$BASE/sbin/unbound-control"
/freebsd-11-stable/contrib/telnet/libtelnet/
HDpk.c162 # define BASE (1 << BASEBITS) in genkeys() macro
167 MINT *base = mp_itom((short)BASE); in genkeys()
176 r = seed[i] % BASE; in genkeys()
/freebsd-11-stable/contrib/binutils/binutils/
HDdefparse.y34 %token SECTIONS EXPORTS IMPORTS VERSIONK BASE CONSTANT
168 opt_base: BASE '=' NUMBER { $$= $3;}

1234