Lines Matching refs:oldp

181     void fullBit(vluint32_t* oldp, CData newval) { fullBit(oldp - this->oldp(0), newval); }  in fullBit()  argument
182 void fullCData(vluint32_t* oldp, CData newval, int bits) { in fullCData() argument
183 fullBus(oldp - this->oldp(0), newval, bits); in fullCData()
185 void fullSData(vluint32_t* oldp, SData newval, int bits) { in fullSData() argument
186 fullBus(oldp - this->oldp(0), newval, bits); in fullSData()
188 void fullIData(vluint32_t* oldp, IData newval, int bits) { in fullIData() argument
189 fullBus(oldp - this->oldp(0), newval, bits); in fullIData()
191 void fullQData(vluint32_t* oldp, QData newval, int bits) { in fullQData() argument
192 fullQuad(oldp - this->oldp(0), newval, bits); in fullQData()
194 void fullWData(vluint32_t* oldp, const WData* newvalp, int bits) { in fullWData() argument
195 fullArray(oldp - this->oldp(0), newvalp, bits); in fullWData()
197 void fullDouble(vluint32_t* oldp, double newval) { fullDouble(oldp - this->oldp(0), newval); } in fullDouble() argument
199 inline void chgBit(vluint32_t* oldp, CData newval) { chgBit(oldp - this->oldp(0), newval); } in chgBit() argument
200 inline void chgCData(vluint32_t* oldp, CData newval, int bits) { in chgCData() argument
201 chgBus(oldp - this->oldp(0), newval, bits); in chgCData()
203 inline void chgSData(vluint32_t* oldp, SData newval, int bits) { in chgSData() argument
204 chgBus(oldp - this->oldp(0), newval, bits); in chgSData()
206 inline void chgIData(vluint32_t* oldp, IData newval, int bits) { in chgIData() argument
207 chgBus(oldp - this->oldp(0), newval, bits); in chgIData()
209 inline void chgQData(vluint32_t* oldp, QData newval, int bits) { in chgQData() argument
210 chgQuad(oldp - this->oldp(0), newval, bits); in chgQData()
212 inline void chgWData(vluint32_t* oldp, const WData* newvalp, int bits) { in chgWData() argument
213 chgArray(oldp - this->oldp(0), newvalp, bits); in chgWData()
215 inline void chgDouble(vluint32_t* oldp, double newval) { in chgDouble() argument
216 chgDouble(oldp - this->oldp(0), newval); in chgDouble()
236 const vluint32_t diff = oldp(code)[0] ^ newval; in chgBit()
240 const vluint32_t diff = oldp(code)[0] ^ newval; in chgBus()
248 const vluint64_t diff = (*(reinterpret_cast<vluint64_t*>(oldp(code)))) ^ newval; in chgQuad()
257 if (VL_UNLIKELY(oldp(code)[word] ^ newvalp[word])) { in chgArray()
265 if (VL_UNLIKELY(*(reinterpret_cast<vluint64_t*>(oldp(code + 2 * word))) in chgArray()
273 const vluint32_t diff = ((oldp(code)[0] ^ newval) | (oldp(code)[1] ^ newtri)); in chgTriBit()
284 const vluint32_t diff = ((oldp(code)[0] ^ newval) | (oldp(code)[1] ^ newtri)); in chgTriBus()
293 const vluint64_t diff = (((*(reinterpret_cast<vluint64_t*>(oldp(code)))) ^ newval) in chgTriQuad()
294 | ((*(reinterpret_cast<vluint64_t*>(oldp(code + 1)))) ^ newtri)); in chgTriQuad()
304 if (VL_UNLIKELY((oldp(code)[word * 2] ^ newvalp[word]) in chgTriArray()
305 | (oldp(code)[word * 2 + 1] ^ newtrip[word]))) { in chgTriArray()
313 if (VL_UNLIKELY((*(reinterpret_cast<double*>(oldp(code)))) != newval)) { in chgDouble()