Searched defs:CurrWritePtr (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Variable/RuntimeDxe/
H A DVariable.c185 UINTN CurrWritePtr; local
243 CurrWritePtr = (UINTN) DataPtr;
248 if (CurrWritePtr < LinearOffset) {
258 if ((CurrWritePtr >= LinearOffset) && (CurrWritePtr < LinearOffset + PtrBlockMapEntry->Length)) {
259 if ((CurrWritePtr + CurrWriteSize) <= (LinearOffset + PtrBlockMapEntry->Length)) {
263 (UINTN) (CurrWritePtr - LinearOffset),
269 Size = (UINT32) (LinearOffset + PtrBlockMapEntry->Length - CurrWritePtr);
273 (UINTN) (CurrWritePtr - LinearOffset),
281 CurrWritePtr
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
H A DVariable.c141 UINTN CurrWritePtr; local
204 CurrWritePtr = StartAddress;
209 if (CurrWritePtr < LinearOffset) {
214 // Traverse data blocks of this firmware storage to find the one where CurrWritePtr locates
218 if ((CurrWritePtr >= LinearOffset) && (CurrWritePtr < LinearOffset + PtrBlockMapEntry->Length)) {
222 if ((CurrWritePtr + CurrWriteSize) <= (LinearOffset + PtrBlockMapEntry->Length)) {
233 (CurrWritePtr - LinearOffset),
246 (CurrWritePtr - LinearOffset),
258 Size = (UINT32) (LinearOffset + PtrBlockMapEntry->Length - CurrWritePtr);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/RuntimeDxe/
H A DVariable.c185 UINTN CurrWritePtr; local
245 CurrWritePtr = (UINTN) DataPtr;
250 if (CurrWritePtr < LinearOffset) {
260 if ((CurrWritePtr >= LinearOffset) && (CurrWritePtr < LinearOffset + PtrBlockMapEntry->Length)) {
261 if ((CurrWritePtr + CurrWriteSize) <= (LinearOffset + PtrBlockMapEntry->Length)) {
265 (UINTN) (CurrWritePtr - LinearOffset),
271 Size = (UINT32) (LinearOffset + PtrBlockMapEntry->Length - CurrWritePtr);
275 (UINTN) (CurrWritePtr - LinearOffset),
283 CurrWritePtr
[all...]

Completed in 38 milliseconds