Searched defs:BASE (Results 1 - 10 of 10) sorted by relevance
/osnet-11/usr/src/lib/libmp/common/ |
H A D | mult.c | 83 #define BASE (1 << BASEBITS) macro 84 #define LOWBITS (BASE - 1)
|
/osnet-11/usr/src/grub/grub2/grub-core/lib/ |
H A D | adler32.c | 28 #define BASE 65521UL macro 49 if (adler >= BASE) 50 adler -= BASE; 52 if (sum2 >= BASE) 53 sum2 -= BASE; 64 if (adler >= BASE) 65 adler -= BASE; 66 sum2 %= BASE; 80 adler %= BASE; 81 sum2 %= BASE; [all...] |
/osnet-11/usr/src/lib/gss_mechs/mech_dh/dh_common/ |
H A D | generic_key.c | 47 #define BASE (1 << BASEBITS) macro 113 MINT *base = mp_itom(BASE); /* We shift by BASEBITS */
|
/osnet-11/usr/src/lib/libnsl/key/ |
H A D | gen_dhkeys.c | 120 #define BASE (1 << BASEBITS) macro 125 MINT *base = mp_itom(BASE/2); /* BASE won't fit in a short */ 132 /* multiply base by 2 to get BASE */ 139 r = seed[i] % ((unsigned short)BASE);
|
/osnet-11/usr/src/lib/efcode/include/fcode/ |
H A D | engine.h | 245 #define BASE (env->base) macro
|
/osnet-11/usr/src/grub/grub-0.97/netboot/ |
H A D | 3c595.h | 67 #define BASE (eth_nic_base) macro 117 #define VX_COMMAND 0x0e /* Write. BASE+0x0e is always a 119 #define VX_STATUS 0x0e /* Read. BASE+0x0e is always status 121 #define VX_WINDOW 0x0f /* Read. BASE+0x0f is always window 296 #define VX_BUSY_WAIT while (inw(BASE + VX_STATUS) & S_COMMAND_IN_PROGRESS) 416 #define GO_WINDOW(x) outw(WINDOW_SELECT|(x),BASE+VX_COMMAND)
|
H A D | sundance.c | 267 /* FIXME: Move BASE to the private structure */ 268 static u32 BASE; variable 324 outw(inw(BASE + MACCtrl0) | EnbFullDuplex, 325 BASE + MACCtrl0); 337 outw(inw(BASE + MACCtrl0) | duplex ? 0x20 : 0, 338 BASE + MACCtrl0); 394 outl(virt_to_le32desc(&rx_ring[0]), BASE + RxListPtr); 403 outw(addr16, BASE + StationAddr); 405 outw(addr16, BASE + StationAddr + 2); 407 outw(addr16, BASE [all...] |
H A D | tlan.c | 255 u32 BASE; variable 344 data = inl(BASE + TLAN_HOST_CMD); 346 outl(data, BASE + TLAN_HOST_CMD); 352 data = inl(BASE + TLAN_HOST_CMD); 354 outl(data, BASE + TLAN_HOST_CMD); 358 TLan_DioWrite32(BASE, (u16) i, 0); 365 TLan_DioWrite16(BASE, TLAN_NET_CONFIG, (u16) data); 369 outl(TLAN_HC_LD_TMR | 0x3f, BASE + TLAN_HOST_CMD); 370 outl(TLAN_HC_LD_THR | 0x0, BASE + TLAN_HOST_CMD); 374 outw(TLAN_NET_SIO, BASE [all...] |
H A D | forcedeth.c | 74 unsigned long BASE; variable 351 u8 *base = (u8 *) BASE; 395 u8 *base = (u8 *) BASE; 453 u8 *base = (u8 *) BASE; 469 u8 *base = (u8 *) BASE; 483 u8 *base = (u8 *) BASE; 492 u8 *base = (u8 *) BASE; 507 u8 *base = (u8 *) BASE; 603 u8 *base = (u8 *) BASE; 638 u8 *base = (u8 *) BASE; [all...] |
/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 4578 #define BASE 65521L /* largest prime smaller than 65536 */ macro 4580 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 4610 s1 %= BASE; 4611 s2 %= BASE;
|
Completed in 61 milliseconds