OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gSystemMemoryCount
(Results
1 - 2
of
2
) sorted by null
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
Host.c
52
UINTN
gSystemMemoryCount
= 0;
178
gSystemMemoryCount
= CountSeparatorsInString (MemorySizeStr, '!') + 1;
179
gSystemMemory = AllocateZeroPool (
gSystemMemoryCount
* sizeof (EMU_SYSTEM_MEMORY));
618
It uses gSystemMemory[] and
gSystemMemoryCount
that were created by
642
if (Index >=
gSystemMemoryCount
) {
691
for (Index = 0; Index <
gSystemMemoryCount
; Index++) {
[
all
...]
/device/linaro/bootloader/edk2/Nt32Pkg/Sec/
SecMain.c
99
UINTN
gSystemMemoryCount
= 0;
231
gSystemMemoryCount
= CountSeparatorsInString (MemorySizeStr, '!') + 1;
232
gSystemMemory = calloc (
gSystemMemoryCount
, sizeof (NT_SYSTEM_MEMORY));
705
It uses gSystemMemory[] and
gSystemMemoryCount
that were created by
721
if (Index >=
gSystemMemoryCount
) {
[
all
...]
Completed in 109 milliseconds