Searched refs:val (Results 76 - 100 of 315) sorted by relevance

1234567891011>>

/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test05/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test06/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test07/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test08/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test09/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test10/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test11/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test12/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test13/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test14/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test15/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test16/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/test17/
H A Ddefine.h46 #define set_value(var,val) wait(); var = val; wait()
/gem5/src/arch/arm/
H A Disa_device.hh73 * @param val Value to store
75 virtual void setMiscReg(int misc_reg, RegVal val) = 0;
103 void setMiscReg(int misc_reg, RegVal val) override;
/gem5/src/cpu/o3/
H A Dthread_context.hh262 const LaneData<LaneSize::Byte>& val) override
264 return setVecLaneFlat(flattenRegId(reg).index(), reg.elemIndex(), val);
268 const LaneData<LaneSize::TwoByte>& val) override
270 return setVecLaneFlat(flattenRegId(reg).index(), reg.elemIndex(), val);
274 const LaneData<LaneSize::FourByte>& val) override
276 return setVecLaneFlat(flattenRegId(reg).index(), reg.elemIndex(), val);
280 const LaneData<LaneSize::EightByte>& val) override
282 return setVecLaneFlat(flattenRegId(reg).index(), reg.elemIndex(), val);
313 setIntReg(RegIndex reg_idx, RegVal val) override
315 setIntRegFlat(flattenRegId(RegId(IntRegClass, reg_idx)).index(), val);
334 setVecElemFlat(flattenRegId(reg).index(), reg.elemIndex(), val); variable
471 setVecLaneFlat(int idx, int lId, const LD& val) argument
[all...]
H A Dregfile.hh247 setVecLane(PhysRegIdPtr phys_reg, const LD& val) argument
252 int(phys_reg->index()), phys_reg->elemIndex(), val);
255 phys_reg->elemIndex()) = val;
264 const VecElem& val = ret[phys_reg->elemIndex()]; local
267 int(phys_reg->index()), val);
269 return val;
305 setIntReg(PhysRegIdPtr phys_reg, RegVal val) argument
310 phys_reg->index(), val);
313 intRegFile[phys_reg->index()] = val;
317 setFloatReg(PhysRegIdPtr phys_reg, RegVal val) argument
330 setVecReg(PhysRegIdPtr phys_reg, const VecRegContainer& val) argument
342 setVecElem(PhysRegIdPtr phys_reg, const VecElem val) argument
354 setVecPredReg(PhysRegIdPtr phys_reg, const VecPredRegContainer& val) argument
366 setCCReg(PhysRegIdPtr phys_reg, RegVal val) argument
[all...]
H A Ddyn_inst_impl.hh76 Tick val; local
85 val = (this->decodeTick == -1) ? 0 : fetch + this->decodeTick;
86 DPRINTFR(O3PipeView, "O3PipeView:decode:%llu\n", val);
87 val = (this->renameTick == -1) ? 0 : fetch + this->renameTick;
88 DPRINTFR(O3PipeView, "O3PipeView:rename:%llu\n", val);
89 val = (this->dispatchTick == -1) ? 0 : fetch + this->dispatchTick;
90 DPRINTFR(O3PipeView, "O3PipeView:dispatch:%llu\n", val);
91 val = (this->issueTick == -1) ? 0 : fetch + this->issueTick;
92 DPRINTFR(O3PipeView, "O3PipeView:issue:%llu\n", val);
93 val
[all...]
/gem5/src/arch/sparc/
H A Disa.cc386 ISA::setMiscRegNoEffect(int miscReg, RegVal val) argument
390 // y = val;
393 // ccr = val;
396 asi = val;
399 fprs = val;
402 tick = val;
409 gsr = val;
412 softint = val;
415 tick_cmpr = val;
418 stick = val;
567 setMiscReg(int miscReg, RegVal val, ThreadContext * tc) argument
[all...]
/gem5/src/cpu/
H A Dexec_context.hh93 int idx, RegVal val) = 0;
110 int idx, RegVal val) = 0;
127 const VecRegContainer& val) = 0;
151 const LaneData<LaneSize::Byte>& val) = 0;
153 const LaneData<LaneSize::TwoByte>& val) = 0;
155 const LaneData<LaneSize::FourByte>& val) = 0;
157 const LaneData<LaneSize::EightByte>& val) = 0;
168 const VecElem val) = 0;
184 const VecPredRegContainer& val) = 0;
193 const StaticInst *si, int idx, RegVal val)
[all...]
H A Dthread_context.hh236 const LaneData<LaneSize::Byte>& val) = 0;
238 const LaneData<LaneSize::TwoByte>& val) = 0;
240 const LaneData<LaneSize::FourByte>& val) = 0;
242 const LaneData<LaneSize::EightByte>& val) = 0;
253 virtual void setIntReg(RegIndex reg_idx, RegVal val) = 0;
255 virtual void setFloatReg(RegIndex reg_idx, RegVal val) = 0;
257 virtual void setVecReg(const RegId& reg, const VecRegContainer& val) = 0;
259 virtual void setVecElem(const RegId& reg, const VecElem& val) = 0;
262 const VecPredRegContainer& val) = 0;
264 virtual void setCCReg(RegIndex reg_idx, RegVal val)
271 setNPC(Addr val) argument
[all...]
H A Dsimple_thread.hh374 setVecLaneT(const RegId &reg, const LD &val)
378 setVecLaneFlat(flatIndex, reg.elemIndex(), val);
380 reg.index(), flatIndex, reg.elemIndex(), val);
383 setVecLane(const RegId &reg, const LaneData<LaneSize::Byte> &val) override
385 return setVecLaneT(reg, val);
389 const LaneData<LaneSize::TwoByte> &val) override
391 return setVecLaneT(reg, val);
395 const LaneData<LaneSize::FourByte> &val) override
397 return setVecLaneT(reg, val);
401 const LaneData<LaneSize::EightByte> &val) overrid
579 setMemAccPredicate(bool val) argument
647 setVecLaneFlat(RegIndex reg, int lId, const LD &val) argument
[all...]
/gem5/ext/libfdt/
H A Dlibfdt.h141 static inline void fdt_set_##name(void *fdt, uint32_t val) \
144 fdth->name = cpu_to_fdt32(val); \
812 * @val: pointer to data to replace the property value with
816 * the data in val, of length len. This function cannot change the
836 const void *val, int len);
843 * @val: 32-bit integer value to replace the property with
846 * with the 32-bit integer value in val, converting val to big-endian
867 const char *name, uint32_t val)
869 fdt32_t tmp = cpu_to_fdt32(val);
866 fdt_setprop_inplace_u32(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
901 fdt_setprop_inplace_u64(void *fdt, int nodeoffset, const char *name, uint64_t val) argument
913 fdt_setprop_inplace_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
978 fdt_property_u32(void *fdt, const char *name, uint32_t val) argument
983 fdt_property_u64(void *fdt, const char *name, uint64_t val) argument
988 fdt_property_cell(void *fdt, const char *name, uint32_t val) argument
1138 fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
1173 fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, uint64_t val) argument
1185 fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
1280 fdt_appendprop_u32(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
1315 fdt_appendprop_u64(void *fdt, int nodeoffset, const char *name, uint64_t val) argument
1327 fdt_appendprop_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
[all...]
/gem5/src/systemc/core/
H A Dsc_time.cc66 sc_time::sc_time() : val(0) {}
70 val = 0;
76 val = t.val;
91 val = 0;
112 val = t.val;
119 return val;
125 return static_cast<double>(val);
144 return val
[all...]
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_fxnum.cpp392 double val = scale * c; local
394 double frac_part = modf( val, &int_part );
400 val = int_part;
407 val -= 1.0;
413 val += 1.0;
415 val -= 1.0;
425 val += 1.0;
427 val -= 1.0;
434 val += 1.0;
437 val
487 double val = c; local
[all...]
/gem5/src/systemc/dt/fx/
H A Dsc_fxnum.cc355 double val = scale * c; local
357 double frac_part = modf(val, &int_part);
362 val = int_part;
368 val -= 1.0;
374 val += 1.0;
376 val -= 1.0;
386 val += 1.0;
388 val -= 1.0;
395 val += 1.0;
398 val
445 double val = c; local
[all...]

Completed in 30 milliseconds

1234567891011>>