Home
last modified time | relevance | path

Searched refs:maps (Results 1 – 25 of 202) sorted by relevance

123456789

/openbsd-src/etc/examples/
H A Dypldap.conf22 attribute name maps to "uid"
24 attribute uid maps to "uidNumber"
25 attribute gid maps to "gidNumber"
26 attribute gecos maps to "cn"
27 attribute home maps to "homeDirectory"
28 attribute shell maps to "loginShell"
36 attribute groupname maps to "cn"
38 attribute groupgid maps to "gidNumber"
40 list groupmembers maps to "memberUid"
/openbsd-src/gnu/gcc/libcpp/
H A Dline-map.c34 set->maps = NULL; in linemap_init()
54 for (map = &set->maps[set->used - 1]; ! MAIN_FILE_P (map); in linemap_check_files_exited()
65 if (set->maps) in linemap_free()
69 free (set->maps); in linemap_free()
94 if (set->used && start_location < set->maps[set->used - 1].start_location) in linemap_add()
100 set->maps = XRESIZEVEC (struct line_map, set->maps, set->allocated); in linemap_add()
103 map = &set->maps[set->used]; in linemap_add()
182 struct line_map *map = &set->maps[set->used - 1]; in linemap_line_start()
249 struct line_map *map = &set->maps[set->used - 1]; in linemap_position_for_column()
273 cached = &set->maps[mn]; in linemap_lookup()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dline-map.c37 set->maps = 0;
51 if (set->maps)
62 free (set->maps);
84 if (set->used && from_line < set->maps[set->used - 1].from_line)
90 set->maps = (struct line_map *)
91 xrealloc (set->maps, set->allocated * sizeof (struct line_map));
94 map = &set->maps[set->used++];
174 if (set->maps[md].from_line > line)
180 return &set->maps[mn];
H A Dline-map.h54 struct line_map *maps; member
110 #define INCLUDED_FROM(SET, MAP) (&(SET)->maps[(MAP)->included_from])
117 #define CURRENT_LINE_MAP(MAPS) ((MAPS)->maps + (MAPS)->used - 1)
/openbsd-src/sbin/isakmpd/
H A Dfield.c63 field_debug_raw(u_int8_t *buf, size_t len, struct constant_map **maps) in field_debug_raw() argument
97 field_debug_num(u_int8_t *buf, size_t len, struct constant_map **maps) in field_debug_num() argument
114 field_debug_mask(u_int8_t *buf, size_t len, struct constant_map **maps) in field_debug_mask() argument
133 name = constant_name_maps(maps, bit); in field_debug_mask()
154 field_debug_ign(u_int8_t *buf, size_t len, struct constant_map **maps) in field_debug_ign() argument
164 field_debug_cst(u_int8_t *buf, size_t len, struct constant_map **maps) in field_debug_cst() argument
171 return strdup(constant_name_maps(maps, val)); in field_debug_cst()
180 value = decode_field[(int) f->type] (buf + f->offset, f->len, f->maps); in field_dump_field()
H A Dconstants.c84 constant_name_maps(struct constant_map **maps, int value) in constant_name_maps() argument
90 for (map = maps; *map; map++) { in constant_name_maps()
H A Dfield.h44 struct constant_map **maps; member
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/
H A Dglobmapper.t68 is @{ $map }, 0, " returned 0 maps";
69 is_deeply $map, [], " zero maps" ;
72 is_deeply $hash, {}, " zero maps" ;
89 is @{ $map }, 3, " returned 3 maps";
118 is @{ $map }, 1, " returned 1 maps";
143 is @{ $map }, 2, " returned 2 maps";
155 is @{ $map }, 2, " returned 2 maps";
178 is @{ $map }, 3, " returned 3 maps";
199 is @{ $map }, 3, " returned 3 maps";
221 is @{ $map }, 3, " returned 3 maps";
[all...]
/openbsd-src/usr.bin/mg/
H A Dkeymap.c521 struct maps_s *maps; variable
529 maps = &fundamental_mode; in maps_init()
532 mp->p_next = maps; in maps_init()
533 maps = mp; in maps_init()
550 mp->p_next = maps; in maps_add()
551 maps = mp; in maps_add()
561 for (mp = maps; mp != NULL; mp = mp->p_next) in name_mode()
H A Dkbd.h45 extern struct maps_s *maps;
/openbsd-src/usr.sbin/ypserv/ypserv/
H A Dypserv_db.c79 struct mapq maps; /* global queue of maps (LRU) */ variable
90 TAILQ_INIT(&maps); in ypdb_init()
140 if (TAILQ_EMPTY(&maps)) { in ypdb_close_last()
145 last = TAILQ_LAST(&maps, mapq); in ypdb_close_last()
147 TAILQ_REMOVE(&maps, last, mapsq); /* remove from LRU circleq */ in ypdb_close_last()
170 while (!TAILQ_EMPTY(&maps)) in ypdb_close_all()
231 TAILQ_REMOVE(&maps, m, mapsq); /* adjust LRU queue */ in ypdb_open_db()
232 TAILQ_INSERT_HEAD(&maps, m, mapsq); in ypdb_open_db()
329 TAILQ_INSERT_HEAD(&maps, m, mapsq); in ypdb_open_db()
/openbsd-src/sys/dev/pci/
H A Dif_iavf.c1547 struct iavf_tx_map *maps, *txm; in iavf_txr_alloc()
1554 maps = mallocarray(sizeof(*maps), in iavf_txr_alloc()
1556 if (maps == NULL) in iavf_txr_alloc()
1565 txm = &maps[i]; in iavf_txr_alloc()
1578 txr->txr_maps = maps; in iavf_txr_alloc()
1587 txm = &maps[i]; in iavf_txr_alloc()
1597 free(maps, M_DEVBUF, sizeof(*maps) * sc->sc_tx_ring_ndescs); in iavf_txr_alloc()
1606 struct iavf_tx_map *maps, *tx in iavf_txr_clean()
1543 struct iavf_tx_map *maps, *txm; iavf_txr_alloc() local
1602 struct iavf_tx_map *maps, *txm; iavf_txr_clean() local
1626 struct iavf_tx_map *maps, *txm; iavf_txr_free() local
1831 struct iavf_rx_map *maps, *rxm; iavf_rxr_alloc() local
1894 struct iavf_rx_map *maps, *rxm; iavf_rxr_clean() local
1926 struct iavf_rx_map *maps, *rxm; iavf_rxr_free() local
[all...]
H A Dif_ixl.c2601 struct ixl_tx_map *maps, *txm; in ixl_txr_alloc()
2608 maps = mallocarray(sizeof(*maps), in ixl_txr_alloc()
2610 if (maps == NULL) in ixl_txr_alloc()
2619 txm = &maps[i]; in ixl_txr_alloc()
2632 txr->txr_maps = maps; in ixl_txr_alloc()
2641 txm = &maps[i]; in ixl_txr_alloc()
2651 free(maps, M_DEVBUF, sizeof(*maps) * sc->sc_tx_ring_ndescs); in ixl_txr_alloc()
2712 struct ixl_tx_map *maps, *tx in ixl_txr_clean()
2597 struct ixl_tx_map *maps, *txm; ixl_txr_alloc() local
2708 struct ixl_tx_map *maps, *txm; ixl_txr_clean() local
2768 struct ixl_tx_map *maps, *txm; ixl_txr_free() local
3056 struct ixl_rx_map *maps, *rxm; ixl_rxr_alloc() local
3119 struct ixl_rx_map *maps, *rxm; ixl_rxr_clean() local
3228 struct ixl_rx_map *maps, *rxm; ixl_rxr_free() local
[all...]
/openbsd-src/gnu/gcc/libcpp/include/
H A Dline-map.h66 struct line_map *maps; member
156 #define INCLUDED_FROM(SET, MAP) (&(SET)->maps[(MAP)->included_from])
/openbsd-src/lib/libcbor/
H A DMakefile20 SRCS+= ints.c maps.c serialization.c streaming.c tags.c strings.c
29 HDRS+= cbor/ints.h cbor/maps.h cbor/serialization.h cbor/streaming.h
/openbsd-src/usr.sbin/ypldap/
H A Dyp.c683 static struct ypmaplist maps[sizeof(mapnames) / sizeof(mapnames[0])]; in ypproc_maplist_2_svc() local
689 res.maps = NULL; in ypproc_maplist_2_svc()
693 maps[i].map = mapnames[i].name; in ypproc_maplist_2_svc()
694 maps[i].next = res.maps; in ypproc_maplist_2_svc()
695 res.maps = &maps[i]; in ypproc_maplist_2_svc()
/openbsd-src/gnu/llvm/clang/docs/
H A DModules.rst148 Because files listed in module maps are not found through include paths, a
157 Module maps
159 …d by a *module map*, which describes how a collection of existing headers maps on to the (logical)…
161 Module maps are specified as separate files (each named ``module.modulemap``) alongside the headers…
165maps for the underlying C standard library and the libraries and headers on which it depends. The …
167 …ne can use module maps without modules to check the integrity of the use of header files. To do th…
185 ``-fimplicit-module-maps``
186 …implied by ``-fmodules``. If this is disabled with ``-fno-implicit-module-maps``, module map files…
216 …If a symbol is not found, search modules referenced in the current module maps but not imported fo…
289 …-map-file=`` or ``-fimplicit-module-maps`` options explicitly. When using the clang driver, ``-fim…
[all …]
/openbsd-src/lib/libc/yp/
H A Dxdr_ypresp_maplist.c39 return xdr_pointer(xdrs, (caddr_t *)&objp->maps, in xdr_ypresp_maplist()
H A Dyp_maplist.c62 *outmaplist = ypml.maps; in yp_maplist()
/openbsd-src/share/locale/ctype/
H A Dgen_ctype_utf8.pl42 my @maps = qw(
264 foreach my $map (@maps) {
/openbsd-src/gnu/usr.bin/perl/lib/Unicode/
H A DUCD.t2519 my %maps;
2539 push @{$maps{$previous_map}}, $range_start if defined $previous_map;
2543 push @{$maps{$previous_map}}, $range_start;
2558 push @{$maps{$penultimate_map}}, $invlist_ref->[-1];
2559 push @{$maps{$missing}}, $invlist_ref->[-1];
2567 foreach my $map (sort keys %maps) {
2569 my $min = (@off_invlist >= @{$maps{$map}})
2571 : @{$maps{$map}};
2575 …op_invlist(), while [$i] in the implicit one constructed from prop_invmap() is '$maps{$map}[$i]'");
2578 elsif ($i > @{$maps{$map}} - 1) {
[all …]
/openbsd-src/usr.sbin/amd/doc/
H A Damdref.texinfo100 * Mount Maps:: Details of mount maps
493 @c With a suitable combination of filesystem management and mount-maps,
644 @cindex Mount maps
645 @cindex Automounter configuration maps
649 External @dfn{mount-maps} are used to provide the required information.
678 @i{Amd} are regular files, NIS maps the @dfn{Hesiod} name server and
686 descriptors. The available maps are configure when @i{Amd} is built and
701 * File maps::
702 * NIS maps::
703 * Hesiod maps::
[all …]
/openbsd-src/lib/librpcsvc/
H A Dyp.x161 ypmaplist *maps; member
/openbsd-src/gnu/llvm/llvm/docs/
H A DStackMaps.rst2 Stack maps and patch points in LLVM
50 used whenever stack maps or code patching are needed. Because the
58 which can also be considered a "stack map". Unlike the stack maps
62 stack map. The stack maps described here could potentially provide
70 maps and patch points: ``llvm.experimental.stackmap`` and
239 convention has been introduced for use with stack maps, anyregcc,
477 stack maps.
/openbsd-src/gnu/usr.bin/perl/t/lib/feature/
H A Dbundle29 # more specific: 5.10.0 maps to 5.10

123456789