Searched refs:BASE (Results 1 - 25 of 50) sorted by relevance

12

/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dadler32.c11 #define BASE 65521UL /* largest prime smaller than 65536 */ macro
13 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
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 << 1
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTFwd.h18 #define DECL(DERIVED, BASE) class DERIVED##Decl;
21 #define STMT(DERIVED, BASE) class DERIVED;
24 #define TYPE(DERIVED, BASE) class DERIVED##Type;
H A DDeclVisitor.h40 #define DECL(DERIVED, BASE) \
50 #define DECL(DERIVED, BASE) \
51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); }
H A DASTTypeTraits.h78 #define DECL(DERIVED, BASE) NKI_##DERIVED##Decl,
81 #define STMT(DERIVED, BASE) NKI_##DERIVED,
84 #define TYPE(DERIVED, BASE) NKI_##DERIVED##Type,
128 #define DECL(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Decl)
130 #define STMT(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED)
132 #define TYPE(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Type)
H A DRecursiveASTVisitor.h333 #define ABSTRACT_TYPE(CLASS, BASE)
334 #define TYPE(CLASS, BASE) \
342 #define TYPE(CLASS, BASE) \
344 TRY_TO(WalkUpFrom##BASE(T)); \
355 #define ABSTRACT_TYPELOC(CLASS, BASE)
356 #define TYPELOC(CLASS, BASE) \
376 // Note that BASE includes trailing 'Type' which CLASS doesn't.
377 #define TYPE(CLASS, BASE) \
379 TRY_TO(WalkUpFrom##BASE##Loc(TL)); \
390 #define DECL(CLASS, BASE) \
[all...]
/freebsd-10.1-release/lib/libz/
H A Dadler32.c14 #define BASE 65521 /* largest prime smaller than 65536 */ macro
16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
[all...]
/freebsd-10.1-release/contrib/binutils/opcodes/
H A Dalpha-opc.c403 #define BASE AXP_OPCODE_BASE
476 { "halt", SPCD(0x00,0x0000), BASE, ARG_NONE },
477 { "draina", SPCD(0x00,0x0002), BASE, ARG_NONE },
478 { "bpt", SPCD(0x00,0x0080), BASE, ARG_NONE },
479 { "bugchk", SPCD(0x00,0x0081), BASE, ARG_NONE },
480 { "callsys", SPCD(0x00,0x0083), BASE, ARG_NONE },
481 { "chmk", SPCD(0x00,0x0083), BASE, ARG_NONE },
482 { "imb", SPCD(0x00,0x0086), BASE, ARG_NONE },
483 { "rduniq", SPCD(0x00,0x009e), BASE, ARG_NONE },
484 { "wruniq", SPCD(0x00,0x009f), BASE, ARG_NON
400 #define BASE macro
[all...]
/freebsd-10.1-release/release/ia64/
H A Dmkisoimages.sh42 BASE=$1; shift
56 cp -R $BASE/boot/defaults $MNT/boot
57 cp $BASE/boot/kernel/kernel $MNT/boot/kernel
58 if [ -s $BASE/boot/kernel/ispfw.ko ]; then
59 cp $BASE/boot/kernel/ispfw.ko $MNT/boot/kernel
61 cp $BASE/boot/device.hints $MNT/boot
62 cp $BASE/boot/loader.* $MNT/boot
63 if [ -s $BASE/boot/mfsroot.gz ]; then
64 cp $BASE/boot/mfsroot.gz $MNT/boot
66 cp $BASE/boo
[all...]
/freebsd-10.1-release/contrib/libstdc++/libmath/
H A DMakefile.am26 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
/freebsd-10.1-release/contrib/gcc/config/i386/
H A Dsysv4.h118 #define CRT_GET_RFIB_DATA(BASE) \
121 BASE = ebx_; \
124 #define CRT_GET_RFIB_DATA(BASE) \
132 : "=d"(BASE))
H A Dlinux.h166 #define CRT_GET_RFIB_DATA(BASE) \
169 BASE = ebx_; \
172 #define CRT_GET_RFIB_DATA(BASE) \
180 : "=d"(BASE))
H A Dsco5.h296 #define CRT_GET_RFIB_DATA(BASE) \
299 BASE = ebx_; \
302 #define CRT_GET_RFIB_DATA(BASE) \
310 : "=d"(BASE))
/freebsd-10.1-release/crypto/openssh/regress/
H A Dsftp-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-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DASTTypeTraits.cpp32 #define DECL(DERIVED, BASE) { NKI_##BASE, #DERIVED "Decl" },
35 #define STMT(DERIVED, BASE) { NKI_##BASE, #DERIVED },
38 #define TYPE(DERIVED, BASE) { NKI_##BASE, #DERIVED "Type" },
H A DDeclBase.cpp40 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0;
75 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED;
94 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED;
109 #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s;
115 #define DECL(DERIVED, BASE) \
131 #define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break;
614 #define DECL(NAME, BASE)
621 #define DECL(NAME, BASE)
633 #define DECL(NAME, BASE)
640 #define DECL(NAME, BASE)
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DTemplate.h398 #define DECL(DERIVED, BASE) \
403 #define OBJCCONTAINER(DERIVED, BASE)
404 #define FILESCOPEASM(DERIVED, BASE)
405 #define IMPORT(DERIVED, BASE)
406 #define LINKAGESPEC(DERIVED, BASE)
407 #define OBJCCOMPATIBLEALIAS(DERIVED, BASE)
408 #define OBJCMETHOD(DERIVED, BASE)
409 #define OBJCIVAR(DERIVED, BASE)
410 #define OBJCPROPERTY(DERIVED, BASE)
411 #define OBJCPROPERTYIMPL(DERIVED, BASE)
[all...]
/freebsd-10.1-release/usr.bin/newkey/
H A Dgeneric.c80 # define BASE (1 << BASEBITS) macro
85 MINT *base = mp_itom(BASE);
94 r = seed[i] % BASE;
/freebsd-10.1-release/contrib/binutils/binutils/
H A Ddeflex.l47 "BASE" { return BASE;}
H A Ddefparse.y34 %token SECTIONS EXPORTS IMPORTS VERSIONK BASE CONSTANT
168 opt_base: BASE '=' NUMBER { $$= $3;}
/freebsd-10.1-release/sys/dev/hatm/
H A Dif_hatmreg.h407 #define HE_REGO_TSRA(BASE,CID,NR) ((BASE) + ((CID) << 3) + (NR))
408 #define HE_REGO_TSRB(BASE,CID,NR) ((BASE) + ((CID) << 2) + (NR))
409 #define HE_REGO_TSRC(BASE,CID,NR) ((BASE) + ((CID) << 1) + (NR))
410 #define HE_REGO_TSRD(BASE,CID) ((BASE) + (CID))
484 #define HE_REGO_RSRA(BASE,CID,NR) ((BASE)
[all...]
/freebsd-10.1-release/sys/arm/xscale/pxa/
H A Dpxavar.h101 PXA_ACCESSOR(base, BASE, u_long)
/freebsd-10.1-release/contrib/gcclibs/libssp/
H A DMakefile.am12 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
/freebsd-10.1-release/lib/libc/locale/
H A Dnl_langinfo.c46 #define _REL(BASE) ((int)item-BASE)
/freebsd-10.1-release/contrib/telnet/libtelnet/
H A Dpk.c162 # define BASE (1 << BASEBITS) macro
167 MINT *base = mp_itom(BASE);
176 r = seed[i] % BASE;
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc-metadata.sql39 * "base-deleted" -- node represents a delete of a BASE node
141 the properties, relative to WORKING/BASE as appropriate. */
240 BASE nodes and on top of other WORKING nodes, due to nested tree structure
256 This table contains full node descriptions for nodes in either the BASE
258 both to BASE and WORKING trees, unless documented otherwise.
271 (0) "BASE" ---> NODES (op_depth == 0)
294 op_depth == 0 designates the initial checkout; the BASE tree.
309 BASE node, the location of the initial checkout.
323 In case 'op_depth' is equal to 0, this node is part of the 'BASE'
324 tree. The 'BASE' represent
[all...]

Completed in 144 milliseconds

12