Searched refs:vmap (Results 1 - 14 of 14) sorted by relevance

/freebsd-12-stable/contrib/gdb/gdb/
H A Dxcoffsolib.h22 /* The vmap struct is used to describe the virtual address space of
33 struct vmap struct
35 struct vmap *nxt; /* ptr to next in chain */
58 struct vmap *pvmap;
61 extern struct vmap *vmap;
63 /* Add symbols for a vmap. */
64 extern int vmap_add_symbols (struct vmap *vp);
H A Dxcoffsolib.c41 struct vmap *vp = vmap;
43 /* The first vmap entry is for the exec file. */
67 struct vmap *vp = vmap;
79 /* Skip over the first vmap, it is the main program, always loaded. */
121 struct vmap *vp = vmap;
126 /* skip over the first vmap, it is the main program, always loaded. */
H A Dexec.c54 struct vmap *map_vmap (bfd *, bfd *);
86 struct vmap *vmap; variable in typeref:struct:vmap
99 struct vmap *vp, *nxt;
101 for (nxt = vmap; nxt != NULL;)
129 vmap = NULL;
236 /* Setup initial vmap. */
239 if (vmap == NULL)
382 struct vmap *vp;
405 /* Make a vmap fo
[all...]
H A Drs6000-nat.c130 extern struct vmap *map_vmap (bfd * bf, bfd * arch);
136 static struct vmap *add_vmap (LdInfo *);
140 static void vmap_symtab (struct vmap *);
621 vmap_secs (struct vmap *vp, LdInfo *ldi, int arch64)
648 vmap_symtab (struct vmap *vp)
697 /* Add symbols for a vmap. Return zero upon error. */
700 vmap_add_symbols (struct vmap *vp)
714 /* Add a new vmap entry based on ldinfo() information.
719 Return the vmap new entry. */
721 static struct vmap *
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DValueSymbolTable.h63 ValueSymbolTable() : vmap(0) {}
74 Value *lookup(StringRef Name) const { return vmap.lookup(Name); }
78 inline bool empty() const { return vmap.empty(); }
81 inline unsigned size() const { return unsigned(vmap.size()); }
93 inline iterator begin() { return vmap.begin(); }
96 inline const_iterator begin() const { return vmap.begin(); }
99 inline iterator end() { return vmap.end(); }
102 inline const_iterator end() const { return vmap.end(); }
130 ValueMap vmap; ///< The map that holds the symbol table. member in class:llvm::ValueSymbolTable
/freebsd-12-stable/sys/compat/linuxkpi/common/include/linux/
H A Dvmalloc.h39 void *vmap(struct page **pages, unsigned int count, unsigned long flags,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DValueSymbolTable.cpp35 for (const auto &VI : vmap)
39 assert(vmap.empty() && "Values remain in symbol table!");
63 // Try insert the vmap entry with this suffix.
64 auto IterBool = vmap.insert(std::make_pair(UniqueName, V));
76 if (vmap.insert(V->getValueName())) {
95 vmap.remove(V);
103 auto IterBool = vmap.insert(std::make_pair(Name, V));
/freebsd-12-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_compat.c485 struct vm_area_struct *vmap; local
487 vmap = linux_cdev_handle_find(vm_obj->handle);
489 MPASS(vmap != NULL);
490 MPASS(vmap->vm_private_data == vm_obj->handle);
492 if (likely(vmap->vm_ops != NULL && offset < vmap->vm_len)) {
493 vm_paddr_t paddr = IDX_TO_OFF(vmap->vm_pfn) + offset;
532 struct vm_area_struct *vmap; local
536 vmap = linux_cdev_handle_find(vm_obj->handle);
537 MPASS(vmap !
602 linux_cdev_handle_free(struct vm_area_struct *vmap) argument
615 linux_cdev_handle_remove(struct vm_area_struct *vmap) argument
625 struct vm_area_struct *vmap; local
650 struct vm_area_struct *vmap; local
1244 struct vm_area_struct *vmap; local
1850 vmap(struct page **pages, unsigned int count, unsigned long flags, int prot) function
[all...]
/freebsd-12-stable/stand/efi/loader/
H A Dbootinfo.c260 EFI_MEMORY_DESCRIPTOR *desc, *viter, *vmap; local
267 vmap = malloc(sz);
268 if (vmap == NULL)
271 viter = vmap;
281 ret = RS->SetVirtualAddressMap(nset * mmsz, mmsz, mmver, vmap);
282 free(vmap);
/freebsd-12-stable/contrib/libpcap/
H A Doptimize.c319 struct vmapinfo *vmap; member in struct:__anon2210
675 memset((char *)opt_state->vmap, 0, opt_state->maxval * sizeof(*opt_state->vmap));
697 opt_state->vmap[val].const_val = v0;
698 opt_state->vmap[val].is_const = 1;
729 a = opt_state->vmap[v0].const_val;
730 b = opt_state->vmap[v1].const_val;
974 if (opt_state->vmap[val].is_const) {
984 b->s.k += opt_state->vmap[val].const_val;
1045 if (opt_state->vmap[va
[all...]
/freebsd-12-stable/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_resources.c89 // if nbufs == 1 - there is no need to vmap
90 // if buf->direct.buf is not NULL it means that vmap was already done by mlx4_alloc_buff
101 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL);
/freebsd-12-stable/sys/dev/drm2/radeon/
H A Dradeon_prime.c141 .vmap = radeon_gem_prime_vmap,
/freebsd-12-stable/sys/dev/ice/
H A Dice_lib.h468 bitstr_t *vmap; /* Vector(s) assigned to VSI */ member in struct:ice_vsi
/freebsd-12-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_alloc.c639 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL);

Completed in 200 milliseconds