HomeSort by relevance Sort by last modified time
    Searched full:fromhex (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_float.py     [all...]
  /external/python/cpython2/Lib/test/
test_float.py     [all...]
test_sunau.py 22 frames = audiotests.fromhex("""\
39 frames = audiotests.fromhex("""\
58 frames = audiotests.fromhex("""\
83 frames = audiotests.fromhex("""\
test_wave.py 25 frames = audiotests.fromhex("""\
42 frames = audiotests.fromhex("""\
69 frames = audiotests.fromhex("""\
96 frames = audiotests.fromhex("""\
test_aifc.py 28 frames = audiotests.fromhex("""\
45 frames = audiotests.fromhex("""\
64 frames = audiotests.fromhex("""\
89 frames = audiotests.fromhex("""\
114 frames = audiotests.fromhex("""\
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_float.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_float.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_float.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_float.py     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java 30 private static BigInteger fromHex(
44 BigInteger p = fromHex("DB7C2ABF62E35E668076BEAD208B");
45 BigInteger a = fromHex("DB7C2ABF62E35E668076BEAD2088");
46 BigInteger b = fromHex("659EF8BA043916EEDE8911702B22");
48 BigInteger n = fromHex("DB7C2ABF62E35E7628DFAC6561C5");
70 BigInteger p = fromHex("DB7C2ABF62E35E668076BEAD208B");
71 BigInteger a = fromHex("6127C24C05F38A0AAAF65C0EF02C");
72 BigInteger b = fromHex("51DEF1815DB5ED74FCC34C85D709");
74 BigInteger n = fromHex("36DF0AAFD8B8D7597CA10520D04B");
96 BigInteger p = fromHex("FFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF")
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/dsa/
dsa_test.go 76 func fromHex(s string) *big.Int {
109 P: fromHex(test.p),
110 Q: fromHex(test.q),
111 G: fromHex(test.g),
113 Y: fromHex(test.y),
115 X: fromHex(test.x),
  /prebuilts/go/linux-x86/src/crypto/dsa/
dsa_test.go 76 func fromHex(s string) *big.Int {
109 P: fromHex(test.p),
110 Q: fromHex(test.q),
111 G: fromHex(test.g),
113 Y: fromHex(test.y),
115 X: fromHex(test.x),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
avifmt.h 54 #define FromHex(n) (((n) >= 'A') ? ((n) + 10 - 'A') : ((n) - '0'))
55 #define StreamFromFOURCC(fcc) ((WORD) ((FromHex(LOBYTE(LOWORD(fcc))) << 4) + (FromHex(HIBYTE(LOWORD(fcc))))))
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
Utils.java 53 int nibble = Utils.fromHex(s.charAt(n), true); // Set lenient to not blow up on ':'
181 (byte) (((fromHex(text.charAt(n), false) & NIBBLE_MASK) << 4) |
182 (fromHex(text.charAt(n + 1), false) & NIBBLE_MASK));
188 public static int fromHex(char ch, boolean lenient) throws NumberFormatException {
  /prebuilts/go/darwin-x86/src/crypto/tls/
conn_test.go 69 Certificate: [][]byte{fromHex(certExampleCom)},
72 Certificate: [][]byte{fromHex(certWildcardExampleCom)},
75 Certificate: [][]byte{fromHex(certFooExampleCom)},
78 Certificate: [][]byte{fromHex(certDoubleWildcardExampleCom)},
  /prebuilts/go/linux-x86/src/crypto/tls/
conn_test.go 69 Certificate: [][]byte{fromHex(certExampleCom)},
72 Certificate: [][]byte{fromHex(certWildcardExampleCom)},
75 Certificate: [][]byte{fromHex(certFooExampleCom)},
78 Certificate: [][]byte{fromHex(certDoubleWildcardExampleCom)},
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
reader.go 30 func fromHex(b byte) (byte, error) {
48 if hb, err = fromHex(v[0]); err != nil {
51 if lb, err = fromHex(v[1]); err != nil {
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
reader.go 30 func fromHex(b byte) (byte, error) {
48 if hb, err = fromHex(v[0]); err != nil {
51 if lb, err = fromHex(v[1]); err != nil {
  /prebuilts/go/darwin-x86/src/crypto/ecdsa/
ecdsa_test.go 194 func fromHex(s string) *big.Int {
291 pub.X = fromHex(line[5:])
293 pub.Y = fromHex(line[5:])
295 r = fromHex(line[4:])
297 s = fromHex(line[4:])
  /prebuilts/go/linux-x86/src/crypto/ecdsa/
ecdsa_test.go 194 func fromHex(s string) *big.Int {
291 pub.X = fromHex(line[5:])
293 pub.Y = fromHex(line[5:])
295 r = fromHex(line[4:])
297 s = fromHex(line[4:])
  /frameworks/base/packages/Osu/src/com/android/hotspot2/
Utils.java 50 int nibble = Utils.fromHex(s.charAt(n), true); // Set lenient to not blow up on ':'
192 (byte) (((fromHex(text.charAt(n), false) & NIBBLE_MASK) << 4) |
193 (fromHex(text.charAt(n + 1), false) & NIBBLE_MASK));
199 public static int fromHex(char ch, boolean lenient) throws NumberFormatException {
375 return fromHex(s.charAt(position)) << 4 | fromHex(s.charAt(position + 1));
378 private static int fromHex(char ch) {
  /frameworks/base/tools/obbtool/
Main.cpp 156 bool fromHex(char h, unsigned char *b) {
172 if (!fromHex(h1, &first)) return false;
173 if (!fromHex(h2, &second)) return false;
  /external/valgrind/coregrind/m_gdbserver/
remote-utils.c 597 int fromhex (int a) function
618 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
634 addr = addr | (fromhex (ch) & 0x0f);
1037 c1 = fromhex (readchar (0));
1038 c2 = fromhex (readchar (0));
    [all...]
  /external/valgrind/none/tests/amd64/
aes.c 22 static UChar fromhex(char x) { function
38 xx = fromhex (x);
39 yy = fromhex (y);
  /prebuilts/go/darwin-x86/src/crypto/rsa/
pss_test.go 151 msg := fromHex(<-values)
153 sig := fromHex(<-values)
252 func fromHex(hexStr string) []byte {

Completed in 2220 milliseconds

1 2 3 4