HomeSort by: relevance | last modified time | path
    Searched refs:Hex (Results 1 - 17 of 17) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/bn/
bn_print.c 14 static const char Hex[] = "0123456789ABCDEF";
45 if (BIO_write(bp, &Hex[v], 1) != 1)
  /src/crypto/external/bsd/openssl/dist/crypto/bn/
bn_print.c 14 static const char Hex[] = "0123456789ABCDEF";
45 if (BIO_write(bp, &Hex[v], 1) != 1)
bn_conv.c 14 static const char Hex[] = "0123456789ABCDEF";
38 *p++ = Hex[v >> 4];
39 *p++ = Hex[v & 0x0f];
151 /* a is the start of the hex digits, and it is 'i' long */
164 /* i is the number of hex digits */
168 j = i; /* least significant 'hex' */
  /src/external/mpl/dhcp/dist/contrib/ms2isc/
Registry.pm 254 my @Hex;
255 # purpose: DHCP registry specific; to return the extracted hex from the input
262 # @Hex: an arry of hex strings in human readable format.
277 # actually this is only programmed to do one Hex, until I see
281 $Hex[$i] = $Hex[$i].sprintf ("%x", $data[$j+$i*4]);
285 return @Hex;
343 my @Hex;
344 # purpose: to return the registry saved hex number in a readable form
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringExtras.h 67 /// If \p C is not a valid hex digit, -1U is returned.
184 inline bool tryGetHexFromNibbles(char MSB, char LSB, uint8_t &Hex) {
190 Hex = static_cast<uint8_t>((U1 << 4) | U2);
197 uint8_t Hex = 0;
198 bool GotHex = tryGetHexFromNibbles(MSB, LSB, Hex);
200 assert(GotHex && "MSB and/or LSB do not correspond to hex digits");
201 return Hex;
214 uint8_t Hex = 0;
215 if (!tryGetHexFromNibbles('0', Input.front(), Hex))
218 Output.push_back(Hex);
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtil.cpp 112 char Hex[] = "0xAA";
113 Hex[2] = Str[Pos + 2];
114 Hex[3] = Str[Pos + 3];
115 U->push_back(strtol(Hex, nullptr, 16));
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_print.c 17 static const char Hex[] = "0123456789ABCDEF";
41 *p++ = Hex[v >> 4];
42 *p++ = Hex[v & 0x0f];
151 /* a is the start of the hex digits, and it is 'i' long */
160 /* i is the number of hex digits */
164 j = i; /* least significant 'hex' */
318 if (BIO_write(bp, &Hex[v], 1) != 1)
  /src/usr.sbin/rbootd/
utils.c 210 static char Hex[] = "0123456789abcdef";
222 *cp++ = Hex[*addr >> 4 & 0xf];
223 *cp++ = Hex[*addr++ & 0xf];
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Format.h 168 bool Hex;
176 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
188 assert(Width <= 18 && "hex width must be <= 18");
201 assert(Width <= 16 && "hex width must be <= 16");
222 uint8_t ByteGroupSize; // How many hex bytes are grouped without spaces
223 bool Upper; // Show offset and hex bytes as upper case.
224 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
xgettext-csharp-3 30 // Hex escapes are recognized.
129 #. Hex escapes are recognized.
  /src/sys/external/bsd/gnu-efi/dist/lib/
print.c 1059 X - fixed 8 byte value in hex
1060 x - hex value
1319 STATIC CHAR8 Hex[] = {'0','1','2','3','4','5','6','7',
1342 *(p1++) = Hex[(UINTN)(v & 0xf)];
1519 Val[Index*3+0] = Hex[c>>4];
1520 Val[Index*3+1] = Hex[c&0xF];
  /src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 675 bool Hex, Octal;
740 Info.Hex = Info.Octal = false;
742 Info.Hex = true;
860 // Not easy to do int -> float with hex/octal and uncommon anyway.
861 if (!LitIsFloat && CallIsFloating && (LitInfo.Hex || LitInfo.Octal))
  /src/external/bsd/openldap/dist/libraries/liblunicode/ucdata/
format.txt 71 Hd 42 Hex Digit
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 1089 static const char Hex[] = "0123456789ABCDEF";
1120 OS << Hex[(Char >> Shift) & 15];
1127 << Hex[(Char >> 20) & 15]
1128 << Hex[(Char >> 16) & 15];
1131 OS << Hex[(Char >> 12) & 15]
1132 << Hex[(Char >> 8) & 15]
1133 << Hex[(Char >> 4) & 15]
1134 << Hex[(Char >> 0) & 15];
4055 // Advance past s-char prefix on hex swizzles.
  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 381 if (FN.Hex) {
441 // Print the hex bytes for this line in groups
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheck.cpp 146 bool Hex = Value == Kind::HexUpper || Value == Kind::HexLower;
149 if (StrVal.getAsInteger(Hex ? 16 : 10, UnsignedValue))
831 "alternate form only supported for hex values");
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/
package.d 250 $(LI 1.1 Hex notation via any of \uxxxx, \U00YYYYYY, \xZZ.)

Completed in 69 milliseconds