| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | ValueSymbolTable.h | 64 ValueSymbolTable() : vmap(0) {} in ValueSymbolTable() 75 Value *lookup(StringRef Name) const { return vmap.lookup(Name); } in lookup() 79 inline bool empty() const { return vmap.empty(); } in empty() 82 inline unsigned size() const { return unsigned(vmap.size()); } in size() 94 inline iterator begin() { return vmap.begin(); } in begin() 97 inline const_iterator begin() const { return vmap.begin(); } in begin() 100 inline iterator end() { return vmap.end(); } in end() 103 inline const_iterator end() const { return vmap.end(); } in end() 131 ValueMap vmap; ///< The map that holds the symbol table. variable
|
| /freebsd-12.1/sys/compat/linuxkpi/common/src/ |
| H A D | linux_compat.c | 488 if (likely(vmap->vm_ops != NULL && offset < vmap->vm_len)) { in linux_cdev_pager_fault() 551 vmf.vma = vmap; in linux_cdev_pager_populate() 554 vmap->vm_pfn_pcount = &vmap->vm_pfn_count; in linux_cdev_pager_populate() 557 err = vmap->vm_ops->fault(vmap, &vmf); in linux_cdev_pager_populate() 561 err = vmap->vm_ops->fault(vmap, &vmf); in linux_cdev_pager_populate() 607 kfree(vmap); in linux_cdev_handle_free() 629 return (vmap); in linux_cdev_handle_find() 1257 vmap = kzalloc(sizeof(*vmap), GFP_KERNEL); in linux_file_mmap_single() 1261 vmap->vm_pfn = 0; in linux_file_mmap_single() 1262 vmap->vm_flags = vmap->vm_page_prot = (nprot & VM_PROT_ALL); in linux_file_mmap_single() [all …]
|
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | xcoffsolib.h | 33 struct vmap struct 35 struct vmap *nxt; /* ptr to next in chain */ argument 58 struct vmap *pvmap; argument 61 extern struct vmap *vmap; 64 extern int vmap_add_symbols (struct vmap *vp);
|
| H A D | rs6000-nat.c | 725 struct vmap *vp; in add_vmap() 806 struct vmap *vp; in vmap_ldinfo() 946 exec_ops.to_sections[i].addr += vmap->tstart - vmap->tvma; in vmap_exec() 947 exec_ops.to_sections[i].endaddr += vmap->tstart - vmap->tvma; in vmap_exec() 951 exec_ops.to_sections[i].addr += vmap->dstart - vmap->dvma; in vmap_exec() 952 exec_ops.to_sections[i].endaddr += vmap->dstart - vmap->dvma; in vmap_exec() 956 exec_ops.to_sections[i].addr += vmap->dstart - vmap->dvma; in vmap_exec() 957 exec_ops.to_sections[i].endaddr += vmap->dstart - vmap->dvma; in vmap_exec() 1074 struct vmap *vp; in xcoff_relocate_core() 1131 vp = vmap; in xcoff_relocate_core() [all …]
|
| H A D | exec.c | 54 struct vmap *map_vmap (bfd *, bfd *); 86 struct vmap *vmap; variable 99 struct vmap *vp, *nxt; in exec_close() 101 for (nxt = vmap; nxt != NULL;) in exec_close() 129 vmap = NULL; in exec_close() 239 if (vmap == NULL) in exec_file_attach() 380 struct vmap *vp; in bfdsec_to_vmap() 406 struct vmap * 410 struct vmap *vp, **vpp; in map_vmap() 566 if (vmap) in exec_files_info() [all …]
|
| H A D | xcoffsolib.c | 41 struct vmap *vp = vmap; in xcoff_solib_address() 67 struct vmap *vp = vmap; in solib_info() 121 struct vmap *vp = vmap; in sharedlibrary_command()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | ValueSymbolTable.cpp | 36 for (const auto &VI : vmap) in ~ValueSymbolTable() 40 assert(vmap.empty() && "Values remain in symbol table!"); in ~ValueSymbolTable() 65 auto IterBool = vmap.insert(std::make_pair(UniqueName, V)); in makeUniqueName() 77 if (vmap.insert(V->getValueName())) { in reinsertValue() 96 vmap.remove(V); in removeValueName() 104 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName()
|
| /freebsd-12.1/contrib/libpcap/ |
| H A D | optimize.c | 308 struct vmapinfo *vmap; member 652 memset((char *)opt_state->vmap, 0, opt_state->maxval * sizeof(*opt_state->vmap)); in init_val() 674 opt_state->vmap[val].const_val = v0; in F() 675 opt_state->vmap[val].is_const = 1; in F() 707 a = opt_state->vmap[v0].const_val; in fold_op() 708 b = opt_state->vmap[v1].const_val; in fold_op() 924 if (opt_state->vmap[val].is_const) { in opt_peep() 1203 s->k = opt_state->vmap[v].const_val; in opt_stmt() 1217 s->k = opt_state->vmap[v].const_val; in opt_stmt() 1939 free((void *)opt_state->vmap); in opt_cleanup() [all …]
|
| /freebsd-12.1/stand/efi/loader/ |
| H A D | bootinfo.c | 260 EFI_MEMORY_DESCRIPTOR *desc, *viter, *vmap; in efi_do_vmap() local 267 vmap = malloc(sz); in efi_do_vmap() 268 if (vmap == NULL) in efi_do_vmap() 271 viter = vmap; in efi_do_vmap() 281 ret = RS->SetVirtualAddressMap(nset * mmsz, mmsz, mmver, vmap); in efi_do_vmap() 282 free(vmap); in efi_do_vmap()
|
| /freebsd-12.1/sys/compat/linuxkpi/common/include/linux/ |
| H A D | vmalloc.h | 39 void *vmap(struct page **pages, unsigned int count, unsigned long flags,
|
| /freebsd-12.1/sys/dev/mlx4/mlx4_en/ |
| H A D | mlx4_en_resources.c | 101 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL); in mlx4_en_map_buffer()
|
| /freebsd-12.1/sys/dev/drm2/radeon/ |
| H A D | radeon_prime.c | 141 .vmap = radeon_gem_prime_vmap,
|
| /freebsd-12.1/sys/dev/mlx4/mlx4_core/ |
| H A D | mlx4_alloc.c | 639 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL); in mlx4_buf_alloc()
|
| /freebsd-12.1/contrib/binutils/bfd/ |
| H A D | ChangeLog-9193 | 402 Functions taken out of coff-mips.c. Handle vmap type VMAPFILE.
|