HomeSort by relevance Sort by last modified time
    Searched refs:fromHex (Results 1 - 25 of 48) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_float.py     [all...]
  /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),
  /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) {
  /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/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)},
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
Utils.java 51 int nibble = Utils.fromHex(s.charAt(n), true); // Set lenient to not blow up on ':'
179 (byte) (((fromHex(text.charAt(n), false) & NIBBLE_MASK) << 4) |
180 (fromHex(text.charAt(n + 1), false) & NIBBLE_MASK));
186 public static int fromHex(char ch, boolean lenient) throws NumberFormatException {
  /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;
  /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:])
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
NormalizerBuilder.java 176 String decomp = fromHex(segment);
444 static public String fromHex(String source) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
NormalizerBuilder.java 175 String decomp = fromHex(segment);
443 static public String fromHex(String source) {
  /prebuilts/go/darwin-x86/src/crypto/rsa/
pss_test.go 151 msg := fromHex(<-values)
153 sig := fromHex(<-values)
252 func fromHex(hexStr string) []byte {
  /prebuilts/go/linux-x86/src/crypto/rsa/
pss_test.go 151 msg := fromHex(<-values)
153 sig := fromHex(<-values)
252 func fromHex(hexStr string) []byte {
  /prebuilts/go/darwin-x86/src/mime/
encodedword.go 396 if hb, err = fromHex(a); err != nil {
399 if lb, err = fromHex(b); err != nil {
405 func fromHex(b byte) (byte, error) {
  /prebuilts/go/linux-x86/src/mime/
encodedword.go 396 if hb, err = fromHex(a); err != nil {
399 if lb, err = fromHex(b); err != nil {
405 func fromHex(b byte) (byte, error) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Utility.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Utility.java     [all...]

Completed in 1868 milliseconds

1 2