Searched refs:flags (Results 151 - 175 of 226) sorted by relevance

12345678910

/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbutils.h95 std::ios::fmtflags flags = os.flags() & std::ios::basefield; local
96 if ( flags & ::std::ios::dec ) return SC_DEC;
97 if ( flags & ::std::ios::hex ) return SC_HEX;
98 if ( flags & ::std::ios::oct ) return SC_OCT;
105 return (os.flags() & ::std::ios::showbase) != 0 ;
/gem5/src/systemc/ext/dt/int/
H A Dsc_nbutils.hh95 std::ios::fmtflags flags = os.flags() & std::ios::basefield; local
96 if (flags & ::std::ios::dec) return SC_DEC;
97 if (flags & ::std::ios::hex) return SC_HEX;
98 if (flags & ::std::ios::oct) return SC_OCT;
105 return (os.flags() & ::std::ios::showbase) != 0;
/gem5/src/arch/x86/
H A Dpagetable_walker.cc521 Request::Flags flags = oldRead->req->getFlags(); local
522 flags.set(Request::UNCACHEABLE, uncacheable);
524 nextRead, oldRead->getSize(), flags, walker->masterId);
588 Request::Flags flags = Request::PHYSICAL; local
590 flags.set(Request::UNCACHEABLE);
593 topAddr, dataSize, flags, walker->masterId);
/gem5/src/mem/ruby/system/
H A DSequencer.cc591 uint32_t flags = pkt->req->getFlags(); local
592 storeCheck = flags &
711 .flags(Stats::nozero);
715 .flags(Stats::nozero);
719 .flags(Stats::nozero);
723 .flags(Stats::nozero);
/gem5/src/arch/arm/insts/
H A Dpred_inst.hh352 flags[IsMacroop] = true;
387 flags[IsMicroop] = true;
393 if (flags[IsLastMicroop])
/gem5/src/dev/net/
H A Di8254xGBe.hh177 void anBegin(std::string sm, std::string st, int flags = CPA::FL_NONE) {
179 cpa->hwBegin((CPA::flags)flags, sys, macAddr, sm, st);
/gem5/src/arch/arm/linux/
H A Datag.hh97 void flags(uint32_t i) { storage[2] = i; } function in class:AtagCore
206 u32 flags;
229 u32 flags;
/gem5/src/arch/alpha/linux/
H A Dlinux.hh77 /// This table maps the target open() flags to the corresponding
78 /// host open() flags.
202 archClone(uint64_t flags, argument
/gem5/src/kern/linux/
H A Dhelpers.cc55 uint8_t flags; member in struct:DmesgEntry
/gem5/src/arch/arm/tracers/
H A Dtarmac_parser.hh148 unsigned flags);
/gem5/src/sim/
H A Dsystem.cc480 ios::fmtflags flags(cerr.flags());
489 cerr.flags(flags);
H A Dsyscall_emul.cc735 * flags since an update to such a field won't be reflected in the metadata
817 // Rely on the host to maintain the file status flags for this file
820 // maintain the flags by tracking them across the different descriptors
873 int flags = 0; local
879 flags = p->getSyscallArg(tc, index);
924 // pipe2 has additional behavior if flags != 0
925 if (is_pipe2 && flags) {
927 // if flags set to anything else, return EINVAL
928 if ((flags != O_CLOEXEC) && (flags !
1399 int flags = p->getSyscallArg(tc, index); local
1464 int flags = p->getSyscallArg(tc, index); local
1500 int flags = p->getSyscallArg(tc, index); local
1641 int flags = p->getSyscallArg(tc, index); local
[all...]
H A Dprocess.cc145 Process *np, RegVal flags)
156 if (CLONE_VM & flags) {
187 if (CLONE_FILES & flags) {
199 * host file descriptors are also dup'd so that the flags for the
227 if (CLONE_THREAD & flags) {
144 clone(ThreadContext *otc, ThreadContext *ntc, Process *np, RegVal flags) argument
H A Dfd_array.cc298 FDArray::openFile(std::string const& filename, int flags, mode_t mode) const argument
300 int sim_fd = open(filename.c_str(), flags, mode);
H A Dcxx_manager.cc52 configFile(configFile_), flags(configFile_.getFlags()),
308 param_values, flags))
330 flags))
683 if (!params->setParam(param_name, param_value, flags)) {
701 if (!params->setParamVector(param_name, param_values, flags)) {
/gem5/src/python/pybind11/
H A Dstats.cc114 .def_property_readonly("flags", [](const Stats::Info &info) {
115 return (Stats::FlagsType)info.flags;
/gem5/src/base/
H A Dstatistics.cc114 info()->flags.set(init);
161 : flags(none), precision(-1), prereq(0), storageParams(NULL)
259 if (!(flags & Stats::init)) {
270 if ((flags & display) && name.empty()) {
H A Dcp_annotate.cc192 int flags = args[2]; local
193 if (flags & FL_LINK) {
331 uint32_t flags = args[0]; local
332 if (flags & FL_BAD)
361 int flags)
387 add(OP_BEGIN, flags, cpuid, smi, sti);
617 int flags = args[3]; local
628 if (FL_RESET & flags) {
839 DPRINTF(AnnotateVerbose, "Annotate: op: %d flags: 0x%x sm: %d state: %d time: %d, data: %d\n",
980 CPA::doQ(System *sys, int flags, in argument
360 swBegin(System *sys, int cpuid, std::string st, uint64_t frame, bool expl, int flags) argument
1001 doDq(System *sys, int flags, int cpuid, int sm, string q, int qi, int count) argument
[all...]
/gem5/src/base/stats/
H A Dinfo.hh35 #include "base/flags.hh"
65 /** Mask of flags that can't be set directly */
80 /** The formatting flags. */
81 Flags flags; member in class:Stats::Info
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc1535 // Saves the Google Test flags such that we can restore them later, and
1558 // Restores the Google Test flags that the tests have modified. This will
1565 // Verifies that the Google Test flags have their default values, and then
1602 // For saving Google Test flags during this test case.
1611 // Modifies the Google Test flags in the test body.
1616 // Verifies that the Google Test flags in the body of the previous test were
5455 // The Flags struct stores a copy of all Google Test flags.
5478 Flags flags; local
5479 flags.also_run_disabled_tests = also_run_disabled_tests;
5480 return flags;
5486 Flags flags; local
5494 Flags flags; local
5502 Flags flags; local
5510 Flags flags; local
5518 Flags flags; local
5526 Flags flags; local
5534 Flags flags; local
5542 Flags flags; local
5550 Flags flags; local
5558 Flags flags; local
5566 Flags flags; local
5574 Flags flags; local
5582 Flags flags; local
5935 Flags flags; local
[all...]
/gem5/util/stats/
H A Doutput.py79 if group.flags.graph_group:
82 elif group.flags.graph_bars:
/gem5/src/mem/qos/
H A Dmem_ctrl.cc293 .flags(nozero | nonan).precision(2);
298 "queued values").flags(nozero | nonan);
/gem5/src/arch/x86/linux/
H A Dlinux.hh50 archClone(uint64_t flags, argument
57 if (flags & TGT_CLONE_SETTLS) {
/gem5/src/cpu/checker/
H A Dcpu.hh545 * @param flags Request flags.
553 Request::Flags flags,
558 Request::Flags flags,
563 Request::Flags flags, uint64_t *res,
568 Request::Flags flags, AtomicOpFunctorPtr amo_op) override
594 Addr pAddr, int flags);
/gem5/src/gpu-compute/
H A Dgpu_tlb.cc657 uint32_t flags = req->getFlags(); local
658 int seg = flags & SegmentFlagMask;
705 uint32_t flags = req->getFlags(); local
706 int seg = flags & SegmentFlagMask;
707 bool storeCheck = flags & (StoreCheck << FlagShift);
756 bool sizeOverride = (flags & (AddrSizeFlagBit << FlagShift));
838 !(flags & (CPL0FlagBit << FlagShift)));
1129 uint32_t flags = pkt->req->getFlags(); local
1130 bool storeCheck = flags & (StoreCheck << FlagShift);
1133 bool inUser = (m5Reg.cpl == 3 && !(flags
[all...]

Completed in 79 milliseconds

12345678910