Lines Matching refs:intSave
61 UINT32 intSave;
62 __asm__ volatile("mfcr %0, psr" : "=r" (intSave) : : "memory");
63 return intSave;
66 UINT32 HalSetVbr(UINT32 intSave)
68 __asm__ volatile("mtcr %0, vbr" : : "r"(intSave) : "memory");
69 return intSave;
74 UINT32 intSave;
78 : "=r"(intSave)
81 return intSave;
86 UINT32 intSave;
90 : "=r"(intSave)
93 return intSave;
96 VOID ArchIntRestore(UINT32 intSave)
98 __asm__ __volatile__("mtcr %0, psr" : : "r"(intSave));
103 UINT32 intSave;
104 __asm__ volatile("mfcr %0, psr" : "=r" (intSave) : : "memory");
105 return !(intSave & (1 << INT_OFFSET));
110 UINT32 intSave;
112 intSave = LOS_IntLock();
115 LOS_IntRestore(intSave);
122 UINT32 intSave;
124 intSave = LOS_IntLock();
126 LOS_IntRestore(intSave);
133 UINT32 intSave;
135 intSave = LOS_IntLock();
137 LOS_IntRestore(intSave);
144 UINT32 intSave;
146 intSave = LOS_IntLock();
148 LOS_IntRestore(intSave);
204 UINT32 intSave;
206 intSave = LOS_IntLock();
208 LOS_IntRestore(intSave);
228 intSave = LOS_IntLock();
233 LOS_IntRestore(intSave);