HomeSort by relevance Sort by last modified time
    Searched defs:Digit (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/pdfium/third_party/bigint/
BigUnsignedInABase.hh 22 * and `std::string's (by switching digit values for appropriate characters).
27 * BigUnsignedInABase uses ``digits'' (or Digit) where BigUnsigned uses
42 typedef unsigned short Digit;
44 typedef Digit Base;
51 BigUnsignedInABase(int, Index c) : NumberlikeArray<Digit>(0, c) {}
61 BigUnsignedInABase() : NumberlikeArray<Digit>(), base(2) {}
64 BigUnsignedInABase(const BigUnsignedInABase &x) : NumberlikeArray<Digit>(x), base(x.base) {}
68 NumberlikeArray<Digit>::operator =(x);
73 BigUnsignedInABase(const Digit *d, Index l, Base base);
109 using NumberlikeArray<Digit>::getCapacity
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/
Handles.c 36 INTN Digit;
124 Digit = (( Value >> Shift ) & 0xf ) | '0';
125 if ( '9' < Digit ) {
126 Digit += 'a' - '0' - 10;
130 // Display the address digit
134 (UINT8) Digit );
194 Digit = (( Value >> Shift ) & 0xf ) | '0';
195 if ( '9' < Digit ) {
196 Digit += 'a' - '0' - 10;
200 // Display the address digit
    [all...]
HTTP.c 1189 UINT32 Digit;
1204 // Determine the next digit
1206 Digit = (UINT32)(( Value >> Shift ) & 0xf );
1207 if ( 10 <= Digit ) {
1208 Digit += 'a' - '0' - 10;
1212 // Display the digit
1214 Status = HttpSendByte ( SocketFD, pPort, (UINT8)( '0' + Digit ));
1249 UINT32 Digit;
1265 // Determine the next digit
1267 Digit = (UINT32)(( Value >> Shift ) & 0xf );
    [all...]
  /external/skia/tests/
SkPEGTest.cpp 30 struct Digit {
135 const auto match = Digit::Match(gTests[i].fInput);
175 const auto m = Seq<LIT<'x'>, Digit>::Match("x5");
180 const auto m = Seq<Digit, Digit>::Match("42");
188 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("")));
189 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("\t")));
190 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" ")));
191 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a")));
192 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3")))
    [all...]
  /external/skqp/tests/
SkPEGTest.cpp 30 struct Digit {
135 const auto match = Digit::Match(gTests[i].fInput);
175 const auto m = Seq<LIT<'x'>, Digit>::Match("x5");
180 const auto m = Seq<Digit, Digit>::Match("42");
188 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("")));
189 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("\t")));
190 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" ")));
191 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a")));
192 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3")))
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
String.c 461 OUT UINT8 *Digit,
467 Determines if a Unicode character is a hexadecimal digit.
471 Digit - Pointer to byte that receives the value of the hex character.
475 TRUE - If the character is a hexadecimal digit.
481 *Digit = (UINT8) (Char - L'0');
486 *Digit = (UINT8) (Char - L'A' + 0x0A);
491 *Digit = (UINT8) (Char - L'a' + 0x0A);
535 The first character in the string that is not hex digit stops the conversion.
556 UINT8 Digit;
562 for (Idx = 0, HexCnt = 0; IsHexDigit (&Digit, Str[Idx]); Idx++, HexCnt++);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/CapsuleApp/
AppSupport.c 85 UINT8 Digit;
88 Digit = 0;
98 Digit = (UINT8) (*Str - L'a' + 0x0A);
100 Digit = (UINT8) (*Str - L'A' + 0x0A);
102 Digit = (UINT8) (*Str - L'0');
112 Byte = (UINT8) (Digit << 4);
116 Byte = (UINT8) (Byte | Digit);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiMisc.c 456 UINT8 Digit;
472 Digit = (UINT8) AsciiStrHexToUint64 (TemStr);
473 if (Digit == 0 && TemStr[0] != '0') {
480 BinBuffer [Index/2] = Digit;
482 BinBuffer [Index/2] = (UINT8) ((BinBuffer [Index/2] << 4) + Digit);
  /device/linaro/bootloader/edk2/SignedCapsulePkg/Library/IniParsingLib/
IniParsingLib.c 883 UINT8 Digit;
886 Digit = 0;
896 Digit = (UINT8) (*Str - 'a' + 0x0A);
898 Digit = (UINT8) (*Str - 'A' + 0x0A);
900 Digit = (UINT8) (*Str - '0');
910 Byte = (UINT8) (Digit << 4);
914 Byte = (UINT8) (Byte | Digit);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
TftpServer.c     [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiMisc.c 386 UINT8 Digit;
402 Digit = (UINT8) AsciiStrHexToUint64 (TemStr);
403 if (Digit == 0 && TemStr[0] != '0') {
410 BinBuffer [Index/2] = Digit;
412 BinBuffer [Index/2] = (UINT8) ((BinBuffer [Index/2] << 4) + Digit);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp6.c 607 UINT8 Digit;
626 if (EFI_ERROR (PxeBcUniHexToUint8 (&Digit, *(BootFilePara + Index)))) {
630 Size = (Size + Digit) * 10;
    [all...]
  /external/clang/lib/Driver/
Driver.cpp     [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DevicePathFromText.c 347 UINT8 Digit;
350 Digit = 0;
360 Digit = (UINT8) (*Str - L'a' + 0x0A);
362 Digit = (UINT8) (*Str - L'A' + 0x0A);
364 Digit = (UINT8) (*Str - L'0');
374 Byte = (UINT8) (Digit << 4);
378 Byte = (UINT8) (Byte | Digit);
    [all...]
  /prebuilts/go/darwin-x86/src/unicode/
tables.go     [all...]
  /prebuilts/go/linux-x86/src/unicode/
tables.go     [all...]
  /prebuilts/tools/common/m2/repository/org/pegdown/pegdown/1.1.0/
pegdown-1.1.0.jar 
  /external/dagger2/lib/
auto-value-1.4.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3/
auto-value-1.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3-rc1/
auto-value-1.3-rc1.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.5.2/
auto-value-1.5.2.jar 
  /cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar 
  /external/annotation-tools/annotation-file-utilities/
annotation-file-utilities.jar 
  /external/annotation-tools/annotation-file-utilities/lib/
guava-20.0.jar 
  /external/error_prone/error_prone/
error_prone_core-2.2.0-with-dependencies.jar 

Completed in 1061 milliseconds

1 2 3