/freebsd/crypto/heimdal/lib/wind/ |
H A D | rfc3454.txt | 306 1) Map -- For each character in the input, check if it has a mapping 416 If a profile is going to map characters for case-insensitive 417 comparison, that profile SHOULD map using either appendix B.2 or 420 not use Unicode normalization. These tables map from uppercase to 427 SHOULD be based on [UTR21], and SHOULD map from uppercase characters 543 tables MUST map based on the tables themselves, not based on the 1076 parties. Because it is impossible to map similar-looking characters 1078 stringprep does nothing to map similar-looking characters together 1100 characters (that is, do not map them out or prohibit them in 1726 00AD; ; Map to nothing [all …]
|
H A D | map_table.c | 8 {0x0, 0, 0, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to nothing */ 9 {0x1, 0, 0, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to nothing */ 10 {0x2, 0, 0, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to nothing */ 11 {0x3, 0, 0, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to nothing */ 12 {0x4, 0, 0, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to nothing */ 13 {0x5, 0, 0, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to nothing */ 14 {0x6, 0, 0, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to nothing */ 15 {0x7, 0, 0, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to nothing */ 16 {0x9, 1, 0, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to SPACE */ 17 {0xa, 1, 1, WIND_PROFILE_LDAP|WIND_PROFILE_LDAP_CASE}, /* rfc4518-map: Map to SPACE */ [all …]
|
H A D | rfc4518.py | 45 #2.2. Map 54 t.append(" 00AD; ; Map to nothing") 55 t.append(" 1806; ; Map to nothing") 56 t.append(" 034F; ; Map to nothing") 58 t.append(" 180B; ; Map to nothing") 59 t.append(" 180C; ; Map to nothing") 60 t.append(" 180D; ; Map to nothing") 62 t.append(" FE00; ; Map to nothing") 63 t.append(" FE01; ; Map to nothing") 64 t.append(" FE02; ; Map to nothing") [all …]
|
/freebsd/sys/contrib/ck/src/ |
H A D | ck_rhs.c | 103 struct ck_rhs_map *map, 135 ck_rhs_entry(struct ck_rhs_map *map, long offset) in ck_rhs_entry() argument 138 if (map->read_mostly) in ck_rhs_entry() 139 return (map->entries.no_entries.entries[offset]); in ck_rhs_entry() 141 return (map->entries.descs[offset].entry); in ck_rhs_entry() 145 ck_rhs_entry_addr(struct ck_rhs_map *map, long offset) in ck_rhs_entry_addr() argument 148 if (map->read_mostly) in ck_rhs_entry_addr() 149 return (&map->entries.no_entries.entries[offset]); in ck_rhs_entry_addr() 151 return (&map->entries.descs[offset].entry); in ck_rhs_entry_addr() 155 ck_rhs_desc(struct ck_rhs_map *map, long offset) in ck_rhs_desc() argument [all …]
|
H A D | ck_hs.c | 98 ck_hs_map_signal(struct ck_hs_map *map, unsigned long h) in ck_hs_map_signal() argument 102 ck_pr_store_uint(&map->generation[h], in ck_hs_map_signal() 103 map->generation[h] + 1); in ck_hs_map_signal() 109 _ck_hs_next(struct ck_hs *hs, struct ck_hs_map *map, in _ck_hs_next() argument 114 if (i->offset >= map->capacity) in _ck_hs_next() 118 value = CK_CC_DECONST_PTR(map->entries[i->offset]); in _ck_hs_next() 130 } while (++i->offset < map->capacity); in _ck_hs_next() 141 iterator->map = NULL; in ck_hs_iterator_init() 149 return _ck_hs_next(hs, hs->map, i, key); in ck_hs_next() 155 struct ck_hs_map *m = i->map; in ck_hs_next_spmc() [all …]
|
H A D | ck_ht.c | 98 struct ck_ht_map *map = table->map; in ck_ht_stat() local 100 st->n_entries = map->n_entries; in ck_ht_stat() 101 st->probe_maximum = map->probe_maximum; in ck_ht_stat() 140 struct ck_ht_map *map; in ck_ht_map_create() local 159 map = table->m->malloc(size); in ck_ht_map_create() 160 if (map == NULL) in ck_ht_map_create() 163 map->mode = table->mode; in ck_ht_map_create() 164 map->size = size; in ck_ht_map_create() 165 map->probe_limit = ck_internal_max_64(n_entries >> in ck_ht_map_create() 168 map->deletions = 0; in ck_ht_map_create() [all …]
|
/freebsd/contrib/ofed/opensm/include/complib/ |
H A D | cl_qmap.h | 38 * Declaration of quick map, a binary tree where the caller always provides 56 /****h* Component Library/Quick Map 58 * Quick Map 61 * Quick map implements a binary tree that stores user provided cl_map_item_t 62 * structures. Each item stored in a quick map has a unique 64-bit key 63 * (duplicates are not allowed). Quick map provides the ability to 66 * Quick map does not allocate any memory, and can therefore not fail 67 * any operations due to insufficient memory. Quick map can thus be useful 70 * Quick map is not thread safe, and users must provide serialization when 71 * adding and removing items from the map. [all …]
|
H A D | cl_fleximap.h | 38 * Declaration of flexi map, a binary tree where the caller always provides 56 /****h* Component Library/Flexi Map 58 * Flexi Map 61 * Flexi map implements a binary tree that stores user provided cl_fmap_item_t 62 * structures. Each item stored in a flexi map has a unique user defined 63 * key (duplicates are not allowed). Flexi map provides the ability to 64 * efficiently search for an item given a key. Flexi map allows user 66 * are provided by users to allow flexi map to store items with arbitrary 69 * Flexi map does not allocate any memory, and can therefore not fail 70 * any operations due to insufficient memory. Flexi map can thus be useful [all …]
|
H A D | cl_map.h | 38 * Declaration of map, a binary tree. 56 /****h* Component Library/Map 58 * Map 61 * Map implements a binary tree that stores user objects. Each item stored 62 * in a map has a unique 64-bit key (duplicates are not allowed). Map 65 * Map may allocate memory when inserting objects, and can therefore fail 66 * operations due to insufficient memory. Use quick map in situations 69 * Map is not thread safe, and users must provide serialization when adding 70 * and removing items from the map. 72 * The map functions operates on a cl_map_t structure which should be treated [all …]
|
/freebsd/contrib/sendmail/src/ |
H A D | map.c | 16 SM_RCSID("@(#)$Id: map.c,v 8.713 2013-11-22 20:51:55 ca Exp $") 46 #include "map.h" 50 static bool db_map_open __P((MAP *, int, char *, DBTYPE, const void *)); 53 static bool db_map_open __P((MAP *, int, char *, DBTYPE, DB_INFO *)); 56 static bool db_map_open __P((MAP *, int, char *, DBTYPE, void **)); 82 /* default error message for trying to open a map in write mode */ 97 ** map -- map being checked 98 ** fn -- (full) file name of map. 99 ** fd -- fd of map. 106 static bool map_has_chged __P((MAP *, const char *, int)); [all …]
|
H A D | map.h | 9 * $Id: map.h,v 8.4 2013-11-22 20:51:56 ca Exp $ 15 extern char *arith_map_lookup __P((MAP *, char *, char **, int *)); 17 extern char *arpa_map_lookup __P((MAP *, char *, char **, int *)); 19 extern char *bestmx_map_lookup __P((MAP *, char *, char **, int *)); 21 extern char *bogus_map_lookup __P((MAP *, char *, char **, int *)); 24 extern bool bt_map_open __P((MAP *, int)); 26 extern char *db_map_lookup __P((MAP *, char *, char **, int *)); 27 extern void db_map_store __P((MAP *, char *, char *)); 28 extern void db_map_close __P((MAP *)); 31 extern bool dequote_init __P((MAP *, char *)); [all …]
|
/freebsd/contrib/atf/atf-c/detail/ |
H A D | map_test.c | 26 #include "atf-c/detail/map.h" 51 atf_map_t map; in ATF_TC_BODY() local 53 RE(atf_map_init(&map)); in ATF_TC_BODY() 54 ATF_REQUIRE_EQ(atf_map_size(&map), 0); in ATF_TC_BODY() 55 atf_map_fini(&map); in ATF_TC_BODY() 61 atf_map_t map; in ATF_TC_BODY() local 63 RE(atf_map_init_charpp(&map, NULL)); in ATF_TC_BODY() 64 ATF_REQUIRE_EQ(atf_map_size(&map), 0); in ATF_TC_BODY() 65 atf_map_fini(&map); in ATF_TC_BODY() 72 atf_map_t map; in ATF_TC_BODY() local [all …]
|
/freebsd/contrib/libcbor/test/ |
H A D | map_test.c | 20 cbor_item_t *map; variable 26 map = cbor_load(empty_map, 1, &res); in test_empty_map() 27 assert_non_null(map); in test_empty_map() 28 assert_true(cbor_typeof(map) == CBOR_TYPE_MAP); in test_empty_map() 29 assert_true(cbor_isa_map(map)); in test_empty_map() 30 assert_true(cbor_map_size(map) == 0); in test_empty_map() 32 assert_size_equal(cbor_map_allocated(map), 0); in test_empty_map() 33 cbor_decref(&map); in test_empty_map() 34 assert_null(map); in test_empty_map() 41 map = cbor_load(simple_map, 5, &res); in test_simple_map() [all …]
|
/freebsd/sys/vm/ |
H A D | vm_map.c | 102 * memory from one map to another. 111 * which may not align with existing map entries, all 119 * by copying VM object references from one map to 128 static void _vm_map_init(vm_map_t map, pmap_t pmap, vm_offset_t min, 131 static void vm_map_entry_dispose(vm_map_t map, vm_map_entry_t entry); 132 static void vm_map_entry_unwire(vm_map_t map, vm_map_entry_t entry); 133 static int vm_map_growstack(vm_map_t map, vm_offset_t addr, 135 static void vm_map_pmap_enter(vm_map_t map, vm_offset_t addr, vm_prot_t prot, 140 static int vm_map_stack_locked(vm_map_t map, vm_offset_t addrbos, 143 static void vm_map_wire_entry_failure(vm_map_t map, vm_map_entry_t entry, [all …]
|
H A D | vm_map.h | 62 * Virtual memory map module definitions. 74 * vm_map_t the high-level address map data structure. 75 * vm_map_entry_t an entry in an address map. 83 * another map (called a "sharing map") which denotes read-write 88 struct vm_map *sub_map; /* belongs to another map */ 92 * Address map entries consist of start and end addresses, 93 * a VM object (or sharing map) and offset into that object, 97 * For stack gap map entries (MAP_ENTRY_GUARD | MAP_ENTRY_GROWS_DOWN 110 vm_eflags_t eflags; /* map entry flags */ 181 * A map is a set of map entries. These map entries are [all …]
|
/freebsd/contrib/netbsd-tests/ipf/regress/ |
H A D | in1 | 1 map le0 0/0 -> 0/32 2 map le0 1/32 -> 1/32 3 map le0 128.0.0.0/1 -> 0/0 4 map le0 10.0.0.0/8 -> 1.2.3.0/24 5 map le0 10.0.0.5/8 -> 1.2.3.4/24 6 map le0 10.0.0.5/0xff000000 -> 1.2.3.4/24 7 map le0 10.0.0.5/0xff -> 1.2.3.4/24 8 map le0 192.168.0.0/16 -> range 203.1.1.23-203.1.3.45 9 map ppp0 192.168.0.0/16 -> 0/32 portmap tcp 10000:19999 10 map ppp0 192.168.0.0/16 -> 0/32 portmap udp 20000:29999 [all …]
|
H A D | in1_6 | 1 map le0 inet6 0/0 -> 0/128 2 map le0 inet6 1/128 -> 1/128 3 map le0 inet6 128::/1 -> 0/0 4 map le0 inet6 10::0/16 -> 1:2:3::0/96 5 map le0 inet6 10::5/16 -> 1:2:3::4/96 6 map le0 inet6 192:168::/32 -> range 203:1:1::23-203:1:3::45 7 map ppp0 inet6 192:168::/32 -> 0/128 portmap tcp 10000:19999 8 map ppp0 inet6 192:168::/32 -> 0/128 portmap udp 20000:29999 9 map ppp0 inet6 192:168::/32 -> 0/128 portmap tcp/udp 30000:39999 10 map ppp0 inet6 192:168::/32 -> 0/128 portmap tcp auto [all …]
|
/freebsd/contrib/netbsd-tests/ipf/expected/ |
H A D | in1 | 1 map le0 0/0 -> 0/32 2 map le0 0.0.0.1/32 -> 0.0.0.1/32 3 map le0 128.0.0.0/1 -> 0/0 4 map le0 10.0.0.0/8 -> 1.2.3.0/24 5 map le0 10.0.0.0/8 -> 1.2.3.0/24 6 map le0 10.0.0.0/8 -> 1.2.3.0/24 7 map le0 0.0.0.5/0.0.0.255 -> 1.2.3.0/24 8 map le0 192.168.0.0/16 -> range 203.1.1.23-203.1.3.45 9 map ppp0 192.168.0.0/16 -> 0/32 portmap tcp 10000:19999 10 map ppp0 192.168.0.0/16 -> 0/32 portmap udp 20000:29999 [all …]
|
H A D | in1_6 | 1 map le0 inet6 any -> ::/128 2 map le0 inet6 any -> any 3 map le0 inet6 ::/1 -> any 4 map le0 inet6 10::/16 -> 1:2:3::/96 5 map le0 inet6 10::/16 -> 1:2:3::/96 6 map le0 inet6 192:168::/32 -> range 203:1:1::23-203:1:3::45 7 map ppp0 inet6 192:168::/32 -> ::/128 portmap tcp 10000:19999 8 map ppp0 inet6 192:168::/32 -> ::/128 portmap udp 20000:29999 9 map ppp0 inet6 192:168::/32 -> ::/128 portmap tcp/udp 30000:39999 10 map ppp0 inet6 192:168::/32 -> ::/128 portmap tcp auto [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | X86RecognizableInstr.h | 30 MAP(C0, 64) \ 31 MAP(C1, 65) \ 32 MAP(C2, 66) \ 33 MAP(C3, 67) \ 34 MAP(C4, 68) \ 35 MAP(C5, 69) \ 36 MAP(C6, 70) \ 37 MAP(C7, 71) \ 38 MAP(C8, 72) \ 39 MAP(C9, 73) \ [all …]
|
/freebsd/sys/contrib/alpine-hal/ |
H A D | al_hal_pbs_regs.h | 1966 /* map transactions according to address decoding */ 1969 /* map transactions to pcie_0 */ 1972 /* map transactions to pcie_1 */ 1975 /* map transactions to pcie_2 */ 1978 /* map transactions to pcie_3 */ 1981 /* map transactions to pcie_4 */ 1984 /* map transactions to pcie_5 */ 1987 /* map transactions to dram */ 1992 /* map transactions according to address decoding */ 1995 /* map transactions to pcie_0 */ [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ValueMap.h | 1 //===- ValueMap.h - Safe map from Values to data ----------------*- C++ -*-===// 74 /// Returns a mutex that should be acquired around any changes to the map. 92 MapT Map; variable 103 : Map(NumInitBuckets), Data() {} in Map() function 105 : Map(NumInitBuckets), Data(Data) {} in Map() function 121 /// Get the mapped metadata, if it's in the map. 134 inline iterator begin() { return iterator(Map.begin()); } in begin() 135 inline iterator end() { return iterator(Map.end()); } in end() 136 inline const_iterator begin() const { return const_iterator(Map.begin()); } in begin() 137 inline const_iterator end() const { return const_iterator(Map.end()); } in end() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/cmd/ |
H A D | draid.c | 128 * Read a map from the specified filename. A file contains multiple maps 156 * Write all mappings to the map file. 263 * Add the dRAID map to the file and write it out. 266 write_map_key(const char *filename, char *key, draid_map_t *map, in write_map_key() argument 291 /* Replace old map with the more balanced new map. */ in write_map_key() 294 /* The old map is preferable, keep it. */ in write_map_key() 301 fnvlist_add_uint64(cfg, MAP_SEED, map->dm_seed); in write_map_key() 302 fnvlist_add_uint64(cfg, MAP_CHECKSUM, map->dm_checksum); in write_map_key() 303 fnvlist_add_uint64(cfg, MAP_CHILDREN, map->dm_children); in write_map_key() 304 fnvlist_add_uint64(cfg, MAP_NPERMS, map->dm_nperms); in write_map_key() [all …]
|
/freebsd/sys/arm64/arm64/ |
H A D | busdma_bounce.c | 116 static bool _bus_dmamap_pagesneeded(bus_dma_tag_t dmat, bus_dmamap_t map, 118 static void _bus_dmamap_count_pages(bus_dma_tag_t dmat, bus_dmamap_t map, 120 static void _bus_dmamap_count_phys(bus_dma_tag_t dmat, bus_dmamap_t map, 185 cacheline_bounce(bus_dma_tag_t dmat, bus_dmamap_t map, bus_addr_t paddr, in cacheline_bounce() argument 193 if (map != NULL && (map->flags & DMAMAP_CACHELINE_FLAGS) != 0) in cacheline_bounce() 210 might_bounce(bus_dma_tag_t dmat, bus_dmamap_t map, bus_addr_t paddr, in might_bounce() argument 215 if (map && (map->flags & DMAMAP_FROM_DMAMEM) != 0) in might_bounce() 221 if (cacheline_bounce(dmat, map, paddr, size)) in might_bounce() 231 must_bounce(bus_dma_tag_t dmat, bus_dmamap_t map, bus_addr_t paddr, in must_bounce() argument 235 if (cacheline_bounce(dmat, map, paddr, size)) in must_bounce() [all …]
|
/freebsd/sys/dev/iommu/ |
H A D | busdma_iommu.c | 353 static MALLOC_DEFINE(M_IOMMU_DMAMAP, "iommu_dmamap", "IOMMU DMA Map"); 356 struct bus_dmamap_iommu *map); 437 struct bus_dmamap_iommu *map; in iommu_bus_dmamap_create() local 440 map = malloc_domainset(sizeof(*map), M_IOMMU_DMAMAP, in iommu_bus_dmamap_create() 442 if (map == NULL) { in iommu_bus_dmamap_create() 451 free(map, M_IOMMU_DMAMAP); in iommu_bus_dmamap_create() 456 IOMMU_DMAMAP_INIT(map); in iommu_bus_dmamap_create() 457 TAILQ_INIT(&map->map_entries); in iommu_bus_dmamap_create() 458 map->tag = tag; in iommu_bus_dmamap_create() 459 map->locked = true; in iommu_bus_dmamap_create() [all …]
|