| /openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
| H A D | irix-core.c | 56 struct vmap64 vmap; in do_sections64() local 62 val = bfd_bread ((PTR) &vmap, (bfd_size_type) sizeof vmap, abfd); in do_sections64() 63 if (val != sizeof vmap) in do_sections64() 66 switch (vmap.v_type) in do_sections64() 85 if (vmap.v_offset == 0) in do_sections64() 90 vmap.v_len, vmap.v_vaddr, vmap.v_offset)) in do_sections64() 104 struct vmap vmap; in do_sections() local 110 val = bfd_bread ((PTR) &vmap, (bfd_size_type) sizeof vmap, abfd); in do_sections() 111 if (val != sizeof vmap) in do_sections() 114 switch (vmap.v_type) in do_sections() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/bfd/ |
| H A D | irix-core.c | 72 struct vmap64 vmap; local 78 val = bfd_bread ((PTR) &vmap, (bfd_size_type) sizeof vmap, abfd); 79 if (val != sizeof vmap) 82 switch (vmap.v_type) 101 if (vmap.v_offset == 0) 106 vmap.v_len, vmap.v_vaddr, vmap.v_offset)) 122 struct vmap vmap; local 128 val = bfd_bread ((PTR) &vmap, (bfd_size_type) sizeof vmap, abfd); 129 if (val != sizeof vmap) 132 switch (vmap.v_type) [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | ValueSymbolTable.h | 63 ValueSymbolTable(int MaxNameSize = -1) : vmap(0), MaxNameSize(MaxNameSize) {} 78 return vmap.lookup(Name); in lookup() 83 inline bool empty() const { return vmap.empty(); } in empty() 86 inline unsigned size() const { return unsigned(vmap.size()); } in size() 98 inline iterator begin() { return vmap.begin(); } in begin() 101 inline const_iterator begin() const { return vmap.begin(); } in begin() 104 inline iterator end() { return vmap.end(); } in end() 107 inline const_iterator end() const { return vmap.end(); } in end() 135 ValueMap vmap; ///< The map that holds the symbol table. variable
|
| /openbsd-src/gnu/usr.bin/binutils/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 | 129 extern struct vmap *map_vmap (bfd * bf, bfd * arch); 135 static struct vmap *add_vmap (LdInfo *); 139 static void vmap_symtab (struct vmap *); 650 vmap_secs (struct vmap *vp, LdInfo *ldi, int arch64) in vmap_secs() 677 vmap_symtab (struct vmap *vp) in vmap_symtab() 728 vmap_add_symbols (struct vmap *vp) in vmap_add_symbols() 749 static struct vmap * 755 struct vmap *vp; in add_vmap() 824 if (vp == vmap || auto_solib_add) in add_vmap() 836 struct vmap *vp; in vmap_ldinfo() [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()
|
| H A D | exec.c | 50 struct vmap *map_vmap (bfd *, bfd *); 82 struct vmap *vmap; variable 95 struct vmap *vp, *nxt; in exec_close() 97 for (nxt = vmap; nxt != NULL;) in exec_close() 125 vmap = NULL; in exec_close() 236 if (vmap == NULL) in exec_file_attach() 378 struct vmap *vp; in bfdsec_to_vmap() 404 struct vmap * 408 struct vmap *vp, **vpp; in map_vmap() 410 vp = (struct vmap *) xmalloc (sizeof (*vp)); in map_vmap() [all …]
|
| H A D | ChangeLog-1997 | 1851 * xcoffsolib.h (struct vmap): Add new members tvma, toffs and dvma, 1853 * exec.c (bfdsec_to_vmap): Initialize new vmap members, initialize
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | ValueSymbolTable.cpp | 35 for (const auto &VI : vmap) in ~ValueSymbolTable() 39 assert(vmap.empty() && "Values remain in symbol table!"); in ~ValueSymbolTable() 64 auto IterBool = vmap.insert(std::make_pair(UniqueName.str(), V)); in makeUniqueName() 76 if (vmap.insert(V->getValueName())) { in reinsertValue() 96 vmap.remove(V); in removeValueName() 107 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName()
|
| /openbsd-src/lib/libpcap/ |
| H A D | optimize.c | 508 struct vmapinfo *vmap; variable 517 memset((char *)vmap, 0, maxval * sizeof(*vmap)); in init_val() 539 vmap[val].const_val = v0; in F() 540 vmap[val].is_const = 1; in F() 567 a = vmap[v0].const_val; in fold_op() 568 b = vmap[v1].const_val; in fold_op() 745 if (vmap[val].is_const) { in opt_peep() 748 b->s.k += vmap[val].const_val; in opt_peep() 804 if (vmap[val].is_const && BPF_SRC(b->s.code) == BPF_K) { in opt_peep() 805 bpf_int32 v = vmap[val].const_val; in opt_peep() [all …]
|
| /openbsd-src/sys/dev/pci/drm/include/linux/ |
| H A D | vmalloc.h | 27 void *vmap(struct vm_page **, unsigned int, unsigned long, pgprot_t);
|
| /openbsd-src/sys/dev/pci/drm/ |
| H A D | drm_memory.c | 95 addr = vmap(page_map, num_pages, VM_IOREMAP, PAGE_AGP); in agp_remap()
|
| H A D | drm_gem_dma_helper.c | 40 .vmap = drm_gem_dma_vmap,
|
| H A D | drm_gem.c | 1492 if (!obj->funcs->vmap) in drm_gem_vmap() 1495 ret = obj->funcs->vmap(obj, map); in drm_gem_vmap()
|
| H A D | drm_prime.c | 825 .vmap = drm_gem_dmabuf_vmap,
|
| H A D | drm_linux.c | 654 vmap(struct vm_page **pages, unsigned int npages, unsigned long flags, in vmap() function
|
| /openbsd-src/sys/dev/pci/drm/i915/gem/selftests/ |
| H A D | mock_dmabuf.c | 94 .vmap = mock_dmabuf_vmap,
|
| /openbsd-src/sys/dev/pci/drm/include/drm/ |
| H A D | drm_gem.h | 163 int (*vmap)(struct drm_gem_object *obj, struct iosys_map *map); member
|
| /openbsd-src/sys/dev/pci/drm/ttm/ |
| H A D | ttm_bo_util.c | 385 map->virtual = vmap(ttm->pages + start_page, num_pages, in ttm_bo_kmap_ttm() 541 vaddr = vmap(ttm->pages, ttm->num_pages, 0, prot); in ttm_bo_vmap()
|
| /openbsd-src/sys/dev/pci/drm/i915/gem/ |
| H A D | i915_gem_dmabuf.c | 218 .vmap = i915_gem_dmabuf_vmap,
|
| H A D | i915_gem_pages.c | 322 vaddr = vmap(pages, n_pages, 0, pgprot); in i915_gem_object_map_page()
|
| /openbsd-src/sys/dev/pci/drm/i915/gt/ |
| H A D | shmem_utils.c | 77 vaddr = vmap(pages, n_pages, VM_MAP_PUT_PAGES, PAGE_KERNEL); in shmem_pin_map()
|
| /openbsd-src/sys/dev/pci/drm/amd/amdgpu/ |
| H A D | amdgpu_dma_buf.c | 283 .vmap = drm_gem_dmabuf_vmap,
|
| H A D | amdgpu_gem.c | 386 .vmap = drm_gem_ttm_vmap,
|
| /openbsd-src/sys/dev/pci/drm/radeon/ |
| H A D | radeon_gem.c | 377 .vmap = drm_gem_ttm_vmap,
|