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

/freebsd-10.3-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.3-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.3-release/sys/dev/ata/chipsets/
H A Data-intel.c90 u_char smap[4]; member in struct:ata_intel_data
94 &((struct ata_intel_data *)((ctlr)->chipset_data))->smap[(ch)->unit * 2]
313 u_char *smap; local
333 smap = ATA_INTEL_SMAP(ctlr, ch);
340 smap[0] = (map & 0x01) ^ ch->unit;
341 smap[1] = 0;
344 smap[0] = (map & 0x01) ? 1 : 0;
345 smap[1] = (map & 0x01) ? 0 : 1;
348 smap[0] = (map & 0x01) ? 1 : 0;
349 smap[
411 u_char *smap; local
604 u_char *smap; local
636 u_char *smap; local
701 u_char *smap; local
733 u_char *smap; local
[all...]
/freebsd-10.3-release/sys/boot/i386/zfsboot/
H A Dzfsboot.c102 static struct bios_smap smap; variable in typeref:struct:bios_smap
234 v86.es = VTOPSEG(&smap);
235 v86.edi = VTOPOFF(&smap);
240 if ((smap.type == SMAP_TYPE_MEMORY) && (smap.base == 0) &&
241 (smap.length >= (512 * 1024)))
242 bios_basemem = smap.length;
244 if ((smap.type == SMAP_TYPE_MEMORY) && (smap.base == 0x100000)) {
245 bios_extmem = smap
[all...]
/freebsd-10.3-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.3-release/sys/i386/i386/
H A Dmachdep.c2080 add_smap_entry(struct bios_smap *smap, vm_paddr_t *physmap, int *physmap_idxp) argument
2088 smap->type, smap->base, smap->length);
2090 if (smap->type != SMAP_TYPE_MEMORY)
2093 if (smap->length == 0)
2097 if (smap->base > 0xffffffff) {
2099 (u_int)(smap->length / 1024));
2110 if (smap->base < physmap[i + 1]) {
2111 if (smap
2501 struct bios_smap *smap, *smapbase, *smapend; local
3498 struct bios_smap_xattr smap; local
[all...]
/freebsd-10.3-release/sys/amd64/amd64/
H A Dmachdep.c1399 struct bios_smap *smap, *smapend; local
1407 * ie: an int32_t immediately precedes smap.
1412 for (smap = smapbase; smap < smapend; smap++) {
1415 smap->type, smap->base, smap->length);
1417 if (smap->type != SMAP_TYPE_MEMORY)
1420 if (!add_physmap_entry(smap
2081 struct bios_smap_xattr smap; local
[all...]
/freebsd-10.3-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.3-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 142 milliseconds