/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/mips/gen/ |
flt_rounds.c | 17 static const int map[] = { variable in typeref:typename:const int[] 28 return map[fpgetround()]; 33 return map[x & 0x03];
|
/src/lib/libc/arch/powerpc/gen/ |
flt_rounds.c | 45 static const int map[] = { variable in typeref:typename:const int[] 56 return map[fpgetround()]; 64 return map[((uint32_t)ud.u_fpscr & FPSCR_RN)];
|
/src/lib/libc/arch/powerpc64/gen/ |
flt_rounds.c | 45 static const int map[] = { variable in typeref:typename:const int[] 56 return map[fpgetround()]; 61 return map[((uint32_t)fpscr & FPSCR_RN)];
|
/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/hppa/gen/ |
flt_rounds.c | 17 static const int map[] = { variable in typeref:typename:const int[] 30 return map[(unsigned int)(fpsr >> 41) & 0x03];
|
/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/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/sys/modules/examples/mapper/ |
cmd_mapper.c | 45 char *map = NULL; local in function:main 50 map = (char *)(mmap(0, sysconf(_SC_PAGESIZE), PROT_READ, MAP_SHARED, 52 if (map == MAP_FAILED) 55 printf("Message from device: %s\n",map); 57 if (munmap(map, sysconf(_SC_PAGESIZE)) == -1)
|
/src/sys/modules/examples/fopsmapper/ |
cmd_mapper.c | 45 char *map = NULL; local in function:main 50 map = mmap(0, sysconf(_SC_PAGESIZE), PROT_READ, MAP_SHARED, devfd, 0); 51 if (map == MAP_FAILED) 54 printf("Message from device: %s\n", map); 56 if (munmap(map, sysconf(_SC_PAGESIZE)) == -1)
|
/src/usr.sbin/npf/npftest/ |
npftestl3.conf | 27 map $ext_if static $local_ip3 <-> $pub_ip3 28 map $ext_if dynamic $local_ip2 <-> $pub_ip2 29 map $ext_if dynamic $local_net -> $pub_ip1 30 map $ext_if dynamic $local_ip1 port 6000 <- $pub_ip1 port 8000 42 map $ext_if static algo npt66 $net6_inner <-> $net6_outer 43 map $ext_if static algo netmap $net_a <-> $net_b 44 map ruleset "map:some-daemon" on $ext_if key
|
npftest.conf | 45 map $ext_if static $local_ip3 <-> $pub_ip3 46 map $ext_if dynamic $local_ip2 <-> $pub_ip2 47 map $ext_if dynamic $local_net -> $pub_ip1 48 map $ext_if dynamic $local_ip1 port 6000 <- $pub_ip1 port 8000 60 map $ext_if static algo npt66 $net6_inner <-> $net6_outer 61 map $ext_if static algo netmap $net_a <-> $net_b 62 map ruleset "map:some-daemon" on $ext_if key
|
/src/sys/dev/fdt/ |
fdt_iommu.h | 36 bus_dma_tag_t (*map)(device_t, const u_int *, bus_dma_tag_t); member in struct:fdtbus_iommu_func
|
/src/usr.bin/mklocale/ |
yacc.y | 125 %type <list> map 186 | MAPLOWER map 188 | MAPUPPER map 190 | DIGITMAP map 224 map : LBRK RUNE RUNE RBRK label 229 $$->map = $3; 232 | map LBRK RUNE RUNE RBRK 237 $$->map = $4; 245 $$->map = $6; 248 | map LBRK RUNE THRU RUNE ':' RUNE RBR [all...] |
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/sys/ddb/ |
db_watch.h | 39 struct vm_map *map; /* in this map */ member in struct:db_watchpoint
|
/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.h | 44 struct vm_map *orig_map; /* IN: original map */ 47 struct vm_map *map; /* map (could be a submap) */ member in struct:uvm_faultinfo 48 unsigned int mapv; /* map's version number */ 49 struct vm_map_entry *entry; /* map entry (from 'map') */
|
/src/tests/lib/libc/sys/ |
t_minherit.c | 51 void *map = mmap(NULL, page, PROT_READ|PROT_WRITE, local in function:makemap 53 ATF_REQUIRE(map != MAP_FAILED); 54 memset(map, v, page); 56 ATF_REQUIRE(minherit(map, page, f) == 0); 58 ATF_REQUIRE(minherit(map, page, f) == -1); 59 return map;
|
/src/sbin/gpt/ |
header.c | 48 #include "map.h" 71 map_t map; local in function:header 83 map = map_find(gpt, MAP_TYPE_PRI_GPT_HDR); 84 if (map == NULL) { 89 hdr = map->map_data;
|
/src/lib/libedit/ |
keymacro.h | 52 keymacro_node_t *map; /* Key map */ member in struct:el_keymacro_t
|
/src/sys/arch/alpha/common/ |
sgmap_common.c | 156 bus_dmamap_t map; local in function:alpha_sgmap_dmamap_create 160 boundary, flags, &map); 167 *dmamp = map; 169 alpha_sgmap_dmamap_destroy(t, map); 175 alpha_sgmap_dmamap_destroy(bus_dma_tag_t t, bus_dmamap_t map) 178 KASSERT(map->dm_mapsize == 0); 180 _bus_dmamap_destroy(t, map);
|
/src/sys/arch/evbmips/rasoc/ |
autoconf.c | 97 ra_device_fixup(bus_space_tag_t bst, const struct cfg_info *map) 101 if ((clkcfg1 & map->map_clkcfg1) != map->map_clkcfg1) { 103 clkcfg1 | map->map_clkcfg1); 109 if ((rst & map->map_rst) != 0) { 111 rst & ~map->map_rst); 125 for (const struct cfg_info *map = map_info; local in function:device_register 126 map < map_info + __arraycount(map_info); 127 map++) { 128 if (device_is_a(self, map->map_name)) [all...] |
/src/sys/arch/vax/uba/ |
uba_dma.c | 107 * Map in Unibus map registers, if not mapped in already. 125 * Create a UBA SGMAP-mapped DMA map. 132 bus_dmamap_t map; local in function:uba_bus_dmamap_create_sgmap 140 map = *dmamp; 143 error = vax_sgmap_alloc(map, vax_round_page(size), 146 uba_bus_dmamap_destroy_sgmap(t, map); 153 * Destroy a UBA SGMAP-mapped DMA map. 156 uba_bus_dmamap_destroy_sgmap(bus_dma_tag_t t, bus_dmamap_t map) 159 if (map->_dm_flags & DMAMAP_HAS_SGMAP [all...] |