Searched refs:base (Results 951 - 975 of 1511) sorted by relevance

<<31323334353637383940>>

/freebsd-9.3-release/sys/mips/include/
H A Dcpuregs.h434 #define MIPS3_CONFIG_C_DEFBASE 0x1000 /* default base 2^12 */
438 #define MIPS3_CONFIG_C_4100BASE 0x0400 /* base is 2^10 if CS=1 */
439 #define MIPS3_CONFIG_CACHE_SIZE(config, mask, base, shift) \
440 ((base) << (((config) & (mask)) >> (shift)))
510 #define MIPS4_CONFIG_CACHE_SIZE(config, mask, base, shift) \
511 ((base) << (((config) & (mask)) >> (shift)))
/freebsd-9.3-release/sys/powerpc/ofw/
H A Dofw_machdep.c270 vm_offset_t base; local
319 base = *dmem;
324 ofmem[lmsz].mr_start = base;
326 ofavail[lasz].mr_start = base;
/freebsd-9.3-release/sys/powerpc/ps3/
H A Dehci_ps3.c68 ehci_softc_t base; member in struct:ps3_ehci_softc
/freebsd-9.3-release/usr.bin/csup/
H A Drcstokenizer.h204 YY_BUFFER_STATE rcs_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
/freebsd-9.3-release/usr.sbin/pciconf/
H A Dpciconf.c267 uint64_t base; local
293 base = bar.pbi_base & PCIM_BAR_IO_BASE;
312 base = bar.pbi_base & ~((uint64_t)0xf);
314 printf(" bar [%02x] = type %s, range %2d, base %#jx, ",
315 PCIR_BAR(i), type, range, (uintmax_t)base);
462 {PCIC_BASEPERIPH, -1, "base peripheral"},
/freebsd-9.3-release/usr.sbin/ppp/
H A Dnat_cmd.c449 long base, count; local
459 base = strtol(arg->argv[arg->argn], &end, 10);
460 if (*end != '\0' || base < 0)
467 LibAliasSetFWBase(la, base, count);
H A Dphysical.h97 char *base; member in struct:physical::__anon11042
H A Dtcp.c201 p->name.base = p->name.full;
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dmessage.c51 hexdump(const char *msg, const char *msg2, void *base, size_t len) { argument
55 p = base;
58 printf("*** %s [%s] (%u bytes @ %p)\n", msg, msg2, len, base);
433 m->query.base = NULL;
436 m->saved.base = NULL;
632 if (msg->query.base != NULL) {
634 isc_mem_put(msg->mctx, msg->query.base,
636 msg->query.base = NULL;
640 if (msg->saved.base != NULL) {
642 isc_mem_put(msg->mctx, msg->saved.base,
[all...]
/freebsd-9.3-release/contrib/bind9/bin/dnssec/
H A Ddnssectool.c134 r.base[r.length] = 0;
317 strtotime(const char *str, isc_int64_t now, isc_int64_t base) { argument
348 base = val;
351 base = now;
356 return ((isc_stdtime_t) base);
360 val = base + offset;
364 val = base - offset;
379 DE_CONST(str, r.base);
1269 DE_CONST(d1 - first->next_length, sr.base);
1276 DE_CONST(d1, sr.base);
[all...]
/freebsd-9.3-release/sys/amd64/amd64/
H A Ddb_disasm.c937 const char * base; member in struct:i_addr
1038 addrp->base = 0;
1040 addrp->base = "%eip";
1042 addrp->base = "%rip";
1045 addrp->base = db_reg[1][size][rm];
1052 addrp->base = db_reg[1][size][rm];
1058 addrp->base = db_reg[1][size][rm];
1080 if (addrp->disp != 0 || (addrp->base == 0 && addrp->index == 0))
1082 if (addrp->base != 0 || addrp->index != 0) {
1084 if (addrp->base)
[all...]
/freebsd-9.3-release/sys/mips/mips/
H A Dexception.S104 * 'segbase' points to the base of the segment table for user processes.
175 PTR_LA k0, _C_LABEL(machExceptionTable) # get base of the jump table
219 #define SAVE_REG(reg, offs, base) \
220 REG_S reg, CALLFRAME_SIZ + (SZREG * offs) (base)
309 #define RESTORE_REG(reg, offs, base) \
310 REG_L reg, CALLFRAME_SIZ + (SZREG * offs) (base)
396 #define SAVE_U_PCB_REG(reg, offs, base) \
397 REG_S reg, U_PCB_REGS + (SZREG * offs) (base)
399 #define RESTORE_U_PCB_REG(reg, offs, base) \
400 REG_L reg, U_PCB_REGS + (SZREG * offs) (base)
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/rdata/generic/
H A Dmx_15.c137 RETERR(mem_tobuffer(target, sregion.base, 2));
154 RETERR(mem_tobuffer(target, region.base, 2));
/freebsd-9.3-release/contrib/bind9/lib/dns/rdata/in_1/
H A Dpx_26.c137 RETERR(mem_tobuffer(target, sregion.base, 2));
166 RETERR(mem_tobuffer(target, region.base, 2));
H A Dsrv_33.c162 RETERR(mem_tobuffer(target, sr.base, 6));
185 RETERR(mem_tobuffer(target, sr.base, 6));
/freebsd-9.3-release/contrib/libpcap/
H A Dscanner.l438 int base = 10;
444 base = 16;
447 base = 8;
452 n = n * base + xdtoi(*s++);
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.c1008 uint8_t index, base; local
1064 base = baseFromSIB(insn->sib) | (bFromREX(insn->rexPrefix) << 3);
1066 switch (base) {
1076 insn->sibBase = (SIBBase)(sibBaseBase + base);
1080 insn->sibBase = (SIBBase)(sibBaseBase + base);
1088 insn->sibBase = (SIBBase)(sibBaseBase + base);
1279 #define GENERIC_FIXUP_FUNC(name, base, prefix) \
1291 return base + index; \
/freebsd-9.3-release/contrib/pf/libevent/
H A Dkqueue.c152 kq_recalc(struct event_base *base, void *arg, int max) argument
209 kq_dispatch(struct event_base *base, void *arg, struct timeval *tv) argument
H A Dpoll.c111 poll_recalc(struct event_base *base, void *arg, int max) argument
151 poll_dispatch(struct event_base *base, void *arg, struct timeval *tv) argument
H A Dselect.c144 select_recalc(struct event_base *base, void *arg, int max) argument
154 select_dispatch(struct event_base *base, void *arg, struct timeval *tv) argument
/freebsd-9.3-release/contrib/wpa/src/crypto/
H A Dcrypto_gnutls.c160 int crypto_mod_exp(const u8 *base, size_t base_len, argument
169 if (gcry_mpi_scan(&bn_base, GCRYMPI_FMT_USG, base, base_len, NULL) !=
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-tim-defs.h137 uint64_t base : 31; /**< Pointer[35:5] to bucket[0] */ member in struct:cvmx_tim_mem_debug1::cvmx_tim_mem_debug1_s
141 uint64_t base : 31;
/freebsd-9.3-release/sys/dev/cp/
H A Dcpddk.h82 unsigned char *regs; /* base addr of channel registers */
221 unsigned char *base; /* base address of adapter registers */ member in struct:_cp_board_t
267 unsigned short cp_init (cp_board_t *b, int num, unsigned char *base);
/freebsd-9.3-release/sys/dev/cxgb/ulp/iw_cxgb/
H A Diw_cxgb_hal.h198 gen_pool_create(daddr_t base, u_int chunk_shift, u_int len) argument
213 gp->gen_base = base;
/freebsd-9.3-release/sys/dev/drm2/
H A Ddrm_agpsupport.c298 entry->bound = dev->agp->base + (page << PAGE_SHIFT);
382 head->base = head->info.ai_aperture_base;

Completed in 370 milliseconds

<<31323334353637383940>>