Searched refs:old (Results 1 - 25 of 28) sorted by relevance

12

/gem5/ext/libelf/
H A Delf_errno.c35 int old; local
37 old = LIBELF_PRIVATE(error);
39 return (old & LIBELF_ELF_ERROR_MASK);
H A Delf_version.c33 unsigned int old; local
35 if ((old = LIBELF_PRIVATE(version)) == EV_NONE)
36 old = EV_CURRENT;
39 return old;
46 return (old);
/gem5/src/sim/
H A Dport.hh132 takeOverFrom(Port *old) argument
134 assert(old);
135 assert(old->isConnected());
137 Port &peer = old->getPeer();
141 old->unbind();
/gem5/ext/systemc/src/sysc/qt/
H A Dstp.c104 static void *stp_starthelp (qt_t *old, void *ignore0, void *ignore1);
106 static void *stp_aborthelp (qt_t *sp, void *old, void *null);
107 static void *stp_yieldhelp (qt_t *sp, void *old, void *blockq);
130 stp_starthelp (qt_t *old, void *ignore0, void *ignore1)
132 stp_global_main.sp = old;
166 stp_t *old, *newthread;
169 old = stp_global_curr;
171 QT_ABORT (stp_aborthelp, old, (void *)NULL, newthread->sp);
176 stp_aborthelp (qt_t *sp, void *old, void *null)
178 free (((stp_t *)old)
127 stp_starthelp(qt_t *old, void *ignore0, void *ignore1) argument
163 stp_t *old, *newthread; local
173 stp_aborthelp(qt_t *sp, void *old, void *null) argument
184 stp_t *old, *newthread; local
194 stp_yieldhelp(qt_t *sp, void *old, void *blockq) argument
[all...]
H A Dmeas.c100 t_null (qt_t *old, void *p1, void *p2) argument
107 t_splat (qt_t *old, void *oldp, void *null) argument
109 *(qt_t **)oldp = old;
175 test02_aux2 (qt_t *old, void *farg1, void *farg2) argument
177 rootthread = old;
227 test03_aux1 (qt_t *old, void *farg1, void *farg2) argument
229 assert (old != NULL);
232 rootthread = old;
H A Dqt.h158 typedef void *(qt_helper_t)(qt_t *old, void *a0, void *a1);
/gem5/src/dev/virtio/
H A Dvirtio_ring.h151 * we have just incremented index from old to new_idx,
153 static inline int vring_need_event(uint16_t event_idx, uint16_t new_idx, uint16_t old) argument
160 return (uint16_t)(new_idx - event_idx - 1) < (uint16_t)(new_idx - old);
/gem5/util/cpt_upgraders/
H A Darm-hdlcd-upgrade.py79 for new, old in option_names.items():
80 options[new] = cpt.get(sec, old)
/gem5/src/arch/x86/
H A Ddecoder.hh286 void takeOverFrom(Decoder *old) argument
288 mode = old->mode;
289 submode = old->submode;
292 altOp = old->altOp;
293 defOp = old->defOp;
294 altAddr = old->altAddr;
295 defAddr = old->defAddr;
296 stack = old->stack;
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_report_handler.cpp450 sc_actions old = sev_actions[severity_]; local
452 return old;
463 sc_actions old = md->actions; local
466 return old;
478 sc_actions old = md->sev_actions[severity_]; local
481 return old;
486 int old = sev_limit[severity_]; local
490 return old;
500 int old = md->limit_mask & 1 ? md->limit: UINT_MAX;
509 return old;
522 int old = md->limit_mask & mask ? md->sev_limit[severity_]: UINT_MAX; local
536 sc_actions old = suppress_mask; local
548 sc_actions old = force_mask; local
561 sc_report_handler_proc old = handler; local
[all...]
/gem5/src/arch/alpha/
H A Ddecoder.hh87 void takeOverFrom(Decoder * old) {} argument
/gem5/src/arch/power/
H A Ddecoder.hh94 void takeOverFrom(Decoder *old) {} argument
/gem5/src/arch/mips/
H A Ddecoder.hh87 void takeOverFrom(Decoder *old) {} argument
/gem5/src/arch/riscv/
H A Ddecoder.hh75 void takeOverFrom(Decoder *old) {} argument
/gem5/src/arch/arm/
H A Ddecoder.hh193 * Take over the state from an old decoder when switching CPUs.
195 * @param old Decoder used in old CPU
197 void takeOverFrom(Decoder *old) {} argument
/gem5/src/arch/sparc/
H A Ddecoder.hh101 void takeOverFrom(Decoder *old) {} argument
/gem5/site_scons/site_tools/
H A Dmercurial.py56 in .hg/hgrc.old.
84 hgrc_old = hgdir.File('hgrc.old')
108 old, new = open(hgrc_old.abspath, 'r'), open(hgrc.abspath, 'w')
109 for l in old:
/gem5/util/style/
H A Drepo.py142 old = self.file_from_head(self.repo_path(fname)).split("\n")
145 return modified_regions(old, new, context=context)
151 old = self.file_from_head(self.repo_path(fname)).split("\n")
154 return modified_regions(old, new, context=context)
232 old = self.file_from_tip(fname).split("\n")
235 return modified_regions(old, new, context=context)
H A Dverifiers.py93 def _modified_regions(old, new):
95 m = SequenceMatcher(a=old, b=new, autojunk=False)
98 # mechanism to support old Python versions.
99 m = SequenceMatcher(a=old, b=new)
355 old = [ l.rstrip('\n') for l in fobj.xreadlines() ]
359 if len(old) == 0:
362 language = lang_type(filename, old[0])
363 new = list(self.sort_includes(old, norm_fname, language))
365 modified = _modified_regions(old, new) & regions
382 old
[all...]
H A Dstyle.py147 def modified_regions(old, new, context=0):
149 m = difflib.SequenceMatcher(a=old, b=new, autojunk=False)
/gem5/ext/libfdt/
H A Dfdt_rw.c373 static void _fdt_packblocks(const char *old, char *new, argument
382 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size);
385 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size);
389 memmove(new + strings_off, old + fdt_off_dt_strings(old),
390 fdt_size_dt_strings(old));
392 fdt_set_size_dt_strings(new, fdt_size_dt_strings(old));
439 /* But if that overlaps with the old tre
[all...]
/gem5/ext/pybind11/include/pybind11/
H A Diostream.h104 std::streambuf *old; member in class:scoped_ostream_redirect
113 old = costream.rdbuf(&buffer);
117 costream.rdbuf(old);
/gem5/ext/nomali/
H A DMakefile23 $(error Default GCC version is too old. Please use gcc 4.7 or newer.)
/gem5/tests/
H A Ddiff-out172 # pct_diff($old, $new) returns percent difference from $old to $new.
176 my ($old, $new) = @_;
177 return ($old == 0) ? (($new == 0) ? 0 : 9999) : 100 * ($new - $old) / $old;
/gem5/src/mem/cache/prefetch/
H A Daccess_map_pattern_matching.cc122 enum AccessMapState old = entry.states[block]; local
128 switch (old) {

Completed in 33 milliseconds

12