Searched refs:base (Results 701 - 725 of 1511) sorted by relevance

<<21222324252627282930>>

/freebsd-9.3-release/sys/i386/include/pc/
H A Dbios.h60 u_int32_t pmentrybase; /* segment base */
219 u_int64_t base; member in struct:bios_smap
277 u_int base; member in struct:segment_info
320 u_int32_t base; /* base of service */ member in struct:bios32_SDentry
322 u_int32_t entry; /* entrypoint offset from base */
/freebsd-9.3-release/sys/mips/atheros/
H A Dar71xx_ehci.c63 ehci_softc_t base; /* storage for EHCI code */ member in struct:ar71xx_ehci_softc
85 ehci_softc_t *sc = &isc->base;
195 ehci_softc_t *sc = &isc->base;
/freebsd-9.3-release/contrib/gcc/
H A Dggc-page.c559 page_entry ***base;
563 base = &G.lookup[0];
575 base = &table->table[0];
582 return base[L1] && base[L1][L2];
591 page_entry ***base;
595 base = &G.lookup[0];
601 base = &table->table[0];
608 return base[L1][L2];
616 page_entry ***base;
556 page_entry ***base; local
588 page_entry ***base; local
613 page_entry ***base; local
2035 size_t base[NUM_ORDERS]; member in struct:ggc_pch_data
2076 ggc_pch_this_base(struct ggc_pch_data *d, void *base) argument
[all...]
H A Dtree-object-size.c93 tree base, off, t; local
101 base = compute_object_offset (TREE_OPERAND (expr, 0), var);
102 if (base == error_mark_node)
103 return base;
119 base = compute_object_offset (TREE_OPERAND (expr, 0), var);
120 if (base == error_mark_node)
121 return base;
127 base = compute_object_offset (TREE_OPERAND (expr, 0), var);
128 if (base == error_mark_node)
129 return base;
[all...]
/freebsd-9.3-release/sys/dev/drm2/radeon/
H A Drv515.c349 /* update crtc base addresses */
887 struct drm_display_mode *mode = &crtc->base.mode;
892 if (!crtc->base.enabled) {
944 a.full = dfixed_const(crtc->base.mode.crtc_htotal);
952 a.full = dfixed_const(crtc->base.mode.crtc_htotal);
953 b.full = dfixed_const(crtc->base.mode.crtc_hdisplay);
1007 wm->priority_mark_max.full = dfixed_const(crtc->base.mode.crtc_hdisplay);
1014 if (dfixed_trunc(estimated_width) > crtc->base.mode.crtc_hdisplay) {
1036 if (rdev->mode_info.crtcs[0]->base.enabled)
1037 mode0 = &rdev->mode_info.crtcs[0]->base
[all...]
H A Dradeon_cp.c757 radeon_write_agp_base(dev_priv, dev->agp->base);
765 - dev->agp->base
788 - dev->agp->base + dev_priv->gart_vm_start);
1102 /* set PCI GART page-table base address
1379 u32 base = 0; local
1389 base = dev->agp->base;
1391 if ((base + dev_priv->gart_size - 1) >= dev_priv->fb_location &&
1392 base < (dev_priv->fb_location + dev_priv->fb_size - 1)) {
1393 DRM_INFO("Can't use AGP base
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_dir_leaf.c212 int base, size = 0, i; local
227 base = sizeof(xfs_dir_sf_hdr_t);
236 base += size;
244 if ((base + size) != dp->i_d.di_size) {
245 memmove(&((char *)sf)[base], &((char *)sf)[base+size],
246 dp->i_d.di_size - (base+size));
789 INT_SET(hdr->freemap[0].base, ARCH_CONVERT, sizeof(xfs_dir_leaf_hdr_t));
790 INT_SET(hdr->freemap[0].size, ARCH_CONVERT, INT_GET(hdr->firstused, ARCH_CONVERT) - INT_GET(hdr->freemap[0].base, ARCH_CONVERT));
884 if (INT_GET(map->base, ARCH_CONVER
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dnsec.c118 memmove(buffer, r.base, r.length);
119 r.base = buffer;
124 bm = r.base + r.length + 512;
125 nsec_bits = r.base + r.length;
167 r.length = (unsigned int)(nsec_bits - r.base);
H A Dopensslgost_link.c89 if (!EVP_DigestUpdate(evp_md_ctx, data->base, data->length))
108 if (!EVP_SignFinal(evp_md_ctx, r.base, &siglen, pkey))
123 status = EVP_VerifyFinal(evp_md_ctx, sig->base, sig->length, pkey);
256 memmove(r.base, der + 37, 64);
276 memmove(der + 37, r.base, 64);
/freebsd-9.3-release/contrib/bind9/lib/dns/rdata/generic/
H A Dkeydata_65533.c144 sprintf(buf, "%u", sr.base[0]);
150 algorithm = sr.base[0];
209 return (mem_tobuffer(target, sr.base, sr.length));
221 return (mem_tobuffer(target, sr.base, sr.length));
324 keydata->data = mem_maybedup(mctx, sr.base, keydata->datalen);
/freebsd-9.3-release/contrib/expat/lib/
H A Dexpat.h335 const XML_Char *base,
349 The base argument is whatever was set by XML_SetBase. The
356 const XML_Char *base,
361 /* This is called for a declaration of notation. The base argument is
368 const XML_Char *base,
409 The base argument is the system identifier that should be used as
410 the base for resolving systemId if systemId was relative; this is
435 const XML_Char *base,
714 /* Sets the base to be used for resolving relative URIs in system
717 base argumen
[all...]
/freebsd-9.3-release/contrib/groff/src/roff/groff/
H A Dpipeline.c117 char *base; local
132 base = malloc((size_t)(p2 - p1));
133 strncpy(base, p1, p2 - p1);
134 *(base + (p2 - p1)) = '\0';
136 return(base);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DOnDiskHashTable.h254 const unsigned char* base,
257 Buckets(buckets), Base(base), InfoObj(InfoObj) {
469 const unsigned char* const base,
472 assert(buckets > base);
479 base, InfoObj);
252 OnDiskChainedHashTable(unsigned numBuckets, unsigned numEntries, const unsigned char* buckets, const unsigned char* base, const Info &InfoObj = Info()) argument
468 Create(const unsigned char* buckets, const unsigned char* const base, const Info &InfoObj = Info()) argument
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp181 Expr *base = inner->IgnoreParenImpCasts(); local
182 while (isa<MemberExpr>(base))
183 base = cast<MemberExpr>(base)->getBase()->IgnoreParenImpCasts();
184 if (isa<ObjCIvarRefExpr>(base) &&
/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A Dread_entry.c238 int base = 0; local
308 base += (strlen(ptr->Strings[i + STRCOUNT]) + 1);
322 base, _nc_visbuf(ptr->ext_str_table + base)));
326 ext_str_limit, ptr->ext_str_table + base);
/freebsd-9.3-release/lib/libc/nls/
H A Dmsgcat.c116 char *base, *cptr, *cptr1, *lang, *nlspath, *pathP, *pcode; local
183 if ((base = cptr = strdup(nlspath)) == NULL) {
229 free(base);
243 free(base);
253 free(base);
/freebsd-9.3-release/sys/compat/ndis/
H A Dsubr_pe.c231 * Return the base address that this image was linked for.
362 * Apply the base relocations to this image. The relocation table
375 vm_offset_t base; local
382 base = pe_imagebase(imgbase);
385 delta = (uint32_t)(txt) - base - sect.ish_vaddr;
403 (*lloc - base));
419 (*qloc - base));
/freebsd-9.3-release/sys/dev/agp/
H A Dagp_nvidia.c391 quad_t base, mask, sys; local
398 base = rdmsr(IORR_BASE0 + 2 * iorr_addr);
401 if ((base & 0xfffff000ULL) == (addr & 0xfffff000))
414 base = (addr & ~0xfff) | 0x18;
416 wrmsr(IORR_BASE0 + 2 * iorr_addr, base);
/freebsd-9.3-release/sys/dev/drm/
H A Dradeon_cp.c711 radeon_write_agp_base(dev_priv, dev->agp->base);
719 - dev->agp->base
741 - dev->agp->base + dev_priv->gart_vm_start);
1053 /* set PCI GART page-table base address
1333 u32 base = 0; local
1343 base = dev->agp->base;
1345 if ((base + dev_priv->gart_size - 1) >= dev_priv->fb_location &&
1346 base < (dev_priv->fb_location + dev_priv->fb_size - 1)) {
1347 DRM_INFO("Can't use AGP base
[all...]
/freebsd-9.3-release/sys/dev/eisa/
H A Deisaconf.c209 int base, i, id_size; local
213 base = 0x0c80 + (slot * 0x1000);
216 probe_id |= inb(base + i) << ((id_size - i - 1) * CHAR_BIT);
479 eisa_add_resvaddr(struct eisa_device *e_dev, struct resvlist *head, u_long base, argument
489 reservation->addr = base;
/freebsd-9.3-release/sys/i386/pci/
H A Dpci_cfgreg.c524 pcie_cfgregopen(uint64_t base, uint8_t minbus, uint8_t maxbus) argument
542 if (base >= 0x100000000) {
545 "PCI: Memory Mapped PCI configuration area base 0x%jx too high\n",
546 (uintmax_t)base);
552 printf("PCIe: Memory Mapped configuration base @ 0x%jx\n",
553 (uintmax_t)base);
585 pcie_base = base;
/freebsd-9.3-release/usr.bin/yacc/
H A Dlalr.c657 unsigned *base; local
662 base = F + i * tokensetsize;
663 fp3 = base + tokensetsize;
676 fp1 = base;
694 fp1 = base;
/freebsd-9.3-release/cddl/contrib/opensolaris/common/ctf/
H A Dctf_open.c363 * Only insert a new integer base type definition if
511 ctf_dprintf("%u base type names hashed\n",
549 void *buf, *base; local
641 if ((base = ctf_data_alloc(size + hdrsz)) == MAP_FAILED)
644 bcopy(ctfsect->cts_data, base, hdrsz);
645 ((ctf_preamble_t *)base)->ctp_flags &= ~CTF_F_COMPRESS;
646 buf = (uchar_t *)base + hdrsz;
654 ctf_data_free(base, size + hdrsz);
661 ctf_data_free(base, size + hdrsz);
665 ctf_data_protect(base, siz
[all...]
/freebsd-9.3-release/contrib/dtc/
H A Dflattree.c573 char *base, *limit, *ptr; member in struct:inbuf
576 static void inbuf_init(struct inbuf *inb, void *base, void *limit) argument
578 inb->base = base;
580 inb->ptr = inb->base;
597 assert(((inb->ptr - inb->base) % sizeof(val)) == 0);
606 int off = inb->ptr - inb->base;
608 inb->ptr = inb->base + ALIGN(off, align);
655 p = inb->base + offset;
657 if (p >= inb->limit || p < inb->base)
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Damd64-tdep.c28 #include "frame-base.h"
280 /* ??? A class with a base class certainly isn't POD, but does this
671 CORE_ADDR base;
694 cache->base = 0;
800 reconstruct the base address for the stack frame by looking
805 cache->base = extract_unsigned_integer (buf, 8) + cache->sp_offset;
810 cache->base = extract_unsigned_integer (buf, 8);
813 /* Now that we have the base address for the stack frame we can
815 cache->saved_sp = cache->base + 16;
818 frame we find it at the same offset from the reconstructed base
668 CORE_ADDR base; member in struct:amd64_frame_cache
[all...]

Completed in 162 milliseconds

<<21222324252627282930>>