HomeSort by: relevance | last modified time | path
    Searched defs:new_map (Results 1 - 24 of 24) sorted by relevancy

  /src/external/gpl3/gdb/dist/sim/ppc/
cap.c 106 cap_mapping *new_map = ZALLOC(cap_mapping); local
107 new_map->next = db->mappings;
108 new_map->internal = internal;
110 new_map->external = db->nr_mappings;
111 db->mappings = new_map;
  /src/external/gpl3/gdb.old/dist/sim/ppc/
cap.c 106 cap_mapping *new_map = ZALLOC(cap_mapping); local
107 new_map->next = db->mappings;
108 new_map->internal = internal;
110 new_map->external = db->nr_mappings;
111 db->mappings = new_map;
  /src/external/gpl3/gdb.old/dist/sim/common/
hw-handles.c 170 struct hw_handle_mapping *new_map = ZALLOC (struct hw_handle_mapping); local
171 new_map->next = db->mappings;
172 new_map->ihandle = internal;
174 new_map->external = db->nr_mappings;
175 db->mappings = new_map;
192 struct hw_handle_mapping *new_map = ZALLOC (struct hw_handle_mapping); local
193 new_map->next = db->mappings;
194 new_map->phandle = internal;
196 new_map->external = db->nr_mappings;
197 db->mappings = new_map;
    [all...]
  /src/external/gpl3/gdb/dist/sim/common/
hw-handles.c 170 struct hw_handle_mapping *new_map = ZALLOC (struct hw_handle_mapping); local
171 new_map->next = db->mappings;
172 new_map->ihandle = internal;
174 new_map->external = db->nr_mappings;
175 db->mappings = new_map;
192 struct hw_handle_mapping *new_map = ZALLOC (struct hw_handle_mapping); local
193 new_map->next = db->mappings;
194 new_map->phandle = internal;
196 new_map->external = db->nr_mappings;
197 db->mappings = new_map;
    [all...]
  /src/lib/libcurses/
