OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurrentChar
(Results
1 - 6
of
6
) sorted by null
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
ParseInf.c
500
CHAR8
CurrentChar
;
534
CurrentChar
= AsciiString[Index];
535
if (
CurrentChar
== ' ') {
541
if (isxdigit ((int)
CurrentChar
) == 0) {
548
if (
CurrentChar
>= '0' &&
CurrentChar
<= '9') {
549
Value +=
CurrentChar
- '0';
550
} else if (
CurrentChar
>= 'a' &&
CurrentChar
<= 'f') {
551
Value +=
CurrentChar
- 'a' + 10;
[
all
...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
ParseInf.c
600
CHAR8
CurrentChar
;
623
CurrentChar
= AsciiString[Index];
625
if (
CurrentChar
>= '0' &&
CurrentChar
<= '9') {
626
HexNumber +=
CurrentChar
- '0';
627
} else if (
CurrentChar
>= 'a' &&
CurrentChar
<= 'f') {
628
HexNumber +=
CurrentChar
- 'a' + 10;
629
} else if (
CurrentChar
>= 'A' &&
CurrentChar
<= 'F') {
[
all
...]
/device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugAgent.c
1092
UINT8
CurrentChar
;
1097
CurrentChar
= Data[Index];
1100
CopyMem (&Data[Index +
CurrentChar
], &Data[Index + 1], Length - Index - 1);
1101
SetMem (&Data[Index],
CurrentChar
, (UINT8) LastChar);
1103
Index +=
CurrentChar
- 1;
1104
Length +=
CurrentChar
- 1;
1106
if (LastChar !=
CurrentChar
) {
1110
LastChar =
CurrentChar
;
[
all
...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
CodeFragmentCollector.py
193
CurrentChar
= self.Profile.FileLinesList[self.CurrentLineNumber - 1][self.CurrentOffsetWithinLine]
195
return
CurrentChar
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
CodeFragmentCollector.py
198
CurrentChar
= self.Profile.FileLinesList[self.CurrentLineNumber - 1][self.CurrentOffsetWithinLine]
199
# if
CurrentChar
> 255:
201
return
CurrentChar
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Misc.py
[
all
...]
Completed in 360 milliseconds