Searched defs:fIntSaved (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Runtime/generic/
H A Dspinlock-generic.cpp72 uint32_t volatile fIntSaved; member in struct:RTSPINLOCKINTERNAL
93 pThis->fIntSaved = 0;
132 uint32_t fIntSaved = ASMGetFlags(); local
146 pThis->fIntSaved = fIntSaved;
153 ASMSetFlags(fIntSaved);
166 pThis->fIntSaved = fIntSaved;
171 ASMSetFlags(fIntSaved);
208 uint32_t fIntSaved local
[all...]
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dspinlock-r0drv-darwin.cpp58 uint32_t volatile fIntSaved; member in struct:RTSPINLOCKINTERNAL
86 pThis->fIntSaved = 0;
136 uint32_t fIntSaved = ASMGetFlags(); local
139 pThis->fIntSaved = fIntSaved;
154 uint32_t fIntSaved = pThis->fIntSaved; local
155 pThis->fIntSaved = 0;
157 ASMSetFlags(fIntSaved);
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dspinlock-r0drv-haiku.c60 cpu_status volatile fIntSaved; member in struct:RTSPINLOCKINTERNAL
85 pSpinlockInt->fIntSaved = 0;
124 pSpinlockInt->fIntSaved = disable_interrupts();
136 restore_interrupts(pSpinlockInt->fIntSaved);
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dspinlock-r0drv-linux.c60 unsigned long volatile fIntSaved; member in struct:RTSPINLOCKINTERNAL
91 pThis->fIntSaved = 0;
138 unsigned long fIntSaved; local
139 spin_lock_irqsave(&pThis->Spinlock, fIntSaved);
140 pThis->fIntSaved = fIntSaved;
166 unsigned long fIntSaved = pThis->fIntSaved; local
167 pThis->fIntSaved = 0;
168 spin_unlock_irqrestore(&pThis->Spinlock, fIntSaved);
[all...]
/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dspinlock-r0drv-freebsd.c62 uint32_t volatile fIntSaved; member in struct:RTSPINLOCKINTERNAL
94 pThis->fIntSaved = 0;
134 uint32_t fIntSaved = ASMIntDisableFlags(); local
143 pThis->fIntSaved = fIntSaved;
152 ASMSetFlags(fIntSaved);
194 uint32_t fIntSaved = pThis->fIntSaved; local
195 pThis->fIntSaved = 0;
197 ASMSetFlags(fIntSaved);
[all...]
/vbox/src/VBox/Runtime/r0drv/nt/
H A Dspinlock-r0drv-nt.cpp77 RTCCUINTREG volatile fIntSaved; member in struct:RTSPINLOCKINTERNAL
105 pThis->fIntSaved = 0;
143 RTCCUINTREG fIntSaved = ASMGetFlags(); local
153 RTCCUINTREG fIntSaved = ASMGetFlags();
162 pThis->fIntSaved = fIntSaved;
179 RTCCUINTREG fIntSaved = pThis->fIntSaved; local
180 pThis->fIntSaved = 0;
184 ASMSetFlags(fIntSaved);
[all...]
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dspinlock-r0drv-solaris.c60 uint32_t volatile fIntSaved; member in struct:RTSPINLOCKINTERNAL
92 pThis->fIntSaved = 0;
133 uint32_t fIntSaved = ASMIntDisableFlags(); local
149 pThis->fIntSaved = fIntSaved;
180 uint32_t fIntSaved = pThis->fIntSaved; local
181 pThis->fIntSaved = 0;
186 ASMSetFlags(fIntSaved);

Completed in 62 milliseconds