getch.c 484 keymap_t *new_map; local
486 if ((new_map = malloc(sizeof(keymap_t))) == NULL) {
492 new_map->count = 0;
494 new_map->mapping[i] = MAPPING_UNUSED; /* no mapping for char */
498 new_map->key = NULL;
500 return new_map;
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_cotable.c 396 struct ttm_bo_kmap_obj old_map, new_map; local
444 ret = ttm_bo_kmap(bo, i, 1, &new_map);
449 memcpy(ttm_kmap_obj_virtual(&new_map, &dummy),
452 ttm_bo_kunmap(&new_map);
  /src/external/gpl2/gettext/dist/gettext-runtime/intl/
localealias.c 394 struct alias_map *new_map; local
397 new_map = (struct alias_map *) realloc (map, (new_size
399 if (new_map == NULL)
403 map = new_map;
  /src/external/gpl2/grep/dist/intl/
localealias.c 363 struct alias_map *new_map; local
366 new_map = (struct alias_map *) realloc (map, (new_size
368 if (new_map == NULL)
372 map = new_map;
  /src/external/gpl2/groff/dist/src/devices/xditview/
Dvi.c 357 char *new_map; local
364 new_map = XtMalloc (strlen (request->dvi.font_map_string) + 1);
365 if (new_map) {
367 strcpy (new_map, request->dvi.font_map_string);
368 new_wd->dvi.font_map_string = new_map;
font.c 314 DviFontMap *fm, *new_map; local
333 new_map = (DviFontMap *) XtMalloc (sizeof *new_map);
334 new_map->x_name = savestr (x_name);
335 new_map->dvi_name = savestr (dvi_name);
336 new_map->next = fm;
337 fm = new_map;
  /src/external/gpl2/texinfo/dist/intl/
localealias.c 373 struct alias_map *new_map; local
376 new_map = (struct alias_map *) realloc (map, (new_size
378 if (new_map == NULL)
382 map = new_map;
  /src/external/gpl3/gcc.old/dist/intl/
localealias.c 374 struct alias_map *new_map; local
377 new_map = (struct alias_map *) realloc (map, (new_size
379 if (new_map == NULL)
383 map = new_map;
  /src/usr.sbin/sysinst/arch/mac68k/
md.c 80 struct apple_part_map_entry new_map[] = variable in typeref:struct:apple_part_map_entry
177 * XXX this code is broken: it accesses off the end of new_map[],
179 * entries in new_map[]. Based on the description of struct
181 * new_map[], NEW_MAP_SIZE is expected to be a block count, not an
185 * Note that nothing uses the data this writes into new_map[] so
193 new_map[i].pmPyPartStart = new_map[i-1].pmPyPartStart +
194 new_map[i-1].pmPartBlkCnt;
195 new_map[i].pmDataCnt = new_map[i].pmPartBlkCnt
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
df-core.cc 1894 int *new_map;
1905 new_map = df_compute_cfg_image ();
1906 gcc_assert (memcmp (saved_cfg, new_map, saved_cfg[0] * sizeof (int)) == 0);
1907 free (new_map);
1892 int *new_map; local
  /src/external/gpl3/gcc.old/dist/gcc/
df-core.cc 1878 int *new_map;
1889 new_map = df_compute_cfg_image ();
1890 gcc_assert (memcmp (saved_cfg, new_map, saved_cfg[0] * sizeof (int)) == 0);
1891 free (new_map);
1876 int *new_map; local
  /src/sys/uvm/
uvm_map.c 4418 uvm_mapent_clone(struct vm_map *new_map, struct vm_map_entry *old_entry,
4423 new_entry = uvm_mapent_alloc(new_map, 0);
4443 /* insert entry at end of new_map's entry list */
4444 uvm_map_entry_link(new_map, new_map->header.prev,
4455 uvm_mapent_forkshared(struct vm_map *new_map, struct vm_map *old_map,
4472 uvm_mapent_clone(new_map, old_entry, AMAP_SHARED);
4477 uvm_mapent_forkcopy(struct vm_map *new_map, struct vm_map *old_map,
4490 new_entry = uvm_mapent_clone(new_map, old_entry, 0);
4531 amap_copy(new_map, new_entry
4630 struct vm_map *new_map; local
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
archive.c 2422 struct orl *new_map;
2429 new_map = (struct orl *) bfd_realloc (map, amt);
2430 if (new_map == NULL)
2433 map = new_map;
2413 struct orl *new_map; local
vms-lib.c 2090 struct lib_index *new_map; local
2096 new_map = (struct lib_index *)
2098 if (new_map == NULL)
2100 map = new_map;
  /src/external/gpl3/binutils.old/dist/bfd/
archive.c 2411 struct orl *new_map;
2418 new_map = (struct orl *) bfd_realloc (map, amt);
2419 if (new_map == NULL)
2422 map = new_map;
2402 struct orl *new_map; local
vms-lib.c 2086 struct lib_index *new_map; local
2092 new_map = (struct lib_index *)
2094 if (new_map == NULL)
2096 map = new_map;
  /src/external/gpl3/gdb.old/dist/bfd/
vms-lib.c 2086 struct lib_index *new_map; local
2092 new_map = (struct lib_index *)
2094 if (new_map == NULL)
2096 map = new_map;
archive.c 2402 struct orl *new_map;
2409 new_map = (struct orl *) bfd_realloc (map, amt);
2410 if (new_map == NULL)
2413 map = new_map;
2393 struct orl *new_map; local
  /src/external/gpl3/gdb/dist/bfd/
archive.c 2412 struct orl *new_map;
2419 new_map = (struct orl *) bfd_realloc (map, amt);
2420 if (new_map == NULL)
2423 map = new_map;
2403 struct orl *new_map; local
vms-lib.c 2086 struct lib_index *new_map; local
2092 new_map = (struct lib_index *)
2094 if (new_map == NULL)
2096 map = new_map;

Completed in 58 milliseconds