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

1 2 3 4 5

  /system/extras/multinetwork/
quick_test.sh 19 function toHex() {
34 echo "$PREFIX Using nethandle $nethandle ($(toHex $nethandle))"
  /external/llvm/unittests/Support/
raw_sha1_ostream_test.cpp 18 static std::string toHex(StringRef Input) {
35 auto Hash = toHex(Sha1Stream.sha1());
45 auto Hash = toHex(Sha1Stream.sha1());
49 Hash = toHex(Sha1Stream.sha1());
54 auto NonSplitHash = toHex(NonSplitSha1Stream.sha1());
62 auto Hash = toHex(Sha1Stream.sha1());
68 Hash = toHex(Sha1Stream.sha1());
  /system/netd/libnetdutils/
Slice.cpp 26 const std::string toHex(uint8_t byte) {
38 std::string toHex(const Slice s, int wrap) {
45 ss << toHex(byte);
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
MessageDigestAlgorithm.java 206 private static final char[] toHex = {
220 c[pos++] = toHex[(b[i] >> 4) & 0x0F];
221 c[pos++] = toHex[b[i] & 0x0f];
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenPcdDb.py 264 def toHex(s):
    [all...]
  /external/llvm/include/llvm/ADT/
StringExtras.h 64 static inline std::string toHex(StringRef Input) {
  /packages/apps/SecureElement/src/com/android/se/security/gpac/
AID_REF_DO.java 84 b.append(BerTlv.toHex(out.toByteArray()));
Hash_REF_DO.java 87 b.append(BerTlv.toHex(out.toByteArray()));
BerTlv.java 58 public static String toHex(byte[] digest) {
  /external/icu/icu4c/source/test/intltest/
intltest.h 363 static UnicodeString toHex(uint32_t number, int32_t digits=-1);
364 static inline UnicodeString toHex(int32_t number, int32_t digits=-1) {
365 return toHex((uint32_t)number, digits);
  /external/nist-sip/java/gov/nist/javax/sip/
Utils.java 63 private static final char[] toHex = { '0', '1', '2', '3', '4', '5', '6',
93 c[pos++] = toHex[(b[i] >> 4) & 0x0F];
94 c[pos++] = toHex[b[i] & 0x0f];
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringExtras.h 65 static inline std::string toHex(StringRef Input) {
  /libcore/ojluni/src/main/java/sun/security/util/
ManifestEntryVerifier.java 212 debug.println(" manifest " + toHex(manHash));
213 debug.println(" computed " + toHex(theHash));
230 // for the toHex function
239 static String toHex(byte[] data) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 65 static inline std::string toHex(StringRef Input) {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
StringExtras.h 77 inline std::string toHex(StringRef Input) {
91 inline std::string toHex(ArrayRef<uint8_t> Input) {
92 return toHex(toStringRef(Input));
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
StringExtras.h 77 inline std::string toHex(StringRef Input) {
91 inline std::string toHex(ArrayRef<uint8_t> Input) {
92 return toHex(toStringRef(Input));
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 65 static inline std::string toHex(StringRef Input) {
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
StringExtras.h 77 inline std::string toHex(StringRef Input) {
91 inline std::string toHex(ArrayRef<uint8_t> Input) {
92 return toHex(toStringRef(Input));
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
StringExtras.h 77 inline std::string toHex(StringRef Input) {
91 inline std::string toHex(ArrayRef<uint8_t> Input) {
92 return toHex(toStringRef(Input));
  /external/conscrypt/platform/src/main/java/org/conscrypt/
CertBlacklist.java 235 byte[] out = toHex(md.digest(encoded));
248 private static byte[] toHex(byte[] in) {
  /external/deqp/framework/common/
tcuFormatUtil.hpp 249 inline Format::Hex<NumDigits> toHex (T value)
256 inline Format::Hex<sizeof(T)*2> toHex (T value)
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
ConformanceTest.java 460 String toHex = s.substring(pos,delim);
463 int len = toHex.length();
465 if(toHex.charAt(index)==' '){
468 int spacePos = toHex.indexOf(' ', index);
470 appendInt(buf,toHex.substring(index,len),s);
473 appendInt(buf,toHex.substring(index, spacePos),s);
UnicodeNormalizerConformanceTest.java 221 String toHex = s.substring(pos,delim);
224 int len = toHex.length();
226 if(toHex.charAt(index)==' '){
229 int spacePos = toHex.indexOf(' ', index);
231 appendInt(buf,toHex.substring(index,len),s);
234 appendInt(buf,toHex.substring(index, spacePos),s);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
ConformanceTest.java 457 String toHex = s.substring(pos,delim);
460 int len = toHex.length();
462 if(toHex.charAt(index)==' '){
465 int spacePos = toHex.indexOf(' ', index);
467 appendInt(buf,toHex.substring(index,len),s);
470 appendInt(buf,toHex.substring(index, spacePos),s);
UnicodeNormalizerConformanceTest.java 218 String toHex = s.substring(pos,delim);
221 int len = toHex.length();
223 if(toHex.charAt(index)==' '){
226 int spacePos = toHex.indexOf(' ', index);
228 appendInt(buf,toHex.substring(index,len),s);
231 appendInt(buf,toHex.substring(index, spacePos),s);

Completed in 1248 milliseconds

1 2 3 4 5