Home
last modified time | relevance | path

Searched refs:In (Results 1 – 25 of 308) sorted by relevance

12345678910>>...13

/device/linaro/bootloader/edk2/Omap35xxPkg/PciEmulation/
DPciRootBridgeIo.c36 IN PTR In, in PciRootBridgeIoMemRW() argument
56 for (;Count > 0; Count--, In.buf += InStride, Out.buf += OutStride) { in PciRootBridgeIoMemRW()
57 *In.ui8 = *Out.ui8; in PciRootBridgeIoMemRW()
61 for (;Count > 0; Count--, In.buf += InStride, Out.buf += OutStride) { in PciRootBridgeIoMemRW()
62 *In.ui16 = *Out.ui16; in PciRootBridgeIoMemRW()
66 for (;Count > 0; Count--, In.buf += InStride, Out.buf += OutStride) { in PciRootBridgeIoMemRW()
67 *In.ui32 = *Out.ui32; in PciRootBridgeIoMemRW()
117 PTR In; in PciRootBridgeIoMemRead() local
135 In.buf = Buffer; in PciRootBridgeIoMemRead()
143 return PciRootBridgeIoMemRW (Width, Count, TRUE, In, TRUE, Out); in PciRootBridgeIoMemRead()
[all …]
/device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/PciEmulation/
DPciRootBridgeIo.c36 IN PTR In, in PciRootBridgeIoMemRW() argument
56 for (;Count > 0; Count--, In.buf += InStride, Out.buf += OutStride) { in PciRootBridgeIoMemRW()
57 *In.ui8 = *Out.ui8; in PciRootBridgeIoMemRW()
61 for (;Count > 0; Count--, In.buf += InStride, Out.buf += OutStride) { in PciRootBridgeIoMemRW()
62 *In.ui16 = *Out.ui16; in PciRootBridgeIoMemRW()
66 for (;Count > 0; Count--, In.buf += InStride, Out.buf += OutStride) { in PciRootBridgeIoMemRW()
67 *In.ui32 = *Out.ui32; in PciRootBridgeIoMemRW()
117 PTR In; in PciRootBridgeIoMemRead() local
135 In.buf = Buffer; in PciRootBridgeIoMemRead()
143 return PciRootBridgeIoMemRW (Width, Count, TRUE, In, TRUE, Out); in PciRootBridgeIoMemRead()
[all …]
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/
DPciRootBridgeIo.c36 IN PTR In, in PciRootBridgeIoMemRW() argument
55 for (;Count > 0; Count--, In.Buffer += InStride, Out.Buffer += OutStride) { in PciRootBridgeIoMemRW()
56 *In.Ui8 = *Out.Ui8; in PciRootBridgeIoMemRW()
60 for (;Count > 0; Count--, In.Buffer += InStride, Out.Buffer += OutStride) { in PciRootBridgeIoMemRW()
61 *In.Ui16 = *Out.Ui16; in PciRootBridgeIoMemRW()
65 for (;Count > 0; Count--, In.Buffer += InStride, Out.Buffer += OutStride) { in PciRootBridgeIoMemRW()
66 *In.Ui32 = *Out.Ui32; in PciRootBridgeIoMemRW()
116 PTR In; in PciRootBridgeIoMemRead() local
134 In.Buffer = Buffer; in PciRootBridgeIoMemRead()
142 return PciRootBridgeIoMemRW (Width, Count, TRUE, In, TRUE, Out); in PciRootBridgeIoMemRead()
[all …]
/device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
Dreplace.c47 FILE *In, *Out; in main() local
65 In = fopen (argv[1], "r"); in main()
66 fseek (In, 0, SEEK_END); in main()
67 InFileSize = ftell (In); in main()
72 fseek (In, 0, SEEK_SET); in main()
76 if ((In == NULL) || (Out == NULL)) { in main()
114 fseek (In, InFilePos, SEEK_SET); in main()
115 ReadCount = fread (Key, 1, MaxLenKey, In); in main()
135 fseek (In, InFilePos, SEEK_SET); in main()
136 while ((c = fgetc (In)) != EOF) { in main()
[all …]
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Tools/
Dreplace.c47 FILE *In, *Out; in main() local
65 In = fopen (argv[1], "r"); in main()
66 fseek (In, 0, SEEK_END); in main()
67 InFileSize = ftell (In); in main()
72 fseek (In, 0, SEEK_SET); in main()
76 if ((In == NULL) || (Out == NULL)) { in main()
114 fseek (In, InFilePos, SEEK_SET); in main()
115 ReadCount = fread (Key, 1, MaxLenKey, In); in main()
135 fseek (In, InFilePos, SEEK_SET); in main()
136 while ((c = fgetc (In)) != EOF) { in main()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/SplitFile/
Dsplitfile.c88 FILE *In; in main() local
104 In = fopen (argv[1], "rb"); in main()
105 if (In == NULL) { in main()
130 CharC = (char) fgetc (In); in main()
131 if (feof (In)) { in main()
139 CharC = (char) fgetc (In); in main()
140 if (feof (In)) { in main()
147 fclose (In); in main()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
DBootScriptExecute.c302 PTR In; in ScriptIoWrite() local
305 In.Buf = (UINT8 *) Buffer; in ScriptIoWrite()
319 OriginalIn.Buf = In.Buf; in ScriptIoWrite()
320 for (; Count > 0; Count--, Address += AddressStride, In.Buf += BufferStride) { in ScriptIoWrite()
323 …BUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%08x (0x%02x)\n", (UINTN)Address, (UINTN)*In.Uint8)); in ScriptIoWrite()
324 IoWrite8 ((UINTN) Address, *In.Uint8); in ScriptIoWrite()
327 …INFO, "S3BootScriptWidthFifoUint8 - 0x%08x (0x%02x)\n", (UINTN)OriginalAddress, (UINTN)*In.Uint8)); in ScriptIoWrite()
328 IoWrite8 ((UINTN) OriginalAddress, *In.Uint8); in ScriptIoWrite()
335 …G ((EFI_D_INFO, "S3BootScriptWidthUint16 - 0x%08x (0x%04x)\n", (UINTN)Address, (UINTN)*In.Uint16)); in ScriptIoWrite()
336 IoWrite16 ((UINTN) Address, *In.Uint16); in ScriptIoWrite()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/Split/
DSplit.c226 FILE *In; in main() local
358 In = fopen (LongFilePath (InputFileName), "rb"); in main()
359 if (In == NULL) { in main()
425 CharC = (CHAR8) fgetc (In); in main()
426 if (feof (In)) { in main()
434 CharC = (CHAR8) fgetc (In); in main()
435 if (feof (In)) { in main()
448 fclose (In); in main()
/device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/
DPcatPciRootBridgeIo.c178 IN PTR In,
393 PTR In; in PcatRootBridgeIoMemRead() local
413 In.buf = Buffer; in PcatRootBridgeIoMemRead()
416 return PcatRootBridgeIoMemRW (Width, Count, TRUE, In, TRUE, Out); in PcatRootBridgeIoMemRead()
419 return PcatRootBridgeIoMemRW (Width, Count, TRUE, In, FALSE, Out); in PcatRootBridgeIoMemRead()
422 return PcatRootBridgeIoMemRW (Width, Count, FALSE, In, TRUE, Out); in PcatRootBridgeIoMemRead()
440 PTR In; in PcatRootBridgeIoMemWrite() local
460 In.buf = (VOID *)(UINTN) Address; in PcatRootBridgeIoMemWrite()
463 return PcatRootBridgeIoMemRW (Width, Count, TRUE, In, TRUE, Out); in PcatRootBridgeIoMemWrite()
466 return PcatRootBridgeIoMemRW (Width, Count, FALSE, In, TRUE, Out); in PcatRootBridgeIoMemWrite()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTablePei/
DFirmwarePerformancePei.uni4 // In S3 resume boot mode, it updates S3 Resume Performance Record in ACPI Firmware Performance Dat…
5 // In normal boot mode, it consumes SecPerformance PPI produced by SEC phase
26 … #language en-US "In S3 resume boot mode, it updates S3 Resume Performance Record in ACPI Fir…
DFirmwarePerformancePei.inf4 # In S3 resume boot mode, it updates S3 Resume Performance Record in ACPI Firmware Performance Dat…
5 # In normal boot mode, it consumes SecPerformance PPI produced by SEC phase
/device/linaro/bootloader/edk2/IntelFspWrapperPkg/FspInitPei/
DFspInitPei.inf5 # In FSP API V1 mode, it will be invoked twice by pei core. In 1st entry, it will
6 # call FspInit API. In 2nd entry, it will parse the hoblist from fsp and report
8 # In FSP API V2 mode, it will be invoked only once. It will call FspMemoryInit API,
/device/linaro/bootloader/edk2/BaseTools/
Dbuilding-gcc.txt5 BaseTools source tree. (In addition to the instructions, you will also
11 In a web browser, you can 'browse' the relavent source at this location:
/device/linaro/bootloader/edk2/CorebootPayloadPkg/
DBuildAndIntegrationInstructions.txt62 3. In the Payload section,
69 1) In the Device section, select the option of "Run VGA Option ROMs".
70 …2) In the VGA BIOS section, select the option of "Add a VGA BIOS Image", Input the path of vga bio…
73 3) In the Display section,
/device/linaro/bootloader/edk2/MdePkg/Library/SmmMemLib/
DSmmMemLib.uni5 // to get SMRAM information. In order to use this library instance, the platform should produce
23 …tion. This library consumes SMM_ACCESS2_PROTOCOL to get SMRAM information. In order to use this li…
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/
DSmmRuntimeDxeReportStatusCodeLibFramework.uni5 // In SMM, it logs message via SMM Status Code Protocol.
22 …ce supports the status code report in SMM, as well as DXE & runtime phase. In SMM, it logs message…
/device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckPcdLib/
DVarCheckPcdLib.inf4 # In platform *.fdf, the example build rule for the driver this library linked to.
25 # In platform *.dsc, also need add one line below to enable PcdVarCheck.bin generation by BaseTool…
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_doctest.txt3 In this example, we'll rely on a global variable being set for us
Dtest_doctest4.txt4 In order to get this test to pass, we have to manually specify the
Dtest_doctest2.txt3 In this example, we'll rely on some silly setup:
/device/linaro/bootloader/arm-trusted-firmware/docs/
Dcpu-specific-build-macros.md34 errata workaround build flags in the platform specific makefile. In case
36 workaround is not applied. In the DEBUG build, this is indicated by
39 In the current implementation, a platform which has more than 1 variant
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
DREADME1 In this directory:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dlnotab_notes.txt31 more than one pair is written to the table. In case #b, there's no way to know
43 (In C, this is implemented by PyCode_Addr2Line().) In order for this to work,
106 In this case, we could instead associate the POP_BLOCK with line 5, but that
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlnotab_notes.txt31 more than one pair is written to the table. In case #b, there's no way to know
43 (In C, this is implemented by PyCode_Addr2Line().) In order for this to work,
106 In this case, we could instead associate the POP_BLOCK with line 5, but that
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/
DCHANGES_FROM_133_before_mr13.txt30 In earlier versions the mrhoist routine would see that both l1 and
32 from acting to suppress the other predicate. In the example above
53 In MR10 code was added to optimize the code generated for
65 In MR11 (and MR10 when using "-mrhoist on") the code generated
159 In a #token statement like the following:
165 messages. In MR11 one has the option of using some other string,
168 In MR11 one can write:
193 follow set used is the "worst case". In other words, the error
223 the ambiguity. In computing the first[2] set of "expr" (which is
234 pccts to work hard to resolve an ambiguity. In some cases the
[all …]

12345678910>>...13