HomeSort by relevance Sort by last modified time
    Searched defs:CurrentChar (Results 1 - 4 of 4) sorted by null

  /external/libtextclassifier/lang_id/common/fel/
fel-parser.h 89 char CurrentChar() const {
  /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...]

Completed in 356 milliseconds