Searched refs:map (Results 226 - 250 of 1481) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h50 IRMemoryMap &map, lldb::addr_t process_address)
51 : m_materializer(&materializer), m_map(&map),
69 DematerializerSP Materialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
99 virtual void Materialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
101 virtual void Dematerialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
105 virtual void DumpToLog(IRMemoryMap &map, lldb::addr_t process_address,
107 virtual void Wipe(IRMemoryMap &map, lldb::addr_t process_address) = 0;
49 Dematerializer(Materializer &materializer, lldb::StackFrameSP &frame_sp, IRMemoryMap &map, lldb::addr_t process_address) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFLiveness.h19 #include <map>
35 // This is really a std::map, except that it provides a non-trivial
46 std::map<MachineBasicBlock*,RegisterAggr> Map;
52 using RefMap = std::map<RegisterId, NodeRefSet>;
119 // map: NodeId -> (map: RegisterId -> NodeRefSet)
120 // phi id -> (map: register -> set of reached non-phi uses)
121 std::map<NodeId, RefMap> RealUseMap;
124 std::map<MachineBasicBlock*,std::set<MachineBasicBlock*>> IIDF;
127 std::map<MachineBasicBloc
[all...]
/freebsd-11-stable/usr.bin/tail/
H A Dforward.c193 struct mapinfo map; local
199 map.start = NULL;
200 map.fd = fileno(fp);
201 map.mapoff = map.maxoff = size;
209 if (curoff < map.mapoff && maparound(&map, curoff) != 0) {
213 for (i = curoff - map.mapoff; i >= 0; i--)
214 if (map.start[i] == '\n' && --off == 0)
216 /* `i' is either the map offse
[all...]
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_swinstalled_tbl.c89 u_char *name; /* map key,a copy of swins_entry::name*/
101 /* map for consistent indexing */
129 struct swins_map_entry *map; local
131 STAILQ_FOREACH(map, &swins_map, link)
132 if (strcmp((const char *)map->name, name) == 0)
135 if (map == NULL) {
150 if ((map = malloc(sizeof(*map))) == NULL) {
159 if ((map->name = malloc(name_len)) == NULL) {
161 free(map);
199 struct swins_map_entry *map; local
[all...]
/freebsd-11-stable/usr.sbin/ypserv/
H A Dyp_server.c142 if (yp_access(argp->map, argp->domain, (struct svc_req *)rqstp)) {
144 if (yp_access(argp->map, (struct svc_req *)rqstp)) {
150 if (argp->domain == NULL || argp->map == NULL) {
155 if (yp_select_map(argp->map, argp->domain, NULL, 1) != YP_TRUE) {
168 (yp_testflag(argp->map, argp->domain, YP_INTERDOMAIN) ||
169 (strstr(argp->map, "hosts") || strstr(argp->map, "ipnodes")))) {
172 (strstr(argp->map, "hosts") || strstr(argp->map, "ipnodes"))) {
184 if (!strcmp(argp->map, "host
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dc-ppoutput.c237 const struct line_map *map = linemap_lookup (&line_table, src_loc); local
238 int src_line = SOURCE_LINE (map, src_loc);
271 const struct line_map *map = linemap_lookup (&line_table, src_loc); local
273 size_t to_file_len = strlen (map->to_file);
278 print.src_line = SOURCE_LINE (map, src_loc);
283 (unsigned char *) map->to_file, to_file_len);
289 if (map->sysp == 2)
291 else if (map->sysp == 1)
320 const struct line_map *map = linemap_lookup (&line_table, src_loc); local
321 int spaces = SOURCE_COLUMN (map, src_lo
412 pp_file_change(const struct line_map *map) argument
[all...]
/freebsd-11-stable/sys/vm/
H A Dvm_kern.c155 * Allocates a region from the kernel address map and physical pages
210 * Allocates a region from the kernel address map and physically
271 * Allocates a map to manage a subrange
277 * min, max Returned endpoints of map
433 * Allocates pageable memory from a sub-map of the kernel. If the submap
439 kmap_alloc_wait(vm_map_t map, vm_size_t size) argument
449 * To make this work for more than one map, use the map's lock
452 vm_map_lock(map);
453 if (vm_map_findspace(map, vm_map_mi
477 kmap_free_wakeup(vm_map_t map, vm_offset_t addr, vm_size_t size) argument
[all...]
/freebsd-11-stable/sys/kern/
H A Dimgact_aout.c160 vm_map_t map; local
278 map = &vmspace->vm_map;
279 vm_map_lock(map);
283 error = vm_map_insert(map, object,
289 vm_map_unlock(map);
296 error = vm_map_insert(map, object,
302 vm_map_unlock(map);
309 error = vm_map_insert(map, NULL, 0,
313 vm_map_unlock(map);
317 vm_map_unlock(map);
[all...]
/freebsd-11-stable/lib/libkvm/
H A Dkvm_powerpc.c46 void *map; member in struct:vmstate
101 vm->map = mmap(NULL, vm->mapsz, PROT_READ, MAP_PRIVATE, kd->pmfd, 0);
102 if (vm->map == MAP_FAILED) {
103 _kvm_err(kd, kd->program, "cannot map corefile");
107 vm->eh = vm->map;
115 vm->dmphdrsz = dump_header_size(vm->map);
118 vm->eh = (void *)((uintptr_t)vm->map + vm->dmphdrsz);
124 munmap(vm->map, vm->mapsz);
128 vm->map = mmap(NULL, vm->mapsz, PROT_READ, MAP_PRIVATE, kd->pmfd, 0);
129 if (vm->map
[all...]
H A Dkvm_powerpc64.c46 void *map; member in struct:vmstate
101 vm->map = mmap(NULL, vm->mapsz, PROT_READ, MAP_PRIVATE, kd->pmfd, 0);
102 if (vm->map == MAP_FAILED) {
103 _kvm_err(kd, kd->program, "cannot map corefile");
107 vm->eh = vm->map;
115 vm->dmphdrsz = dump_header_size(vm->map);
118 vm->eh = (void *)((uintptr_t)vm->map + vm->dmphdrsz);
124 munmap(vm->map, vm->mapsz);
128 vm->map = mmap(NULL, vm->mapsz, PROT_READ, MAP_PRIVATE, kd->pmfd, 0);
129 if (vm->map
[all...]
/freebsd-11-stable/lib/libc/net/
H A Dgethostbynis.c52 _gethostbynis(const char *name, char *map, int af, struct hostent *he, argument
82 if (yp_match(hed->yp_domain, map, name, strlen(name), &result,
168 char *map; local
172 map = "hosts.byname";
175 map = "ipnodes.byname";
178 return (_gethostbynis(name, map, af, he, hed));
185 char *map; local
190 map = "hosts.byaddr";
193 map = "ipnodes.byaddr";
198 return (_gethostbynis(numaddr, map, a
[all...]
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dmatrix_map.h42 * .map = {
54 * .mask = Mask of channels that exist in this map.
70 .map = { \
96 .map = { \
127 .map = { \
164 .map = { \
202 .map = { \
245 .map = { \
289 .map = { \
339 .map
[all...]
/freebsd-11-stable/sys/contrib/zlib/
H A Dzconf.h527 #pragma map(deflateInit_,"DEIN")
528 #pragma map(deflateInit2_,"DEIN2")
529 #pragma map(deflateEnd,"DEEND")
530 #pragma map(deflateBound,"DEBND")
531 #pragma map(inflateInit_,"ININ")
532 #pragma map(inflateInit2_,"ININ2")
533 #pragma map(inflateEnd,"INEND")
534 #pragma map(inflateSync,"INSY")
535 #pragma map(inflateSetDictionary,"INSEDI")
536 #pragma map(compressBoun
[all...]
/freebsd-11-stable/contrib/tcsh/
H A Dtc.bind.c55 KEYCMD *map; local
68 map = CcKeyMap;
86 map = CcAltMap;
157 else if (map[ch] == F_XKEY) {
159 map[ch] = F_UNASSIGNED;
162 map[ch] = F_UNASSIGNED;
171 printkey(map, &in);
196 map[ch] = F_XKEY;
208 map[ch] = F_XKEY;
211 ClearXkey(map,
226 printkey(const KEYCMD *map, CStr *in) argument
440 printkeys(KEYCMD *map, int first, int last) argument
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devmap.c113 #define GET_IO_SLOT(x, map, slot, type) \
117 ent_ = HT_FIND(event_io_map, map, &key_); \
121 #define GET_IO_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \
125 HT_FIND_OR_INSERT_(event_io_map, map_node, hashsocket, map, \
136 HT_FOI_INSERT_(map_node, map, &key_, ent_, ptr) \
158 /* Set the variable 'x' to the field in event_map 'map' with fields of type
161 #define GET_SIGNAL_SLOT(x, map, slot, type) \
162 (x) = (struct type *)((map)->entries[slot])
168 #define GET_SIGNAL_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \
170 if ((map)
204 evmap_make_space(struct event_signal_map *map, int slot, int msize) argument
445 struct event_signal_map *map = &base->sigmap; local
471 struct event_signal_map *map = &base->sigmap; local
492 struct event_signal_map *map = &base->sigmap; local
507 evmap_io_get_fdinfo_(struct event_io_map *map, evutil_socket_t fd) argument
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_minherit.c51 void *map = mmap(NULL, page, PROT_READ|PROT_WRITE, local
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;
/freebsd-11-stable/sys/arm64/cavium/
H A Dthunder_pcie_common.c175 pci_addr_t map, testval; local
187 pci_read_bar(child, *rid, &map, &testval, NULL);
190 if (PCI_BAR_MEM(map))
191 map &= PCIM_BAR_MEM_BASE;
193 map &= PCIM_BAR_IO_BASE;
200 start = map;
/freebsd-11-stable/share/mk/
H A Dbsd.symver.mk8 # Generate the version map given the version definitions
11 # Find the awk script that generates the version map.
13 VERSION_MAP?= Version.map
/freebsd-11-stable/lib/librpcsvc/
H A Dyp_update.c58 yp_update(char *domain, char *map, unsigned int ypop, char *key, int keylen, argument
72 if ((rval = yp_master(domain, map, &master)))
123 upargs.mapname = map;
140 upargs.mapname = map;
157 delargs.mapname = map;
172 upargs.mapname = map;
/freebsd-11-stable/sys/dev/ixgbe/
H A Dixgbe_dcb.c195 * @map: user priority to traffic class map
200 * consumed by hardware routines. The priority to tc map must be
203 void ixgbe_dcb_unpack_pfc_cee(struct ixgbe_dcb_config *cfg, u8 *map, u8 *pfc_up) argument
213 if (tc_config[map[up]].pfc != ixgbe_dcb_pfc_disabled)
281 u8 *map)
286 map[up] = ixgbe_dcb_get_tc_from_up(cfg, direction, up);
459 u8 map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 }; local
467 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_TX_CONFIG, map);
480 tsa, map);
280 ixgbe_dcb_unpack_map_cee(struct ixgbe_dcb_config *cfg, int direction, u8 *map) argument
544 u8 map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 }; local
588 u8 map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 }; local
655 u8 map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 }; local
701 ixgbe_dcb_config_pfc(struct ixgbe_hw *hw, u8 pfc_en, u8 *map) argument
724 ixgbe_dcb_hw_config(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa, u8 *map) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDKernelCodeTUtils.cpp49 StringMap<int> map; local
52 map.insert(std::make_pair(names[i], i));
53 map.insert(std::make_pair(altNames[i], i));
55 return map;
59 static const auto map = createIndexMap(get_amd_kernel_code_t_FldNames(), local
61 return map.lookup(name) - 1; // returns -1 if not found
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_acs.c65 chtype *map; local
68 map = (SP_PARM != 0) ? SP_PARM->_acs_map :
75 return map[c];
86 T(("initializing ACS map"));
/freebsd-11-stable/contrib/groff/src/libs/libbib/
H A Dlinear.cpp51 static uchar map[256]; variable
64 map[i] = csalnum(i) ? cmlower(i) : '\0';
98 pat[i] = map[uchar(pattern[i])];
137 if (map[uchar(*--s)] != uchar(pattern[--j]))
215 && map[uchar(match[matchlen])] != '\0')
229 if (match[-1] == '%' || map[uchar(match[-1])] != '\0')
233 if (map[uchar(match[-1])] != '\0' && match[-2] != '%')
240 if (map[uchar(match[-1])] != '\0'
368 if (map[uchar(*p)] != '\0'
369 && (p[1] == '\0' || map[ucha
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_sysctl.c198 struct drm_local_map *map, *tempmaps; variable in typeref:struct:drm_local_map
214 * temporary copy of all the map entries and then SYSCTL_OUT that.
220 if (entry->map != NULL)
233 if (entry->map != NULL)
234 tempmaps[i++] = *entry->map;
243 map = &tempmaps[i];
245 switch(map->type) {
256 type = types[map->type];
260 if (map->mtrr < 0)
267 i, (unsigned long long)map
[all...]
/freebsd-11-stable/usr.bin/tset/
H A Dterm.c73 goto map;
83 goto map;
90 map: ttype = mapped(ttype);

Completed in 1879 milliseconds

1234567891011>>