/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
D | CodeFragment.py | 28 def __init__(self, Str, Begin, End, CommentType): argument 31 self.EndPos = End 45 def __init__(self, Str, Begin, End): argument 48 self.EndPos = End 61 def __init__(self, Lvalue, Op, Exp, Begin, End): argument 66 self.EndPos = End 79 def __init__(self, Str, Begin, End): argument 82 self.EndPos = End 96 def __init__(self, ModifierStr, DeclStr, Begin, End, LBPos, NamePos): argument 100 self.EndPos = End [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
D | CodeFragment.py | 28 def __init__(self, Str, Begin, End, CommentType): argument 31 self.EndPos = End 45 def __init__(self, Str, Begin, End): argument 48 self.EndPos = End 61 def __init__(self, Str, Begin, End): argument 64 self.EndPos = End 78 def __init__(self, ModifierStr, DeclStr, Begin, End, LBPos, NamePos): argument 82 self.EndPos = End 114 def __init__(self, Str, Begin, End): argument 117 self.EndPos = End [all …]
|
D | MetaDataParser.py | 262 End = len(Comment) 263 while Start < End and Comment.startswith(CommentCharacter, Start, End): 265 while End >= 0 and Comment.endswith(CommentCharacter, Start, End): 266 End -= 1 267 Comment = Comment[Start:End]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/ |
D | DscFile.c | 158 char *End; in DSCParseInclude() local 245 for (End = Start; *End && (*End != '"'); End++) in DSCParseInclude() 247 if (*End != '"') { in DSCParseInclude() 253 *End = 0; in DSCParseInclude() 311 End = Start; in DSCParseInclude() 312 while (*End && (*End != ']') && !isspace (*End) && (*End != ',') && (*End != '|')) { in DSCParseInclude() 313 End++; in DSCParseInclude() 318 SaveChar = *End; in DSCParseInclude() 319 *End = 0; in DSCParseInclude() 358 *End = SaveChar; in DSCParseInclude() [all …]
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/ |
D | EdbSupportString.c | 573 CHAR16 *End; in StrTokenLine() local 586 End = StrBrk (Begin, CharSet); in StrTokenLine() 587 if ((End != NULL) && (*End != L'\0')) { in StrTokenLine() 588 *End = L'\0'; in StrTokenLine() 589 End ++; in StrTokenLine() 592 mLineBuffer = End; in StrTokenLine() 612 CHAR16 *End; in StrTokenField() local 625 End = StrBrk (Begin, CharSet); in StrTokenField() 626 if ((End != NULL) && (*End != L'\0')) { in StrTokenField() 627 *End = L'\0'; in StrTokenField() [all …]
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/PlatformBdsLib/ |
D | BdsPlatform.h | 210 EFI_DEVICE_PATH_PROTOCOL End; 220 EFI_DEVICE_PATH_PROTOCOL End; 225 EFI_DEVICE_PATH_PROTOCOL End; 230 EFI_DEVICE_PATH_PROTOCOL End; 236 EFI_DEVICE_PATH_PROTOCOL End; 243 EFI_DEVICE_PATH_PROTOCOL End; member 252 EFI_DEVICE_PATH_PROTOCOL End; 260 EFI_DEVICE_PATH_PROTOCOL End; 270 EFI_DEVICE_PATH_PROTOCOL End; 280 EFI_DEVICE_PATH_PROTOCOL End; [all …]
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/ |
D | Page.c | 34 UINT64 End; member 210 IN UINT64 End, in InsertNewEntry() argument 226 Entry->End = End; in InsertNewEntry() 273 EFI_PHYSICAL_ADDRESS End; in ConvertSmmMemoryMapEntry() local 276 End = Memory + EFI_PAGES_TO_SIZE(NumberOfPages) - 1; in ConvertSmmMemoryMapEntry() 296 if (Entry->Start > End) { in ConvertSmmMemoryMapEntry() 297 if ((Entry->Start == End + 1) && (Entry->Type == Type)) { in ConvertSmmMemoryMapEntry() 304 End, in ConvertSmmMemoryMapEntry() 312 if ((Entry->Start <= Start) && (Entry->End >= End)) { in ConvertSmmMemoryMapEntry() 334 if (Entry->End > End) { in ConvertSmmMemoryMapEntry() [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/ |
D | msvc.dsp | 83 # End Source File 84 # End Group 92 # End Source File 97 # End Source File 101 # End Source File 105 # End Source File 109 # End Source File 114 # End Source File 119 # End Source File 123 # End Source File [all …]
|
/device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/ |
D | SyncTimer.c | 38 UINT64 End; in InitializeSmmTimer() local 40 TimerFrequency = GetPerformanceCounterProperties (&Start, &End); in InitializeSmmTimer() 45 if (End < Start) { in InitializeSmmTimer() 47 mCycle = Start - End; in InitializeSmmTimer() 50 mCycle = End - Start; in InitializeSmmTimer()
|
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/ |
D | TcpOutput.c | 161 ASSERT (TCP_SEQ_GEQ (TCPSEG_NETBUF (Nbuf)->End, Tcb->SndNxt)); in TcpGetMaxSndNxt() 162 return TCPSEG_NETBUF (Nbuf)->End; in TcpGetMaxSndNxt() 340 TCP_SEQ_BETWEEN (Seg->Seq, Tcb->SndPsh, Seg->End) in TcpTransmitSegment() 346 } else if ((Seg->End == Tcb->SndNxt) && (GET_SND_DATASIZE (Tcb->Sk) == 0)) { in TcpTransmitSegment() 361 if (TCP_SEQ_LT (Tcb->SndUp, Seg->End)) { in TcpTransmitSegment() 416 TCP_SEQNO End; in TcpGetSegmentSndQue() local 436 if (TCP_SEQ_LT (Seq, Seg->End) && TCP_SEQ_LEQ (Seg->Seq, Seq)) { in TcpGetSegmentSndQue() 451 TCP_SEQ_LEQ (Seg->End, Seg->Seq + Len) && in TcpGetSegmentSndQue() 471 End = Seg->End; in TcpGetSegmentSndQue() 473 if (TCP_SEQ_LT (Seq + Len, Seg->End)) { in TcpGetSegmentSndQue() [all …]
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/ |
D | Tcp4Output.c | 165 ASSERT (TCP_SEQ_GEQ (TCPSEG_NETBUF (Nbuf)->End, Tcb->SndNxt)); in TcpGetMaxSndNxt() 166 return TCPSEG_NETBUF (Nbuf)->End; in TcpGetMaxSndNxt() 346 TCP_SEQ_BETWEEN (Seg->Seq, Tcb->SndPsh, Seg->End)) { in TcpTransmitSegment() 351 } else if ((Seg->End == Tcb->SndNxt) && in TcpTransmitSegment() 368 if (TCP_SEQ_LT (Tcb->SndUp, Seg->End)) { in TcpTransmitSegment() 424 TCP_SEQNO End; in TcpGetSegmentSndQue() local 444 if (TCP_SEQ_LT (Seq, Seg->End) && TCP_SEQ_LEQ (Seg->Seq, Seq)) { in TcpGetSegmentSndQue() 459 TCP_SEQ_LEQ (Seg->End, Seg->Seq + Len) && in TcpGetSegmentSndQue() 478 End = Seg->End; in TcpGetSegmentSndQue() 480 if (TCP_SEQ_LT (Seq + Len, Seg->End)) { in TcpGetSegmentSndQue() [all …]
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/Tpm12DeviceLibAtmelI2c/ |
D | TisPc.c | 169 UINT64 End; in Tpm12RequestUseTpm() local 183 End = 0; in Tpm12RequestUseTpm() 193 GetPerformanceCounterProperties (&Start, &End), in Tpm12RequestUseTpm() 198 Cycle = End - Start; in Tpm12RequestUseTpm() 213 if (Start > End) { in Tpm12RequestUseTpm() 270 UINT64 End; in Tpm12SubmitCommand() local 292 End = 0; in Tpm12SubmitCommand() 302 GetPerformanceCounterProperties (&Start, &End), in Tpm12SubmitCommand() 307 Cycle = End - Start; in Tpm12SubmitCommand() 322 if (Start > End) { in Tpm12SubmitCommand() [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/ |
D | pcctslib50.dsp | 54 # End Special Build Tool 81 # End Special Build Tool 92 # End Source File 96 # End Source File 100 # End Source File 104 # End Source File 108 # End Source File 112 # End Source File 116 # End Source File 117 # End Target [all …]
|
D | pcctslib60.dsp | 58 # End Special Build Tool 87 # End Special Build Tool 98 # End Source File 102 # End Source File 106 # End Source File 110 # End Source File 114 # End Source File 118 # End Source File 122 # End Source File 123 # End Target [all …]
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/ |
D | Page.c | 169 IN EFI_PHYSICAL_ADDRESS End, in CoreAddRange() argument 177 ASSERT (End > Start) ; in CoreAddRange() 181 DEBUG ((DEBUG_PAGE, "AddRange: %lx-%lx to %d\n", Start, End, Type)); in CoreAddRange() 192 if (Type == EfiConventionalMemory && Start == 0 && (End >= EFI_PAGE_SIZE - 1)) { in CoreAddRange() 233 if (Entry->End + 1 == Start) { in CoreAddRange() 238 } else if (Entry->Start == End + 1) { in CoreAddRange() 240 End = Entry->End; in CoreAddRange() 253 mMapStack[mMapDepth].End = End; in CoreAddRange() 538 EFI_PHYSICAL_ADDRESS End; in CoreAddMemoryDescriptor() local 551 End = Start + LShiftU64 (NumberOfPages, EFI_PAGE_SHIFT) - 1; in CoreAddMemoryDescriptor() [all …]
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1616/D05AcpiTables/ |
D | D05Mcfg.aslc | 61 0x87, //End Bus Number 69 0x8f, //End Bus Number 77 0x7, //End Bus Number 85 0xc7, //End Bus Number 93 0x97, //End Bus Number 101 0x1f, //End Bus Number 109 0x2f, //End Bus Number 117 0x3f, //End Bus Number
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/NonDiscoverableDeviceRegistrationLib/ |
D | NonDiscoverableDeviceRegistrationLib.c | 80 EFI_DEVICE_PATH_PROTOCOL End; member 125 EFI_ACPI_END_TAG_DESCRIPTOR *End; in RegisterNonDiscoverableMmioDevice() local 171 End = (EFI_ACPI_END_TAG_DESCRIPTOR *)&Device->Resources [NumMmioResources]; in RegisterNonDiscoverableMmioDevice() 173 End->Desc = ACPI_END_TAG_DESCRIPTOR; in RegisterNonDiscoverableMmioDevice() 174 End->Checksum = 0; in RegisterNonDiscoverableMmioDevice() 195 sizeof (*DevicePath) - sizeof (DevicePath->End)); in RegisterNonDiscoverableMmioDevice() 196 SetDevicePathEndNode (&DevicePath->End); in RegisterNonDiscoverableMmioDevice()
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/ |
D | Mtftp4Support.c | 30 IN UINT16 End in Mtftp4AllocateRange() argument 43 Range->End = End; in Mtftp4AllocateRange() 44 Range->Bound = End; in Mtftp4AllocateRange() 75 IN UINT16 End in Mtftp4InitBlockRange() argument 80 Range = Mtftp4AllocateRange (Start, End); in Mtftp4InitBlockRange() 147 if (Range->End > Last) { in Mtftp4SetLastBlockNum() 148 Range->End = Last; in Mtftp4SetLastBlockNum() 189 if (Range->End < Num) { in Mtftp4RemoveBlockNum() 234 if ((Range->Start > Range->End) || Completed) { in Mtftp4RemoveBlockNum() 242 if (Range->End == Num) { in Mtftp4RemoveBlockNum() [all …]
|
/device/linaro/bootloader/edk2/DuetPkg/Library/DuetBdsLib/ |
D | BdsPlatform.h | 169 EFI_DEVICE_PATH_PROTOCOL End; member 176 EFI_DEVICE_PATH_PROTOCOL End; member 185 EFI_DEVICE_PATH_PROTOCOL End; member 191 EFI_DEVICE_PATH_PROTOCOL End; member 200 EFI_DEVICE_PATH_PROTOCOL End; member 212 EFI_DEVICE_PATH_PROTOCOL End; member
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/Xml/ |
D | XmlRoutines.py | 74 End = len(TagList) - 1 75 while Index <= End: 79 if Index < End: 109 End = len(TagList) - 1 111 while Index <= End: 114 if Index < End:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/Xml/ |
D | XmlRoutines.py | 78 End = len(TagList) - 1 79 while Index <= End: 84 if Index < End: 112 End = len(TagList) - 1 114 while Index <= End: 118 if Index < End:
|
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Xcode/xcode_project64/xcode_project.xcodeproj/ |
D | project.pbxproj | 17 /* End PBXGroup section */ 34 /* End PBXLegacyTarget section */ 56 /* End PBXProject section */ 100 /* End XCBuildConfiguration section */ 121 /* End XCConfigurationList section */
|
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Xcode/xcode_project32/xcode_project.xcodeproj/ |
D | project.pbxproj | 17 /* End PBXGroup section */ 34 /* End PBXLegacyTarget section */ 56 /* End PBXProject section */ 100 /* End XCBuildConfiguration section */ 121 /* End XCConfigurationList section */
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/ |
D | Synchronization.c | 108 UINT64 Start, End; in AcquireSpinLock() local 113 End = 0; in AcquireSpinLock() 118 GetPerformanceCounterProperties (&Start, &End), in AcquireSpinLock() 123 if (Start < End) { in AcquireSpinLock() 132 ASSERT ((Start < End) ^ (Tick <= GetPerformanceCounter ())); in AcquireSpinLock()
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/ |
D | DecParserMisc.py | 175 if Par.End(): 177 while not Par.End(): 182 if Par.End(): 187 return Par.End() 199 if Par.End(): 201 while not Par.End(): 209 if Par.End(): 219 return Par.End() 310 def End(self): member in ParserHelper
|