/device/linaro/bootloader/edk2/BaseTools/Source/Python/ |
D | Makefile | 37 COMMON_PYTHON=$(BASE_TOOLS_PATH)\Source\Python\Common\BuildToolError.py \ 38 $(BASE_TOOLS_PATH)\Source\Python\Common\Database.py \ 39 $(BASE_TOOLS_PATH)\Source\Python\Common\DataType.py \ 40 $(BASE_TOOLS_PATH)\Source\Python\Common\DecClassObject.py \ 41 $(BASE_TOOLS_PATH)\Source\Python\Common\Dictionary.py \ 42 $(BASE_TOOLS_PATH)\Source\Python\Common\DscClassObject.py \ 43 $(BASE_TOOLS_PATH)\Source\Python\Common\EdkIIWorkspace.py \ 44 $(BASE_TOOLS_PATH)\Source\Python\Common\EdkIIWorkspaceBuild.py \ 45 $(BASE_TOOLS_PATH)\Source\Python\Common\EdkLogger.py \ 46 $(BASE_TOOLS_PATH)\Source\Python\Common\Expression.py \ [all …]
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/ |
D | SafeString.c | 188 IN CONST CHAR16 *Source in StrCpyS() argument 194 ASSERT (((UINTN) Source & BIT0) == 0); in StrCpyS() 200 SAFE_STRING_CONSTRAINT_CHECK ((Source != NULL), RETURN_INVALID_PARAMETER); in StrCpyS() 217 SourceLen = StrnLenS (Source, DestMax); in StrCpyS() 223 …T_CHECK (InternalSafeStringNoStrOverlap (Destination, DestMax, (CHAR16 *)Source, SourceLen + 1), R… in StrCpyS() 229 while (*Source != 0) { in StrCpyS() 230 *(Destination++) = *(Source++); in StrCpyS() 272 IN CONST CHAR16 *Source, in StrnCpyS() argument 279 ASSERT (((UINTN) Source & BIT0) == 0); in StrnCpyS() 285 SAFE_STRING_CONSTRAINT_CHECK ((Source != NULL), RETURN_INVALID_PARAMETER); in StrnCpyS() [all …]
|
D | String.c | 48 IN CONST CHAR16 *Source in StrCpy() argument 62 ASSERT ((UINTN)(Destination - Source) > StrLen (Source)); in StrCpy() 63 ASSERT ((UINTN)(Source - Destination) > StrLen (Source)); in StrCpy() 66 while (*Source != 0) { in StrCpy() 67 *(Destination++) = *(Source++); in StrCpy() 109 IN CONST CHAR16 *Source, in StrnCpy() argument 128 ASSERT ((UINTN)(Destination - Source) > StrLen (Source)); in StrnCpy() 129 ASSERT ((UINTN)(Source - Destination) >= Length); in StrnCpy() 137 while ((*Source != L'\0') && (Length > 0)) { in StrnCpy() 138 *(Destination++) = *(Source++); in StrnCpy() [all …]
|
/device/linaro/bootloader/edk2/BaseTools/ |
D | .gitignore | 8 Source/C/VfrCompile/EfiVfrParser.cpp 9 Source/C/VfrCompile/EfiVfrParser.h 10 Source/C/VfrCompile/Pccts/antlr/antlr 11 Source/C/VfrCompile/Pccts/dlg/dlg 12 Source/C/VfrCompile/VfrLexer.cpp 13 Source/C/VfrCompile/VfrLexer.h 14 Source/C/VfrCompile/VfrParser.dlg 15 Source/C/VfrCompile/VfrSyntax.cpp 16 Source/C/VfrCompile/VfrTokens.h 17 Source/C/bin/ [all …]
|
D | Makefile | 14 SUBDIRS = Source\C Source\Python 19 @Source\C\Makefiles\NmakeSubdirs.bat all Source\C 22 @Source\C\Makefiles\NmakeSubdirs.bat all Source\Python 25 @Source\C\Makefiles\NmakeSubdirs.bat all $** 29 @Source\C\Makefiles\NmakeSubdirs.bat clean $(SUBDIRS) 33 @Source\C\Makefiles\NmakeSubdirs.bat cleanall $(SUBDIRS)
|
/device/linaro/bootloader/edk2/Omap35xxPkg/InterruptDxe/ |
D | HardwareInterrupt.c | 79 IN HARDWARE_INTERRUPT_SOURCE Source, in RegisterInterruptSource() argument 83 if (Source > MAX_VECTOR) { in RegisterInterruptSource() 88 if ((MmioRead32 (INTCPS_ILR(Source)) & INTCPS_ILR_FIQ) == INTCPS_ILR_FIQ) { in RegisterInterruptSource() 96 if ((Handler == NULL) && (gRegisteredInterruptHandlers[Source] == NULL)) { in RegisterInterruptSource() 100 if ((Handler != NULL) && (gRegisteredInterruptHandlers[Source] != NULL)) { in RegisterInterruptSource() 104 gRegisteredInterruptHandlers[Source] = Handler; in RegisterInterruptSource() 105 return This->EnableInterruptSource(This, Source); in RegisterInterruptSource() 123 IN HARDWARE_INTERRUPT_SOURCE Source in EnableInterruptSource() argument 129 if (Source > MAX_VECTOR) { in EnableInterruptSource() 134 Bank = Source / 32; in EnableInterruptSource() [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/ |
D | String.c | 52 IN CONST CHAR16 *Source in GlueStrCpy() argument 66 ASSERT ((UINTN)(Destination - Source) > StrLen (Source)); in GlueStrCpy() 67 ASSERT ((UINTN)(Source - Destination) > StrLen (Source)); in GlueStrCpy() 70 while (*Source) { in GlueStrCpy() 71 *(Destination++) = *(Source++); in GlueStrCpy() 112 IN CONST CHAR16 *Source, in GlueStrnCpy() argument 132 ASSERT ((UINTN)(Destination - Source) > StrLen (Source)); in GlueStrnCpy() 133 ASSERT ((UINTN)(Source - Destination) >= Length); in GlueStrnCpy() 137 while ((*Source != L'\0') && (Length > 0)) { in GlueStrnCpy() 138 *(Destination++) = *(Source++); in GlueStrnCpy() [all …]
|
/device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/ |
D | ArmGicLib.c | 29 IN UINTN Source in SourceIsSpi() argument 32 return Source >= 32 && Source < 1020; in SourceIsSpi() 166 IN UINTN Source in ArmGicEndOfInterrupt() argument 173 ArmGicV2EndOfInterrupt (GicInterruptInterfaceBase, Source); in ArmGicEndOfInterrupt() 175 ArmGicV3EndOfInterrupt (Source); in ArmGicEndOfInterrupt() 186 IN UINTN Source in ArmGicEnableInterrupt() argument 195 RegOffset = Source / 32; in ArmGicEnableInterrupt() 196 RegShift = Source % 32; in ArmGicEnableInterrupt() 201 SourceIsSpi (Source)) { in ArmGicEnableInterrupt() 221 IN UINTN Source in ArmGicDisableInterrupt() argument [all …]
|
D | ArmGicCommonDxe.c | 61 IN HARDWARE_INTERRUPT_SOURCE Source, in RegisterInterruptSource() argument 65 if (Source >= mGicNumInterrupts) { in RegisterInterruptSource() 70 if ((Handler == NULL) && (gRegisteredInterruptHandlers[Source] == NULL)) { in RegisterInterruptSource() 74 if ((Handler != NULL) && (gRegisteredInterruptHandlers[Source] != NULL)) { in RegisterInterruptSource() 78 gRegisteredInterruptHandlers[Source] = Handler; in RegisterInterruptSource() 82 return This->DisableInterruptSource (This, Source); in RegisterInterruptSource() 84 return This->EnableInterruptSource (This, Source); in RegisterInterruptSource()
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/ |
D | msvc.dsp | 80 # Begin Source File 83 # End Source File 85 # Begin Group "Source files" 88 # Begin Source File 92 # End Source File 93 # Begin Source File 97 # End Source File 98 # Begin Source File 101 # End Source File 102 # Begin Source File [all …]
|
/device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/GicV2/ |
D | ArmGicV2Dxe.c | 50 IN HARDWARE_INTERRUPT_SOURCE Source in GicV2EnableInterruptSource() argument 53 if (Source >= mGicNumInterrupts) { in GicV2EnableInterruptSource() 58 ArmGicEnableInterrupt (mGicDistributorBase, 0, Source); in GicV2EnableInterruptSource() 77 IN HARDWARE_INTERRUPT_SOURCE Source in GicV2DisableInterruptSource() argument 80 if (Source >= mGicNumInterrupts) { in GicV2DisableInterruptSource() 85 ArmGicDisableInterrupt (mGicDistributorBase, 0, Source); in GicV2DisableInterruptSource() 105 IN HARDWARE_INTERRUPT_SOURCE Source, in GicV2GetInterruptSourceState() argument 109 if (Source >= mGicNumInterrupts) { in GicV2GetInterruptSourceState() 114 *InterruptState = ArmGicIsInterruptEnabled (mGicDistributorBase, 0, Source); in GicV2GetInterruptSourceState() 134 IN HARDWARE_INTERRUPT_SOURCE Source in GicV2EndOfInterrupt() argument [all …]
|
/device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/GicV3/ |
D | ArmGicV3Dxe.c | 40 IN HARDWARE_INTERRUPT_SOURCE Source in GicV3EnableInterruptSource() argument 43 if (Source >= mGicNumInterrupts) { in GicV3EnableInterruptSource() 48 ArmGicEnableInterrupt (mGicDistributorBase, mGicRedistributorsBase, Source); in GicV3EnableInterruptSource() 67 IN HARDWARE_INTERRUPT_SOURCE Source in GicV3DisableInterruptSource() argument 70 if (Source >= mGicNumInterrupts) { in GicV3DisableInterruptSource() 75 ArmGicDisableInterrupt (mGicDistributorBase, mGicRedistributorsBase, Source); in GicV3DisableInterruptSource() 95 IN HARDWARE_INTERRUPT_SOURCE Source, in GicV3GetInterruptSourceState() argument 99 if (Source >= mGicNumInterrupts) { in GicV3GetInterruptSourceState() 104 *InterruptState = ArmGicIsInterruptEnabled (mGicDistributorBase, mGicRedistributorsBase, Source); in GicV3GetInterruptSourceState() 124 IN HARDWARE_INTERRUPT_SOURCE Source in GicV3EndOfInterrupt() argument [all …]
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/ |
D | HardwareInterrupt.h | 58 IN HARDWARE_INTERRUPT_SOURCE Source, 78 IN HARDWARE_INTERRUPT_SOURCE Source, 97 IN HARDWARE_INTERRUPT_SOURCE Source 116 IN HARDWARE_INTERRUPT_SOURCE Source 135 IN HARDWARE_INTERRUPT_SOURCE Source, 154 IN HARDWARE_INTERRUPT_SOURCE Source
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ipf/ |
D | CopyMem.c | 39 IN CONST VOID *Source, in InternalMemCopyMem() argument 51 if (Source > Destination) { in InternalMemCopyMem() 53 Source8 = (CONST UINT8*)Source; in InternalMemCopyMem() 57 } else if (Source < Destination) { in InternalMemCopyMem() 59 Source8 = (CONST UINT8*)Source + Length; in InternalMemCopyMem()
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ebc/ |
D | CopyMem.c | 39 IN CONST VOID *Source, in InternalMemCopyMem() argument 51 if (Source > Destination) { in InternalMemCopyMem() 53 Source8 = (CONST UINT8*)Source; in InternalMemCopyMem() 57 } else if (Source < Destination) { in InternalMemCopyMem() 59 Source8 = (CONST UINT8*)Source + Length; in InternalMemCopyMem()
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
D | Decompress.h | 22 IN VOID *Source, 49 IN VOID *Source, 80 IN VOID *Source, 107 IN VOID *Source, 139 IN VOID *Source, 148 IN VOID *Source, 158 IN VOID *Source,
|
/device/linaro/bootloader/edk2/BaseTools/Bin/CYGWIN_NT-5.1-i686/ |
D | RunBinToolFromBuildDir | 10 elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ] 12 if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ] 18 exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $* 20 elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ] 22 exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/ |
D | pcctslib50.dsp | 89 # Begin Source File 92 # End Source File 93 # Begin Source File 96 # End Source File 97 # Begin Source File 100 # End Source File 101 # Begin Source File 104 # End Source File 105 # Begin Source File 108 # End Source File [all …]
|
D | pcctslib60.dsp | 95 # Begin Source File 98 # End Source File 99 # Begin Source File 102 # End Source File 103 # Begin Source File 106 # End Source File 107 # Begin Source File 110 # End Source File 111 # Begin Source File 114 # End Source File [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/CompilerStub/ |
D | memcpy.c | 38 const UINT8 *Source; in memcpy() local 40 for (Ptr = Dest, Source = Src; Count > 0; Count--, Source++, Ptr++) { in memcpy() 41 *Ptr = *Source; in memcpy()
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/ |
D | Decompress.h | 29 IN VOID *Source, 59 IN VOID *Source, 93 IN VOID *Source, 123 IN VOID *Source, 157 IN VOID *Source, 166 IN VOID *Source,
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/ |
D | IfrCommon.c | 118 UINT8 *Source; in AddString() local 185 Source = (UINT8 *) &PackSource[Index + 1]; in AddString() 195 EfiStrCpy ((CHAR16 *) Destination, (CHAR16 *) Source); in AddString() 200 Destination = Destination + EfiStrSize ((CHAR16 *) Source); in AddString() 201 Source = Source + EfiStrSize ((CHAR16 *) Source); in AddString() 331 UINT8 *Source; in AddOpCode() local 344 Source = (UINT8 *) FormBuffer; in AddOpCode() 350 EfiCopyMem (Destination, Source, sizeof (EFI_HII_PACK_HEADER)); in AddOpCode() 355 Source = Source + sizeof (EFI_HII_PACK_HEADER); in AddOpCode() 361 for (; ((EFI_IFR_OP_HEADER *) Source)->OpCode != EFI_IFR_END_FORM_OP;) { in AddOpCode() [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/ |
D | Trim.py | 139 def TrimPreprocessedFile(Source, Target, ConvertHex, TrimLong): argument 142 f = open (Source, 'r') 144 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=Source) 258 def TrimPreprocessedVfr(Source, Target): argument 262 f = open (Source,'r') 264 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=Source) 326 def DoInclude(Source, Indent='', IncludePathList=[], LocalSearchPath=None): argument 339 IncludeFile = os.path.join(IncludePath, Source) 344 EdkLogger.error("Trim", "Failed to find include file %s" % Source) 346 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=Source) [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/ |
D | EfiCopyMem.c | 30 IN VOID *Source, in EfiCommonLibCopyMem() argument 56 if (Source < Destination) { in EfiCommonLibCopyMem() 58 Source8 = (CHAR8 *) Source + Length - 1; in EfiCommonLibCopyMem() 64 Source8 = (CHAR8 *) Source; in EfiCommonLibCopyMem()
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/ |
D | EfiCopyMemRep1.c | 27 IN VOID *Source, in EfiCommonLibCopyMem() argument 51 mov esi, Source ; esi <- Source in EfiCommonLibCopyMem() local 58 lea eax, [esi + edx - 1] ; eax <- End of Source in EfiCommonLibCopyMem() 63 mov esi, eax ; esi <- End of Source in EfiCommonLibCopyMem()
|