Home
last modified time | relevance | path

Searched refs:new_map (Results 1 – 12 of 12) sorted by relevance

/freebsd-11-stable/contrib/gcc/
HDc-lex.c214 fe_file_change (const struct line_map *new_map) in fe_file_change() argument
216 if (new_map == NULL) in fe_file_change()
219 if (new_map->reason == LC_ENTER) in fe_file_change()
223 if (!MAIN_FILE_P (new_map)) in fe_file_change()
226 int included_at = LAST_SOURCE_LINE_LOCATION (new_map - 1); in fe_file_change()
229 push_srcloc (new_map->start_location); in fe_file_change()
231 int included_at = LAST_SOURCE_LINE (new_map - 1); in fe_file_change()
234 push_srcloc (new_map->to_file, 1); in fe_file_change()
236 (*debug_hooks->start_source_file) (included_at, new_map->to_file); in fe_file_change()
240 else if (new_map->sysp == 2) in fe_file_change()
[all …]
HDc-opts.c1522 const struct line_map *new_map) in cb_file_change() argument
1525 pp_file_change (new_map); in cb_file_change()
1527 fe_file_change (new_map); in cb_file_change()
1529 if (new_map == 0 || (new_map->reason == LC_LEAVE && MAIN_FILE_P (new_map))) in cb_file_change()
HDipa-type-escape.c1632 bitmap new_map; in close_addressof_down() local
1655 new_map = BITMAP_ALLOC (&ipa_obstack); in close_addressof_down()
1660 bitmap_set_bit (new_map, i); in close_addressof_down()
1662 bitmap_ior_into (new_map, submap); in close_addressof_down()
1664 result->value = (splay_tree_value) new_map; in close_addressof_down()
1667 return new_map; in close_addressof_down()
HDChangeLog-20036952 * c-lex.c (fe_file_change): Handle a NULL new_map.
6978 (fe_file_change): Handle NULL new_map, and simplify.
HDChangeLog-200442291 Don't save new_map.
/freebsd-11-stable/lib/libc/x86/sys/
HD__vdso_gettc.c179 volatile char *new_map, *old_map; in __vdso_init_hpet() local
213 new_map = mmap(NULL, PAGE_SIZE, PROT_READ, MAP_SHARED, fd, 0); in __vdso_init_hpet()
216 (uintptr_t)old_map, (uintptr_t)new_map) == 0 && in __vdso_init_hpet()
217 new_map != MAP_FAILED) in __vdso_init_hpet()
218 munmap((void *)new_map, PAGE_SIZE); in __vdso_init_hpet()
/freebsd-11-stable/contrib/groff/src/devices/xditview/
HDfont.c312 DviFontMap *fm, *new_map; in ParseFontMap() local
331 new_map = (DviFontMap *) XtMalloc (sizeof *new_map); in ParseFontMap()
332 new_map->x_name = savestr (x_name); in ParseFontMap()
333 new_map->dvi_name = savestr (dvi_name); in ParseFontMap()
334 new_map->next = fm; in ParseFontMap()
335 fm = new_map; in ParseFontMap()
HDDvi.c355 char *new_map; in SetValues() local
362 new_map = XtMalloc (strlen (request->dvi.font_map_string) + 1); in SetValues()
363 if (new_map) { in SetValues()
365 strcpy (new_map, request->dvi.font_map_string); in SetValues()
366 new_wd->dvi.font_map_string = new_map; in SetValues()
/freebsd-11-stable/sys/vm/
HDvm_map.c3392 vm_map_t new_map, old_map; in vmspace_fork() local
3410 new_map = &vm2->vm_map; in vmspace_fork()
3411 locked = vm_map_trylock(new_map); /* trylock to silence WITNESS */ in vmspace_fork()
3498 new_entry = vm_map_entry_create(new_map); in vmspace_fork()
3513 vm_map_entry_link(new_map, new_map->header.prev, in vmspace_fork()
3520 pmap_copy(new_map->pmap, old_map->pmap, in vmspace_fork()
3530 new_entry = vm_map_entry_create(new_map); in vmspace_fork()
3541 vm_map_entry_link(new_map, new_map->header.prev, in vmspace_fork()
3544 vm_map_copy_entry(old_map, new_map, old_entry, in vmspace_fork()
3553 new_entry = vm_map_entry_create(new_map); in vmspace_fork()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
HDClangASTImporter.cpp807 NamespaceMapSP new_map; in BuildNamespaceMap() local
809 new_map = std::make_shared<NamespaceMap>(); in BuildNamespaceMap()
815 new_map, ConstString(namespace_string.c_str()), parent_map); in BuildNamespaceMap()
818 context_md->m_namespace_maps[decl] = new_map; in BuildNamespaceMap()
/freebsd-11-stable/contrib/binutils/bfd/
HDarchive.c1859 struct orl *new_map; in _bfd_compute_and_write_armap() local
1866 new_map = bfd_realloc (map, amt); in _bfd_compute_and_write_armap()
1867 if (new_map == NULL) in _bfd_compute_and_write_armap()
1870 map = new_map; in _bfd_compute_and_write_armap()
/freebsd-11-stable/sys/netpfil/ipfw/
HDip_fw_sockopt.c386 swap_map(struct ip_fw_chain *chain, struct ip_fw **new_map, int new_len) in swap_map() argument
394 chain->map = new_map; in swap_map()