/src/sys/external/bsd/drm2/include/drm/ |
drm_iomap_netbsd.h | 41 DRM_IS_BUS_SPACE(struct drm_local_map *map) 43 switch (map->type) { 64 * map->handle, so maybe that's right. 77 DRM_READ8(struct drm_local_map *map, bus_size_t offset) 79 if (DRM_IS_BUS_SPACE(map)) 80 return bus_space_read_1(map->lm_data.bus_space.bst, 81 map->lm_data.bus_space.bsh, offset); 83 return *(volatile uint8_t *)((vaddr_t)map->handle + offset); 87 DRM_READ16(struct drm_local_map *map, bus_size_t offset) 89 if (DRM_IS_BUS_SPACE(map)) [all...] |
/src/lib/libc/arch/ia64/gen/ |
flt_rounds.c | 11 static const int map[] = { variable in typeref:typename:const int[] 24 return (map[(x >> 10) & 0x03]);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_test_config.h | 22 #include <map>
|
/src/etc/etc.mac68k/ |
Makefile.inc | 22 -map ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/misc/extensions.map
|
/src/usr.sbin/sysinst/arch/mac68k/ |
menus.md.de | 56 map.size = NEW_MAP_SIZE; 57 map.in_use_cnt = new_map[0].pmMapBlkCnt; 58 map.blk = (struct apple_part_map_entry *)calloc(map.size, 60 for (i=0;i<map.size;i++) 61 memcpy (&map.blk[i], &new_map[i], 68 if (map.selected >= map.usable_cnt) 69 map.selected = 0; 70 disp_selected_part (map.selected) [all...] |
menus.md.en | 46 option "Initialize Disk partition Map", exit, action { 56 map.size = NEW_MAP_SIZE; 57 map.in_use_cnt = new_map[0].pmMapBlkCnt; 58 map.blk = (struct apple_part_map_entry *)calloc(map.size, 60 for (i=0;i<map.size;i++) 61 memcpy (&map.blk[i], &new_map[i], 68 if (map.selected >= map.usable_cnt) 69 map.selected = 0 [all...] |
menus.md.es | 56 map.size = NEW_MAP_SIZE; 57 map.in_use_cnt = new_map[0].pmMapBlkCnt; 58 map.blk = (struct apple_part_map_entry *)calloc(map.size, 60 for (i=0;i<map.size;i++) 61 memcpy (&map.blk[i], &new_map[i], 68 if (map.selected >= map.usable_cnt) 69 map.selected = 0; 70 disp_selected_part (map.selected) [all...] |
/src/sbin/gpt/ |
map.h | 1 /* $NetBSD: map.h,v 1.7 2019/06/30 11:38:16 sevan Exp $ */ 28 * $FreeBSD: src/sbin/gpt/map.h,v 1.6 2005/08/31 01:47:19 marcel Exp $ 34 struct map { struct 37 struct map *map_next; 38 struct map *map_prev; 56 struct map *map_add(struct gpt *, off_t, off_t, int, void *, int); 57 struct map *map_alloc(struct gpt *, off_t, off_t, off_t); 58 struct map *map_find(struct gpt *, int); 59 struct map *map_first(struct gpt *); 60 struct map *map_last(struct gpt *) [all...] |
/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_memory.c | 70 MALLOC_DEFINE(DRM_MEM_MAPS, "drm_maps", "DRM MAP Data Structures"); 96 drm_netbsd_ioremap(struct drm_device *dev, drm_local_map_t *map, int wc) 106 map->offset >= dev->pci_map_data[i].base && 107 map->offset + map->size <= dev->pci_map_data[i].base + 110 map->bst = dev->pa.pa_memt; 111 map->fullmap = &(dev->pci_map_data[i]); 112 map->mapsize = map->size; 123 map->offset - dev->pci_map_data[i].base [all...] |
/src/sys/arch/emips/emips/ |
bus_dma.c | 100 * Common function for DMA map creation. May be called by bus-specific 101 * DMA map creation functions. 107 struct emips_bus_dmamap *map; local in function:_bus_dmamap_create 111 * Allocate and initialize the DMA map. The end of the map 126 map = (struct emips_bus_dmamap *)mapstore; 127 map->_dm_size = size; 128 map->_dm_segcnt = nsegments; 129 map->_dm_maxmaxsegsz = maxsegsz; 130 map->_dm_boundary = boundary [all...] |
/src/sys/arch/pmax/pmax/ |
bus_dma.c | 100 * Common function for DMA map creation. May be called by bus-specific 101 * DMA map creation functions. 107 struct pmax_bus_dmamap *map; local in function:_bus_dmamap_create 111 * Allocate and initialize the DMA map. The end of the map 126 map = (struct pmax_bus_dmamap *)mapstore; 127 map->_dm_size = size; 128 map->_dm_segcnt = nsegments; 129 map->_dm_maxmaxsegsz = maxsegsz; 130 map->_dm_boundary = boundary [all...] |
/src/tests/libexec/ld.elf_so/ |
t_dlinfo.c | 45 struct link_map *map; local in function:ATF_TC_BODY 48 rv = dlinfo(RTLD_SELF, RTLD_DI_LINKMAP, &map); 50 ATF_CHECK((strstr(map->l_name, "t_dlinfo") != NULL)); 74 struct link_map *map; local in function:ATF_TC_BODY 81 rv = dlinfo(handle, RTLD_DI_LINKMAP, &map); 83 ATF_CHECK((strstr(map->l_name, "libutil.so") != NULL)); 94 struct link_map *map; local in function:ATF_TC_BODY 100 ATF_REQUIRE_EQ_MSG(dlinfo(RTLD_SELF, RTLD_DI_LINKMAP, &map), 0, 103 for (; map->l_next; map = map->l_next [all...] |
/src/sys/uvm/ |
uvm_fault_i.h | 59 vm_map_unlock(ufi->map); 61 vm_map_unlock_read(ufi->map); 84 * uvmfault_lookup: lookup a virtual address in a map 88 * => we will lookup the map entry (handling submaps) as we go 90 * => if "write_lock" is true, we write_lock the map, otherwise we only 93 * required to use the same virtual addresses as the map they 95 * map and the submap is unnecessary). 107 ufi->map = ufi->orig_map; 117 * lock map 120 vm_map_lock(ufi->map); [all...] |
/src/lib/libc/arch/arm/gen/ |
flt_rounds.c | 43 static const int map[] = { variable in typeref:typename:const int[] 60 * index our map table and return the appropriate value. 81 return(map[fpgetround()]);
|
/src/lib/libc/arch/sh3/gen/ |
flt_rounds.c | 43 static const int map[] = { variable in typeref:typename:const int[] 60 * index our map table and return the appropriate value. 81 return(map[fpgetround()]);
|
/src/lib/libc/arch/sparc/gen/ |
flt_rounds.c | 16 static const int map[] = { variable in typeref:typename:const int[] 29 return map[(x >> 30) & 0x03];
|
/src/lib/libc/arch/sparc64/gen/ |
flt_rounds.c | 16 static const int map[] = { variable in typeref:typename:const int[] 29 return map[(x >> 30) & 0x03];
|
/src/usr.bin/mklocale/ |
ldef.h | 43 __nbrune_t map; member in struct:rune_list 49 u_int32_t map[_CTYPE_CACHE_SIZE]; member in struct:rune_map
|
/src/lib/libc/softfloat/ |
flt_rounds.c | 17 static const int map[] = { variable in typeref:typename:const int[] 32 return map[fpgetround()];
|
/src/sys/arch/amiga/stand/loadkmap/din/ |
Makefile | 6 FILES= din.map
|
/src/sys/arch/amiga/stand/loadkmap/es/ |
Makefile | 4 FILES= es.map
|
/src/sys/arch/amiga/stand/loadkmap/fr/ |
Makefile | 4 FILES= fr.map
|
/src/sys/arch/amiga/stand/loadkmap/pl_din/ |
Makefile | 4 FILES= pl_din.map
|
/src/sys/arch/amiga/stand/loadkmap/pl_us/ |
Makefile | 4 FILES= pl_us.map
|
/src/sys/arch/amiga/stand/loadkmap/sw/ |
Makefile | 4 FILES= sw.map
|