Searched refs:NumericParamValue (Results 1 - 2 of 2) sorted by relevance

/gem5/src/python/m5/
H A Dparams.py463 class NumericParamValue(ParamValue): class in inherits:ParamValue
466 return v.value if isinstance(v, NumericParamValue) else v
486 newobj.value *= NumericParamValue.unwrap(other)
494 newobj.value /= NumericParamValue.unwrap(other)
500 newobj.value //= NumericParamValue.unwrap(other)
507 newobj.value += NumericParamValue.unwrap(other)
513 newobj.value -= NumericParamValue.unwrap(other)
518 self.value += NumericParamValue.unwrap(other)
523 self.value -= NumericParamValue.unwrap(other)
528 self.value *= NumericParamValue
[all...]
H A Dproxy.py96 if not isinstance(multiplier, params.NumericParamValue):

Completed in 9 milliseconds