HomeSort by relevance Sort by last modified time
    Searched refs:PtrBuf (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
ParseUpdateProfile.c 43 UINT8 *PtrBuf;
46 PtrBuf = Buffer;
52 while ((UINTN)PtrBuf < PtrEnd) {
53 if (*PtrBuf == 0x0D) {
56 PtrBuf++;
59 if ((UINTN)PtrBuf >= (PtrEnd - 1)) {
65 } else if (*(PtrBuf + 1) == 0x0A) {
69 Length = (UINTN) PtrBuf - (UINTN) Buffer + 2;
71 Length = (UINTN) PtrBuf - (UINTN) Buffer + 1;
102 UINT8 *PtrBuf;
    [all...]
  /device/linaro/bootloader/edk2/SignedCapsulePkg/Library/IniParsingLib/
IniParsingLib.c 352 UINT8 *PtrBuf;
355 PtrBuf = Buffer;
361 while ((UINTN)PtrBuf < PtrEnd) {
362 if (*PtrBuf == 0x0D || *PtrBuf == 0x0A) {
365 PtrBuf++;
368 if ((UINTN)PtrBuf >= (PtrEnd - 1)) {
374 } else if (*(PtrBuf + 1) == 0x0A) {
378 Length = (UINTN) PtrBuf - (UINTN) Buffer + 2;
380 Length = (UINTN) PtrBuf - (UINTN) Buffer + 1;
    [all...]

Completed in 1505 milliseconds