| /src/external/gpl3/gcc/dist/gcc/objc/ |
| objc-map.cc | 1 /* objc-map.cc -- Implementation of map data structures for ObjC compiler 24 #include "objc-map.h" 58 objc_map_t map = ggc_cleared_alloc<objc_map_private> (); local 59 if (map == NULL) 64 map->number_of_slots = initial_capacity; 65 map->mask = initial_capacity - 1; 66 map->maximum_load_factor = 70; 67 map->max_number_of_non_empty_slots = (initial_capacity * map->maximum_load_factor) / 100 [all...] |
| objc-map.h | 1 /* objc-map.h -- Implementation of map data structures for ObjC compiler 23 /* A map is a data structure that maps a key to a value. In this file 24 we currently have maps that can map a GCC identifier (a tree) to 47 that can be currently stored in the map before resizing. This is 50 map, we round up the size to the next power of 2. This allows us 81 /* Private functions used to resize the map. They may be called by 84 objc_map_private_grow (struct objc_map_private *map); 88 ** The definition of a map. 94 ** Creating a map [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/objc/ |
| objc-map.cc | 1 /* objc-map.cc -- Implementation of map data structures for ObjC compiler 24 #include "objc-map.h" 58 objc_map_t map = ggc_cleared_alloc<objc_map_private> (); local 59 if (map == NULL) 64 map->number_of_slots = initial_capacity; 65 map->mask = initial_capacity - 1; 66 map->maximum_load_factor = 70; 67 map->max_number_of_non_empty_slots = (initial_capacity * map->maximum_load_factor) / 100 [all...] |
| objc-map.h | 1 /* objc-map.h -- Implementation of map data structures for ObjC compiler 23 /* A map is a data structure that maps a key to a value. In this file 24 we currently have maps that can map a GCC identifier (a tree) to 47 that can be currently stored in the map before resizing. This is 50 map, we round up the size to the next power of 2. This allows us 81 /* Private functions used to resize the map. They may be called by 84 objc_map_private_grow (struct objc_map_private *map); 88 ** The definition of a map. 94 ** Creating a map [all...] |
| /src/external/mit/xorg/share/fonts/font-util/ |
| Makefile | 6 INCS= map-ISO8859-1 map-ISO8859-2 map-ISO8859-3 map-ISO8859-4 \ 7 map-ISO8859-5 map-ISO8859-6 map-ISO8859-7 map-ISO8859-8 \ 8 map-ISO8859-9 map-ISO8859-10 map-ISO8859-11 map-ISO8859-13 [all...] |
| /src/external/bsd/elftoolchain/dist/libelf/ |
| os.FreeBSD.mk | 7 VERSION_MAP= ${.CURDIR}/Version.map
|
| /src/external/bsd/pdisk/dist/ |
| validate.h | 57 void validate_map(partition_map_header *map);
|
| /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/external/mit/isl/dist/ |
| closure.c | 2 #include <isl/map.h> 8 struct isl_map *map; local 21 map = isl_map_read_from_file(ctx, stdin); 22 map = isl_map_transitive_closure(map, &exact); 25 p = isl_printer_print_map(p, map); 27 map = isl_map_compute_divs(map); 28 map = isl_map_coalesce(map); [all...] |
| set_from_map.c | 3 /* Return the set that was treated as the map "map". 5 static __isl_give isl_set *set_from_map(__isl_take isl_map *map) 7 return (isl_set *) map;
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| file-prefix-map.cc | 1 /* Implementation of file prefix remapping support (-f*-prefix-map options). 22 #include "file-prefix-map.h" 36 /* Record a file prefix mapping in the specified map. ARG is the argument to 37 -f*-prefix-map and must be of the form OLD=NEW. OPT is the option name 42 file_prefix_map *map; local 73 map = XNEW (file_prefix_map); 74 map->old_prefix = old; 75 map->old_len = oldlen; 77 map->new_prefix = xstrdup (p); 78 map->new_len = strlen (p) 90 file_prefix_map *map; local 177 file_prefix_map *map; local 214 debug_regex_map *map; local 256 debug_regex_map *map; local [all...] |
| /src/lib/libc/arch/ia64/gen/ |
| flt_rounds.c | 11 static const int map[] = { variable 24 return (map[(x >> 10) & 0x03]);
|
| /src/external/gpl3/binutils/dist/gas/ |
| remap.c | 41 -fdebug-prefix-map and must be of the form OLD=NEW. */ 46 debug_prefix_map *map; local 53 as_fatal (_("invalid argument '%s' to -fdebug-prefix-map"), arg); 56 map = XNEW (debug_prefix_map); 58 map->old_prefix = o; 59 map->old_len = p - arg; 60 o[map->old_len] = 0; 62 map->new_prefix = xstrdup (p); 63 map->new_len = strlen (p); 64 map->next = debug_prefix_maps 75 debug_prefix_map *map; local [all...] |
| /src/external/gpl3/binutils.old/dist/gas/ |
| remap.c | 41 -fdebug-prefix-map and must be of the form OLD=NEW. */ 46 debug_prefix_map *map; local 53 as_fatal (_("invalid argument '%s' to -fdebug-prefix-map"), arg); 56 map = XNEW (debug_prefix_map); 58 map->old_prefix = o; 59 map->old_len = p - arg; 60 o[map->old_len] = 0; 62 map->new_prefix = xstrdup (p); 63 map->new_len = strlen (p); 64 map->next = debug_prefix_maps 75 debug_prefix_map *map; local [all...] |
| /src/external/mit/expat/dist/xmlwf/ |
| codepage.h | 35 int codepageMap(int cp, int *map);
|
| /src/etc/etc.mac68k/ |
| Makefile.inc | 22 -map ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/misc/extensions.map
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| sanitizer_test_config.h | 22 #include <map>
|
| /src/external/bsd/am-utils/bin/mk-amd-map/ |
| Makefile | 5 PROG= mk-amd-map 7 DIST= ${IDIST}/mk-amd-map 10 SRCS= mk-amd-map.c 11 MAN+= mk-amd-map.8
|
| /src/external/lgpl2/userspace-rcu/dist/include/urcu/map/ |
| urcu.h | 19 #include <urcu/map/urcu-memb.h> 21 #include <urcu/map/urcu-mb.h>
|
| /src/external/mit/libcbor/dist/test/ |
| type_5_test.c | 18 cbor_item_t *map; variable 24 map = cbor_load(empty_map, 1, &res); 25 assert_non_null(map); 26 assert_true(cbor_typeof(map) == CBOR_TYPE_MAP); 27 assert_true(cbor_isa_map(map)); 28 assert_true(cbor_map_size(map) == 0); 30 assert_int_equal(cbor_map_allocated(map), 0); 31 cbor_decref(&map); 32 assert_null(map); 39 map = cbor_load(simple_map, 5, &res) [all...] |
| /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/external/bsd/atf/dist/tools/ |
| requirements.hpp | 33 #include <map> 39 std::string check_requirements(const std::map< std::string, std::string >&, 40 const std::map< std::string, std::string >&); 42 const std::map< std::string, std::string >&, 43 const std::map< std::string, std::string >&);
|
| /src/external/bsd/openldap/dist/libraries/librewrite/ |
| map.c | 1 /* $NetBSD: map.c,v 1.4 2025/09/05 21:16:23 christos Exp $ */ 31 #include "rewrite-map.h" 44 struct rewrite_map *map = NULL; local 57 * Go to the end of the map invocation (the right closing brace) 62 * '%' marks the beginning of a new map 68 * of an old map 89 * Copy the map invocation 100 * Isolate the map name (except for variable deref) 119 * Check for special map types 166 * Isolate the argument of the map (except for variable deref 483 struct rewrite_builtin_map *map = ( struct rewrite_builtin_map * )tmp; local 499 struct rewrite_map *map; local [all...] |