Home
last modified time | relevance | path

Searched refs:tempReg (Results 1 – 25 of 192) sorted by relevance

12345678

/dports/security/liboqs/liboqs-0.7.0/src/kem/sike/external/
H A Dconfig.h163 …digit_t tempReg = (addend1) + (digit_t)(carryIn); …
165 …(carryOut) = (is_digit_lessthan_ct(tempReg, (digit_t)(carryIn)) | is_digit_lessthan_ct((sumOut), t…
234 uint128_t tempReg = (uint128_t)(multiplier) * (uint128_t)(multiplicand); \
235 *(hi) = (digit_t)(tempReg >> RADIX); \
236 (lo) = (digit_t) tempReg; \
242 uint128_t tempReg = (uint128_t)(addend1) + (uint128_t)(addend2) + (uint128_t)(carryIn); \
243 (carryOut) = (digit_t)(tempReg >> RADIX); \
244 (sumOut) = (digit_t) tempReg; \
250 … uint128_t tempReg = (uint128_t)(minuend) - (uint128_t)(subtrahend) - (uint128_t)(borrowIn); \
251 … (borrowOut) = (digit_t)(tempReg >> (sizeof(uint128_t) * 8 - 1)); \
[all …]
/dports/security/s2n/s2n-tls-1.1.2/pq-crypto/sike_r1/
H A Dconfig_r1.h114 { digit_t tempReg = (addend1) + (digit_t)(carryIn); \
115 (sumOut) = (addend2) + tempReg; \
116 …(carryOut) = (is_digit_lessthan_ct(tempReg, (digit_t)(carryIn)) | is_digit_lessthan_ct((sumOut), t…
120 { digit_t tempReg = (minuend) - (subtrahend); \
121 …eg = (is_digit_lessthan_ct((minuend), (subtrahend)) | ((borrowIn) & is_digit_zero_ct(tempReg))); \
122 (differenceOut) = tempReg - (digit_t)(borrowIn); \
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/MIPS/ARM/
H A DArmCompLoadStore.cpp78 void ArmJit::SetCCAndR0ForSafeAddress(MIPSGPReg rs, s16 offset, ARMReg tempReg, bool reverse) { in SetCCAndR0ForSafeAddress() argument
83 MOVI2R(tempReg, BIT_SCRATCH | BIT_RAM | BIT_VRAM); in SetCCAndR0ForSafeAddress()
87 BIC(tempReg, tempReg, BIT_SCRATCH); in SetCCAndR0ForSafeAddress()
90 BIC(tempReg, tempReg, BIT_SCRATCH); in SetCCAndR0ForSafeAddress()
95 BIC(tempReg, tempReg, BIT_VRAM); in SetCCAndR0ForSafeAddress()
98 BIC(tempReg, tempReg, BIT_VRAM); in SetCCAndR0ForSafeAddress()
102 BIC(tempReg, tempReg, BIT_RAM); in SetCCAndR0ForSafeAddress()
105 BIC(tempReg, tempReg, BIT_RAM); in SetCCAndR0ForSafeAddress()
109 CMP(tempReg, 0); in SetCCAndR0ForSafeAddress()
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/MIPS/ARM/
H A DArmCompLoadStore.cpp78 void ArmJit::SetCCAndR0ForSafeAddress(MIPSGPReg rs, s16 offset, ARMReg tempReg, bool reverse) { in SetCCAndR0ForSafeAddress() argument
83 MOVI2R(tempReg, BIT_SCRATCH | BIT_RAM | BIT_VRAM); in SetCCAndR0ForSafeAddress()
87 BIC(tempReg, tempReg, BIT_SCRATCH); in SetCCAndR0ForSafeAddress()
90 BIC(tempReg, tempReg, BIT_SCRATCH); in SetCCAndR0ForSafeAddress()
95 BIC(tempReg, tempReg, BIT_VRAM); in SetCCAndR0ForSafeAddress()
98 BIC(tempReg, tempReg, BIT_VRAM); in SetCCAndR0ForSafeAddress()
102 BIC(tempReg, tempReg, BIT_RAM); in SetCCAndR0ForSafeAddress()
105 BIC(tempReg, tempReg, BIT_RAM); in SetCCAndR0ForSafeAddress()
109 CMP(tempReg, 0); in SetCCAndR0ForSafeAddress()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/MIPS/ARM/
H A DArmCompLoadStore.cpp78 void ArmJit::SetCCAndR0ForSafeAddress(MIPSGPReg rs, s16 offset, ARMReg tempReg, bool reverse) { in SetCCAndR0ForSafeAddress() argument
83 MOVI2R(tempReg, BIT_SCRATCH | BIT_RAM | BIT_VRAM); in SetCCAndR0ForSafeAddress()
87 BIC(tempReg, tempReg, BIT_SCRATCH); in SetCCAndR0ForSafeAddress()
90 BIC(tempReg, tempReg, BIT_SCRATCH); in SetCCAndR0ForSafeAddress()
95 BIC(tempReg, tempReg, BIT_VRAM); in SetCCAndR0ForSafeAddress()
98 BIC(tempReg, tempReg, BIT_VRAM); in SetCCAndR0ForSafeAddress()
102 BIC(tempReg, tempReg, BIT_RAM); in SetCCAndR0ForSafeAddress()
105 BIC(tempReg, tempReg, BIT_RAM); in SetCCAndR0ForSafeAddress()
109 CMP(tempReg, 0); in SetCCAndR0ForSafeAddress()
/dports/www/firefox-esr/firefox-91.8.0/js/src/jit/mips-shared/
H A DMoveEmitter-mips-shared.cpp47 Register MoveEmitterMIPSShared::tempReg() { in tempReg() function in MoveEmitterMIPSShared
69 masm.loadPtr(getAdjustedAddress(from), tempReg()); in emitMove()
70 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
78 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitMove()
79 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
105 masm.load32(getAdjustedAddress(from), tempReg()); in emitInt32Move()
106 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
114 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitInt32Move()
115 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
/dports/www/firefox/firefox-99.0/js/src/jit/mips-shared/
H A DMoveEmitter-mips-shared.cpp48 Register MoveEmitterMIPSShared::tempReg() { in tempReg() function in MoveEmitterMIPSShared
70 masm.loadPtr(getAdjustedAddress(from), tempReg()); in emitMove()
71 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
79 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitMove()
80 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
106 masm.load32(getAdjustedAddress(from), tempReg()); in emitInt32Move()
107 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
115 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitInt32Move()
116 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/jit/mips-shared/
H A DMoveEmitter-mips-shared.cpp54 MoveEmitterMIPSShared::tempReg()
77 masm.loadPtr(getAdjustedAddress(from), tempReg());
78 masm.storePtr(tempReg(), getAdjustedAddress(to));
86 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg());
87 masm.storePtr(tempReg(), getAdjustedAddress(to));
113 masm.load32(getAdjustedAddress(from), tempReg());
114 masm.store32(tempReg(), getAdjustedAddress(to));
122 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg());
123 masm.store32(tempReg(), getAdjustedAddress(to));
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/jit/mips-shared/
H A DMoveEmitter-mips-shared.cpp43 Register MoveEmitterMIPSShared::tempReg() { in tempReg() function in MoveEmitterMIPSShared
64 masm.loadPtr(getAdjustedAddress(from), tempReg()); in emitMove()
65 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
73 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitMove()
74 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
99 masm.load32(getAdjustedAddress(from), tempReg()); in emitInt32Move()
100 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
108 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitInt32Move()
109 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/jit/mips-shared/
H A DMoveEmitter-mips-shared.cpp47 Register MoveEmitterMIPSShared::tempReg() { in tempReg() function in MoveEmitterMIPSShared
69 masm.loadPtr(getAdjustedAddress(from), tempReg()); in emitMove()
70 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
78 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitMove()
79 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
105 masm.load32(getAdjustedAddress(from), tempReg()); in emitInt32Move()
106 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
114 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitInt32Move()
115 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/jit/mips-shared/
H A DMoveEmitter-mips-shared.cpp47 Register MoveEmitterMIPSShared::tempReg() { in tempReg() function in MoveEmitterMIPSShared
69 masm.loadPtr(getAdjustedAddress(from), tempReg()); in emitMove()
70 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
78 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitMove()
79 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
105 masm.load32(getAdjustedAddress(from), tempReg()); in emitInt32Move()
106 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
114 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitInt32Move()
115 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/jit/mips-shared/
H A DMoveEmitter-mips-shared.cpp54 MoveEmitterMIPSShared::tempReg() in tempReg() function in MoveEmitterMIPSShared
77 masm.loadPtr(getAdjustedAddress(from), tempReg()); in emitMove()
78 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
86 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitMove()
87 masm.storePtr(tempReg(), getAdjustedAddress(to)); in emitMove()
113 masm.load32(getAdjustedAddress(from), tempReg()); in emitInt32Move()
114 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
122 masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); in emitInt32Move()
123 masm.store32(tempReg(), getAdjustedAddress(to)); in emitInt32Move()
/dports/security/s2n/s2n-tls-1.1.2/pq-crypto/sike_r3/
H A Dsikep434r3.h137 { digit_t tempReg = (addend1) + (digit_t)(carryIn); \
138 (sumOut) = (addend2) + tempReg; \
139 …(carryOut) = (is_digit_lessthan_ct(tempReg, (digit_t)(carryIn)) | is_digit_lessthan_ct((sumOut), t…
143 { digit_t tempReg = (minuend) - (subtrahend); \
144 …eg = (is_digit_lessthan_ct((minuend), (subtrahend)) | ((borrowIn) & is_digit_zero_ct(tempReg))); \
145 (differenceOut) = tempReg - (digit_t)(borrowIn); \
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Video/Core/test/
H A DitkVideoStreamTest.cxx256 itk::TemporalRegion tempReg = video1->GetLargestPossibleTemporalRegion(); in itkVideoStreamTest() local
257 if (tempReg.GetFrameStart() != 0 || tempReg.GetFrameDuration() != 0) in itkVideoStreamTest()
323 tempReg.SetFrameStart(0); in itkVideoStreamTest()
324 tempReg.SetFrameDuration(1); in itkVideoStreamTest()
325 video1->SetLargestPossibleTemporalRegion(tempReg); in itkVideoStreamTest()
326 video1->SetRequestedTemporalRegion(tempReg); in itkVideoStreamTest()
327 video1->SetBufferedTemporalRegion(tempReg); in itkVideoStreamTest()
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/MIPS/ARM64/
H A DArm64CompLoadStore.cpp64 …ctor<FixupBranch> Arm64Jit::SetScratch1ForSafeAddress(MIPSGPReg rs, s16 offset, ARM64Reg tempReg) { in SetScratch1ForSafeAddress() argument
77 UBFX(tempReg, SCRATCH1, 8, 24 - 4); in SetScratch1ForSafeAddress()
79 CMPI2R(tempReg, PSP_GetUserMemoryEnd() >> 8); in SetScratch1ForSafeAddress()
83 CMPI2R(SCRATCH1, PSP_GetUserMemoryEnd(), tempReg); in SetScratch1ForSafeAddress()
84 UBFX(tempReg, SCRATCH1, 8, 24); in SetScratch1ForSafeAddress()
89 CMPI2R(tempReg, PSP_GetKernelMemoryBase() >> 8); in SetScratch1ForSafeAddress()
93 CMPI2R(tempReg, PSP_GetVidMemEnd() >> 8); in SetScratch1ForSafeAddress()
97 CMPI2R(tempReg, PSP_GetVidMemBase() >> 8); in SetScratch1ForSafeAddress()
101 CMPI2R(tempReg, PSP_GetScratchpadMemoryEnd() >> 8); in SetScratch1ForSafeAddress()
105 CMPI2R(tempReg, PSP_GetScratchpadMemoryBase() >> 8); in SetScratch1ForSafeAddress()
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/MIPS/ARM64/
H A DArm64CompLoadStore.cpp64 …ctor<FixupBranch> Arm64Jit::SetScratch1ForSafeAddress(MIPSGPReg rs, s16 offset, ARM64Reg tempReg) { in SetScratch1ForSafeAddress() argument
77 UBFX(tempReg, SCRATCH1, 8, 24 - 4); in SetScratch1ForSafeAddress()
79 CMPI2R(tempReg, PSP_GetUserMemoryEnd() >> 8); in SetScratch1ForSafeAddress()
83 CMPI2R(SCRATCH1, PSP_GetUserMemoryEnd(), tempReg); in SetScratch1ForSafeAddress()
84 UBFX(tempReg, SCRATCH1, 8, 24); in SetScratch1ForSafeAddress()
89 CMPI2R(tempReg, PSP_GetKernelMemoryBase() >> 8); in SetScratch1ForSafeAddress()
93 CMPI2R(tempReg, PSP_GetVidMemEnd() >> 8); in SetScratch1ForSafeAddress()
97 CMPI2R(tempReg, PSP_GetVidMemBase() >> 8); in SetScratch1ForSafeAddress()
101 CMPI2R(tempReg, PSP_GetScratchpadMemoryEnd() >> 8); in SetScratch1ForSafeAddress()
105 CMPI2R(tempReg, PSP_GetScratchpadMemoryBase() >> 8); in SetScratch1ForSafeAddress()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/MIPS/ARM64/
H A DArm64CompLoadStore.cpp64 …ctor<FixupBranch> Arm64Jit::SetScratch1ForSafeAddress(MIPSGPReg rs, s16 offset, ARM64Reg tempReg) { in SetScratch1ForSafeAddress() argument
77 UBFX(tempReg, SCRATCH1, 8, 24 - 4); in SetScratch1ForSafeAddress()
79 CMPI2R(tempReg, PSP_GetUserMemoryEnd() >> 8); in SetScratch1ForSafeAddress()
83 CMPI2R(SCRATCH1, PSP_GetUserMemoryEnd(), tempReg); in SetScratch1ForSafeAddress()
84 UBFX(tempReg, SCRATCH1, 8, 24); in SetScratch1ForSafeAddress()
89 CMPI2R(tempReg, PSP_GetKernelMemoryBase() >> 8); in SetScratch1ForSafeAddress()
93 CMPI2R(tempReg, PSP_GetVidMemEnd() >> 8); in SetScratch1ForSafeAddress()
97 CMPI2R(tempReg, PSP_GetVidMemBase() >> 8); in SetScratch1ForSafeAddress()
101 CMPI2R(tempReg, PSP_GetScratchpadMemoryEnd() >> 8); in SetScratch1ForSafeAddress()
105 CMPI2R(tempReg, PSP_GetScratchpadMemoryBase() >> 8); in SetScratch1ForSafeAddress()
/dports/games/libretro-scummvm/scummvm-7b1e929/audio/softsynth/opl/
H A Ddosbox.cpp253 int tempReg = 0; in writeReg() local
261 tempReg = _reg.normal; in writeReg()
279 if (_type == Config::kOpl3 && tempReg >= 0x100) { in writeReg()
280 write(0x222, tempReg & ~0x100); in writeReg()
282 write(0x388, tempReg); in writeReg()
/dports/games/residualvm/residualvm-0.3.1/audio/softsynth/opl/
H A Ddosbox.cpp253 int tempReg = 0; in writeReg() local
261 tempReg = _reg.normal; in writeReg()
279 if (_type == Config::kOpl3 && tempReg >= 0x100) { in writeReg()
280 write(0x222, tempReg & ~0x100); in writeReg()
282 write(0x388, tempReg); in writeReg()
/dports/games/scummvm/scummvm-2.5.1/audio/softsynth/opl/
H A Ddosbox.cpp263 int tempReg = 0; in writeReg() local
271 tempReg = _reg.normal; in writeReg()
289 if (_type == Config::kOpl3 && tempReg >= 0x100) { in writeReg()
290 write(0x222, tempReg & ~0x100); in writeReg()
292 write(0x388, tempReg); in writeReg()
/dports/lang/ferite/ferite-1.0.2/scripts/cgi/
H A Dtemplate.fe92 object tempReg;
99 tempReg = new Regexp( '{' + key + '}', 'gs' );
100 tempReg.replaceAll( pageOutput, content );
112 tempReg = new Regexp( '{' + key + '}', 'gs' );
113 tempReg.replaceAll( pageOutput, content );
/dports/www/firefox-esr/firefox-91.8.0/js/src/jit/mips64/
H A DMoveEmitter-mips64.cpp44 Register temp = tempReg(); in breakCycle()
55 Register temp = tempReg(); in breakCycle()
100 Register temp = tempReg(); in completeCycle()
112 Register temp = tempReg(); in completeCycle()
/dports/www/firefox/firefox-99.0/js/src/jit/mips64/
H A DMoveEmitter-mips64.cpp44 Register temp = tempReg(); in breakCycle()
55 Register temp = tempReg(); in breakCycle()
100 Register temp = tempReg(); in completeCycle()
112 Register temp = tempReg(); in completeCycle()
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/jit/mips64/
H A DMoveEmitter-mips64.cpp45 Register temp = tempReg();
56 Register temp = tempReg();
102 Register temp = tempReg();
114 Register temp = tempReg();
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/jit/mips64/
H A DMoveEmitter-mips64.cpp44 Register temp = tempReg(); in breakCycle()
55 Register temp = tempReg(); in breakCycle()
100 Register temp = tempReg(); in completeCycle()
112 Register temp = tempReg(); in completeCycle()

12345678