HomeSort by relevance Sort by last modified time
    Searched refs:hex (Results 51 - 75 of 2038) sorted by null

1 23 4 5 6 7 8 91011>>

  /bootable/recovery/otautil/include/otautil/
print_sha1.h 26 const char* hex = "0123456789abcdef"; local
29 result.push_back(hex[(sha1[i] >> 4) & 0xf]);
30 result.push_back(hex[sha1[i] & 0xf]);
  /libcore/luni/src/test/java/libcore/java/nio/file/
AtomicMoveNotSupportedExceptionTest.java 38 String hex = "ACED00057372002D6A6176612E6E696F2E66696C652E41746F6D69634D6F76654E6F745375707" local
74 SerializationTester.deserializeHex(hex);
77 assertEquals(hex, hex1);
DirectoryNotEmptyExceptionTest.java 38 String hex = "ACED0005737200286A6176612E6E696F2E66696C652E4469726563746F72794E6F74456D70747" local
72 .deserializeHex(hex);
75 assertEquals(hex, hex1);
FileSystemLoopExceptionTest.java 35 String hex = "ACED0005737200256A6176612E6E696F2E66696C652E46696C6553797374656D4C6F6F7045786" local
69 .deserializeHex(hex);
72 assertEquals(hex, hex1);
NotDirectoryExceptionTest.java 37 String hex = "ACED0005737200236A6176612E6E696F2E66696C652E4E6F744469726563746F7279457863657" local
71 .deserializeHex(hex);
74 assertEquals(hex, hex1);
  /external/strace/tests/
scm_rights-fd.test 52 hex='[[:xdigit:]]'
57 path6='(/.*/(A\\n){127}Z|\\x2f(\\x'"$hex$hex"')*\\x2f(\\x41\\x0a){127}\\x5a)'
  /external/strace/tests-m32/
scm_rights-fd.test 52 hex='[[:xdigit:]]'
57 path6='(/.*/(A\\n){127}Z|\\x2f(\\x'"$hex$hex"')*\\x2f(\\x41\\x0a){127}\\x5a)'
  /external/strace/tests-mx32/
scm_rights-fd.test 52 hex='[[:xdigit:]]'
57 path6='(/.*/(A\\n){127}Z|\\x2f(\\x'"$hex$hex"')*\\x2f(\\x41\\x0a){127}\\x5a)'
  /prebuilts/go/darwin-x86/src/crypto/tls/
