Searched refs:smap (Results 1 - 11 of 11) sorted by relevance

/freebsd-10.2-release/sys/boot/i386/libi386/
H A Dbiosmem.c41 static struct bios_smap smap; variable in typeref:struct:bios_smap
61 v86.es = VTOPSEG(&smap);
62 v86.edi = VTOPOFF(&smap);
67 if ((smap.type == SMAP_TYPE_MEMORY) && (smap.base == 0) &&
68 (smap.length >= (512 * 1024)))
69 bios_basemem = smap.length;
71 if ((smap.type == SMAP_TYPE_MEMORY) && (smap.base == 0x100000)) {
72 bios_extmem = smap
[all...]
H A Dbiossmap.c45 struct bios_smap smap; member in struct:smap_buf
79 v86.ecx < sizeof(buf.smap) || v86.ecx > SMAP_BUFSIZE)
85 next->smap = buf.smap;
100 smapbase[n++] = cur->smap;
136 COMMAND_SET(smap, "smap", "show BIOS SMAP", command_smap);
/freebsd-10.2-release/sys/boot/userboot/userboot/
H A Dbiossmap.c47 struct bios_smap smap[3], *sm; local
51 sm = &smap[0];
73 file_addmetadata(kfp, MODINFOMD_SMAP, len, &smap[0]);
/freebsd-10.2-release/sys/dev/ata/chipsets/
H A Data-intel.c91 u_char smap[4]; member in struct:ata_intel_data
95 &((struct ata_intel_data *)((ctlr)->chipset_data))->smap[(ch)->unit * 2]
386 u_char *smap; local
406 smap = ATA_INTEL_SMAP(ctlr, ch);
413 smap[0] = (map & 0x01) ^ ch->unit;
414 smap[1] = 0;
417 smap[0] = (map & 0x01) ? 1 : 0;
418 smap[1] = (map & 0x01) ? 0 : 1;
421 smap[0] = (map & 0x01) ? 1 : 0;
422 smap[
482 u_char *smap; local
675 u_char *smap; local
707 u_char *smap; local
772 u_char *smap; local
804 u_char *smap; local
[all...]
/freebsd-10.2-release/sys/boot/i386/zfsboot/
H A Dzfsboot.c106 static struct bios_smap smap; variable in typeref:struct:bios_smap
238 v86.es = VTOPSEG(&smap);
239 v86.edi = VTOPOFF(&smap);
244 if ((smap.type == SMAP_TYPE_MEMORY) && (smap.base == 0) &&
245 (smap.length >= (512 * 1024)))
246 bios_basemem = smap.length;
248 if ((smap.type == SMAP_TYPE_MEMORY) && (smap.base == 0x100000)) {
249 bios_extmem = smap
[all...]
/freebsd-10.2-release/sys/x86/x86/
H A Dnexus.c680 struct bios_smap *smapbase, *smap, *smapend; local
701 for (smap = smapbase; smap < smapend; smap++) {
702 if (smap->type != SMAP_TYPE_MEMORY ||
703 smap->length == 0)
710 if (smap->base > ~0ul)
714 smap->base, smap->length);
/freebsd-10.2-release/sys/i386/i386/
H A Dmachdep.c2065 add_smap_entry(struct bios_smap *smap, vm_paddr_t *physmap, int *physmap_idxp) argument
2073 smap->type, smap->base, smap->length);
2075 if (smap->type != SMAP_TYPE_MEMORY)
2078 if (smap->length == 0)
2082 if (smap->base > 0xffffffff) {
2084 (u_int)(smap->length / 1024));
2095 if (smap->base < physmap[i + 1]) {
2096 if (smap
2486 struct bios_smap *smap, *smapbase, *smapend; local
3482 struct bios_smap_xattr smap; local
[all...]
/freebsd-10.2-release/sys/amd64/amd64/
H A Dmachdep.c1391 struct bios_smap *smap, *smapend; local
1399 * ie: an int32_t immediately precedes smap.
1404 for (smap = smapbase; smap < smapend; smap++) {
1407 smap->type, smap->base, smap->length);
1409 if (smap->type != SMAP_TYPE_MEMORY)
1412 if (!add_physmap_entry(smap
2067 struct bios_smap_xattr smap; local
[all...]
/freebsd-10.2-release/contrib/sendmail/src/
H A Dparseaddr.c1779 ** smap -- the map to use for the lookup.
1792 map_lookup(smap, key, argvect, pstat, e)
1793 STAB *smap;
1803 if (smap == NULL)
1806 map = &smap->s_map;
1815 smap->s_name, key);
1825 sm_dprintf("map_lookup(%s, ", smap->s_name);
1848 smap->s_name, key, errno);
1855 smap->s_name,
H A Dmap.c3517 MAP *smap = s->s_lmap; local
3519 if (tTd(38, 2) && smap != map)
3521 map->map_mname, smap->map_mname);
3522 smap->map_mflags &= ~(MF_OPEN|MF_WRITABLE);
3523 lmap = (SM_LDAP_STRUCT *) smap->map_db1;
7934 MAP *smap; local
7952 smap = s->s_socketmap;
7953 while (smap != NULL)
7957 if (tTd(38, 2) && smap != map)
7959 map->map_mname, smap
[all...]
/freebsd-10.2-release/sys/vm/
H A Dvm_map.c2805 vm_map_t smap; local
2809 smap = current->object.sub_map;
2810 vm_map_lock_read(smap);
2811 (void) vm_map_lookup_entry(smap, offset, &tentry);
2817 vm_map_unlock_read(smap);

Completed in 206 milliseconds