prf_test.go 8 "encoding/hex"
26 in, _ := hex.DecodeString(test.in)
28 s1 := hex.EncodeToString(out1)
29 s2 := hex.EncodeToString(out2)
49 in, _ := hex.DecodeString(test.preMasterSecret)
50 clientRandom, _ := hex.DecodeString(test.clientRandom)
51 serverRandom, _ := hex.DecodeString(test.serverRandom)
54 if s := hex.EncodeToString(masterSecret); s != test.masterSecret {
60 clientMACString := hex.EncodeToString(clientMAC)
61 serverMACString := hex.EncodeToString(serverMAC
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
prf_test.go 8 "encoding/hex"
26 in, _ := hex.DecodeString(test.in)
28 s1 := hex.EncodeToString(out1)
29 s2 := hex.EncodeToString(out2)
49 in, _ := hex.DecodeString(test.preMasterSecret)
50 clientRandom, _ := hex.DecodeString(test.clientRandom)
51 serverRandom, _ := hex.DecodeString(test.serverRandom)
54 if s := hex.EncodeToString(masterSecret); s != test.masterSecret {
60 clientMACString := hex.EncodeToString(clientMAC)
61 serverMACString := hex.EncodeToString(serverMAC
    [all...]
  /external/libcxx/test/std/input.output/iostreams.base/ios.base/fmtflags.state/
setf_fmtflags.pass.cpp 33 test::fmtflags f = t.setf(test::hex | test::right);
35 assert(t.flags() == (test::skipws | test::dec | test::hex | test::right));
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpParsingTest.java 52 String hex = Integer.toHexString(i); local
53 String input = "%" + hex;
  /prebuilts/go/darwin-x86/src/encoding/hex/
example_test.go 8 "encoding/hex"
17 dst := make([]byte, hex.EncodedLen(len(src)))
18 hex.Encode(dst, src)
29 dst := make([]byte, hex.DecodedLen(len(src)))
30 n, err := hex.Decode(dst, src)
43 decoded, err := hex.DecodeString(s)
57 fmt.Printf("%s", hex.Dump(content))
72 stdoutDumper := hex.Dumper(os.Stdout)
92 encodedStr := hex.EncodeToString(src)
  /prebuilts/go/linux-x86/src/encoding/hex/
example_test.go 8 "encoding/hex"
17 dst := make([]byte, hex.EncodedLen(len(src)))
18 hex.Encode(dst, src)
29 dst := make([]byte, hex.DecodedLen(len(src)))
30 n, err := hex.Decode(dst, src)
43 decoded, err := hex.DecodeString(s)
57 fmt.Printf("%s", hex.Dump(content))
72 stdoutDumper := hex.Dumper(os.Stdout)
92 encodedStr := hex.EncodeToString(src)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostreams.base/ios.base/fmtflags.state/
setf_fmtflags.pass.cpp 33 test::fmtflags f = t.setf(test::hex | test::right);
35 assert(t.flags() == (test::skipws | test::dec | test::hex | test::right));
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
hex-r.d 3 # source: hex.s
  /toolchain/binutils/binutils-2.27/gprof/
bbconv.pl 51 $addr = hex $2;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_pass1.py 32 "hex": "\u0123\u4567\u89AB\uCDEF\uabcd\uef4A",
  /external/boringssl/src/tool/
rand.cc 29 "-hex", kBooleanArgument,
30 "Hex encoded output."
38 bool forever = true, hex = false; local
61 hex = args_map.count("-hex") > 0;
74 if (hex) {
91 if (hex && fwrite("\n", 1, 1, stdout) != 1) {
  /external/syslinux/gpxe/src/drivers/infiniband/
qib_genbits.pl 49 sort { hex ( $offsets->{$a} ) <=> hex ( $offsets->{$b} ) }
58 sort { hex ( $structure->{$a}->{LSB} ) <=>
59 hex ( $structure->{$b}->{LSB} ) }
69 $datum->{name}, hex ( $datum->{offset} );
75 my $pad_width = ( hex ( $field->{lsb} ) - $lsb );
81 # Damn Perl can't cope with 64-bit hex constants
90 $rmask = hex ( $rmask );
96 my $msb_width = ( hex ( $field->{msb} ) - $lsb + 1 );
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug014.go 12 var cx0 uint8 = '\x0'; // ERROR "hex|char"
13 var cx1 uint8 = '\x'; // ERROR "hex|char"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug014.go 12 var cx0 uint8 = '\x0'; // ERROR "hex|char"
13 var cx1 uint8 = '\x'; // ERROR "hex|char"
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 108 errln("ERROR: " + hex(ch) + " has identical decomp");
111 errln("ERROR: Normalizer decomp for " + hex(ch) + " (" + hex(normDecomp) + ")"
112 + " != iter decomp (" + hex(iterDecomp) + ")" );
124 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
145 logln("Skipped excluded char " + hex(ch) + " (" + UCharacter.getName(ch) + ")" );
153 errln("ERROR: Round trip invalid: " + hex(chStr) + " --> " + hex(decomp)
154 + " --> " + hex(comp))
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 105 errln("ERROR: " + hex(ch) + " has identical decomp");
108 errln("ERROR: Normalizer decomp for " + hex(ch) + " (" + hex(normDecomp) + ")"
109 + " != iter decomp (" + hex(iterDecomp) + ")" );
121 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
142 logln("Skipped excluded char " + hex(ch) + " (" + UCharacter.getName(ch) + ")" );
150 errln("ERROR: Round trip invalid: " + hex(chStr) + " --> " + hex(decomp)
151 + " --> " + hex(comp))
    [all...]
  /external/libbrillo/brillo/
data_encoding.cc 17 inline int HexToDec(int hex) {
19 if (hex >= '0' && hex <= '9') {
20 dec = hex - '0';
21 } else if (hex >= 'A' && hex <= 'F') {
22 dec = hex - 'A' + 10;
23 } else if (hex >= 'a' && hex <= 'f') {
24 dec = hex - 'a' + 10
    [all...]

Completed in 1137 milliseconds

1 23 4 5 6 7 8 91011>>