/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/digests/ |
D | MD5Digest.java | 206 int d = H4; in processBlock() local 211 a = rotateLeft(a + F(b, c, d) + X[ 0] + 0xd76aa478, S11) + b; in processBlock() 212 d = rotateLeft(d + F(a, b, c) + X[ 1] + 0xe8c7b756, S12) + a; in processBlock() 213 c = rotateLeft(c + F(d, a, b) + X[ 2] + 0x242070db, S13) + d; in processBlock() 214 b = rotateLeft(b + F(c, d, a) + X[ 3] + 0xc1bdceee, S14) + c; in processBlock() 215 a = rotateLeft(a + F(b, c, d) + X[ 4] + 0xf57c0faf, S11) + b; in processBlock() 216 d = rotateLeft(d + F(a, b, c) + X[ 5] + 0x4787c62a, S12) + a; in processBlock() 217 c = rotateLeft(c + F(d, a, b) + X[ 6] + 0xa8304613, S13) + d; in processBlock() 218 b = rotateLeft(b + F(c, d, a) + X[ 7] + 0xfd469501, S14) + c; in processBlock() 219 a = rotateLeft(a + F(b, c, d) + X[ 8] + 0x698098d8, S11) + b; in processBlock() [all …]
|
D | MD4Digest.java | 194 int d = H4; in processBlock() local 199 a = rotateLeft(a + F(b, c, d) + X[ 0], S11); in processBlock() 200 d = rotateLeft(d + F(a, b, c) + X[ 1], S12); in processBlock() 201 c = rotateLeft(c + F(d, a, b) + X[ 2], S13); in processBlock() 202 b = rotateLeft(b + F(c, d, a) + X[ 3], S14); in processBlock() 203 a = rotateLeft(a + F(b, c, d) + X[ 4], S11); in processBlock() 204 d = rotateLeft(d + F(a, b, c) + X[ 5], S12); in processBlock() 205 c = rotateLeft(c + F(d, a, b) + X[ 6], S13); in processBlock() 206 b = rotateLeft(b + F(c, d, a) + X[ 7], S14); in processBlock() 207 a = rotateLeft(a + F(b, c, d) + X[ 8], S11); in processBlock() [all …]
|
/dalvik/libcore/luni/src/main/native/ |
D | java_lang_Double.c | 16 double d; member 26 Double d; in doubleToLongBits() local 28 d.d = val; in doubleToLongBits() 33 if (isnan(d.d)) in doubleToLongBits() 34 d.bits = NaN; in doubleToLongBits() 36 return d.bits; in doubleToLongBits() 44 Double d; in doubleToRawLongBits() local 46 d.d = val; in doubleToRawLongBits() 48 return d.bits; in doubleToRawLongBits() 56 Double d; in longBitsToDouble() local [all …]
|
/dalvik/libcore/luni/src/main/java/java/lang/ |
D | Math.java | 68 public static double abs(double d) { in abs() argument 69 long bits = Double.doubleToLongBits(d); in abs() 147 public static native double acos(double d); in acos() argument 167 public static native double asin(double d); in asin() argument 189 public static native double atan(double d); in atan() argument 255 public static native double cbrt(double d); in cbrt() argument 277 public static native double ceil(double d); in ceil() argument 297 public static native double cos(double d); in cos() argument 317 public static native double cosh(double d); in cosh() argument 337 public static native double exp(double d); in exp() argument [all …]
|
D | StrictMath.java | 85 public static double abs(double d) { in abs() argument 86 long bits = Double.doubleToLongBits(d); in abs() 165 public static native double acos(double d); in acos() argument 184 public static native double asin(double d); in asin() argument 205 public static native double atan(double d); in atan() argument 270 public static native double cbrt(double d); in cbrt() argument 292 public static native double ceil(double d); in ceil() argument 311 public static native double cosh(double d); in cosh() argument 329 public static native double cos(double d); in cos() argument 348 public static native double exp(double d); in exp() argument [all …]
|
D | Double.java | 262 public static boolean isInfinite(double d) { in isInfinite() argument 263 return (d == POSITIVE_INFINITY) || (d == NEGATIVE_INFINITY); in isInfinite() 287 public static boolean isNaN(double d) { in isNaN() argument 288 return d != d; in isNaN() 346 public static String toString(double d) { in toString() argument 347 return org.apache.harmony.luni.util.NumberConverter.convert(d); in toString() 414 public static Double valueOf(double d) { in valueOf() argument 415 return new Double(d); in valueOf() 426 public static String toHexString(double d) { in toHexString() argument 430 if (d != d) { in toHexString() [all …]
|
/dalvik/tests/003-omnibus-opcodes/src/ |
D | FloatMath.java | 12 double d; in convTest() local 36 d = (double) f; in convTest() 37 assert(d > 1238.567 && d < 1238.568); in convTest() 40 d = 1234.5678; in convTest() 41 i = (int) d; in convTest() 44 d = -1234.5678; in convTest() 45 i = (int) d; in convTest() 49 d = 5678956789.0123; in convTest() 50 l = (long) d; in convTest() 53 d = -5678956789.0123; in convTest() [all …]
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/ |
D | JDKMessageDigest.java | 64 SHA1 d = (SHA1)super.clone(); in clone() local 65 d.digest = new SHA1Digest((SHA1Digest)digest); in clone() 67 return d; in clone() 83 SHA224 d = (SHA224)super.clone(); in clone() local 84 d.digest = new SHA224Digest((SHA224Digest)digest); in clone() 86 return d; in clone() 102 SHA256 d = (SHA256)super.clone(); in clone() local 103 d.digest = new SHA256Digest((SHA256Digest)digest); in clone() 105 return d; in clone() 121 SHA384 d = (SHA384)super.clone(); in clone() local [all …]
|
/dalvik/libdex/ |
D | sha1.c | 138 unsigned long a, b, c, d, e; in SHA1Transform() local 155 d = state[3]; in SHA1Transform() 158 R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); in SHA1Transform() 159 R0(c,d,e,a,b, 3); R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); in SHA1Transform() 160 R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7); R0(c,d,e,a,b, 8); in SHA1Transform() 161 R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11); in SHA1Transform() 162 R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); in SHA1Transform() 163 R0(a,b,c,d,e,15); R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); in SHA1Transform() 164 R1(c,d,e,a,b,18); R1(b,c,d,e,a,19); R2(a,b,c,d,e,20); in SHA1Transform() 165 R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23); in SHA1Transform() [all …]
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/ |
D | DoubleTest.java | 206 Double d = new Double(dd); in test_toString() local 207 assertEquals(answer, Double.toString(d.doubleValue())); in test_toString() 208 assertEquals(answer, d.toString()); in test_toString() 221 Double d = new Double(39089.88888888888888888888888888888888); in test_ConstructorD() local 222 assertEquals("Created incorrect double", 39089.88888888888888888888888888888888, d in test_ConstructorD() 236 Double d = new Double("39089.88888888888888888888888888888888"); in test_ConstructorLjava_lang_String() local 237 assertEquals("Created incorrect double", 39089.88888888888888888888888888888888, d in test_ConstructorLjava_lang_String() 242 d = new Double("1E+-20"); in test_ConstructorLjava_lang_String() 259 Double d = new Double(1923311.47712); in test_byteValue() local 260 assertEquals("Returned incorrect byte value", (byte) -17, d.byteValue()); in test_byteValue() [all …]
|
/dalvik/libcore/security/src/main/files/cacerts/ |
D | 7a819ef2.0 | 15 00:9a:18:ca:4b:94:0d:00:2d:af:03:29:8a:f0:0f: 16 81:c8:ae:4c:19:85:1d:08:9f:ab:29:44:85:f3:2f: 18 18:3a:5c:9c:60:17:2a:3a:74:83:33:30:7d:61:54: 20 0b:2d:fd:e9:3e:ef:0a:c6:b3:10:e9:dc:c2:46:17: 21 f8:5d:fd:a4:da:ff:9e:49:5a:9c:e6:33:e6:24:96: 23 8b:6d:28:60:2b:ef:d7:60:c3:c7:93:bc:8d:36:91: 29 d4:5c:02:2b:4c:39:e1:b2:95:95:2d:42:87:d7:d5: 31 75:f5:92:c3:91:d5:8a:88:d0:90:ec:dc:6d:de:89: 32 c2:65:71:96:8b:0d:03:fd:9c:bf:5b:16:ac:92:db: 37 dc:67:c1:0e:61:60:88:b3:3e:d1:a8:fc:a3:da:1d: [all …]
|
D | 23f4c490.0 | 16 ce:4d:ef:c8:03:18:87:3f:a1:ab:fb:3c:a6:9f:f0: 20 a7:4d:fa:5a:b6:73:04:25:66:eb:77:7f:e7:59:c6: 25 9b:19:18:3d:ff:71:51:3c:30:2e:5f:be:3d:77:73: 26 b2:5d:06:6c:c3:23:56:9a:2b:85:26:92:1c:a7:02: 27 b3:e4:3f:0d:af:08:79:82:b8:36:3d:ea:9c:d3:35: 28 b3:bc:69:ca:f5:cc:9d:e8:fd:64:8d:17:80:33:6e: 29 5e:4a:5d:99:c9:1e:87:b4:9d:1a:c0:d5:6e:13:35: 30 23:5e:df:9b:5f:3d:ef:d6:f7:76:c2:ea:3e:bb:78: 31 0d:1c:42:67:6b:04:d8:f8:d6:da:6f:8b:f2:44:a0: 45 05:9d:3f:88:9d:d1:c9:1a:55:a1:ac:69:f3:f3:59:da:9b:01: [all …]
|
D | 1dcd6f4c.0 | 5 1f:9d:59:5a:d7:2f:c2:06:44:a5:80:08:69:e3:5e:f6 18 e9:a5:df:4c:47:36:a4:1b:01:1c:7f:1e:57:8a:8d: 22 fa:a8:59:49:5d:6a:81:07:56:f2:8a:f9:06:d0:f7: 23 70:22:4d:b4:b7:41:b9:32:b8:b1:f0:b1:c3:9c:3f: 27 9a:bf:dc:cc:87:6d:26:e4:c9:57:a2:fb:96:f9:cc: 31 aa:28:fb:70:4c:1d:49:c7:af:2c:9d:6d:66:a6:b6: 32 8d:64:7e:b5:20:6a:9d:3b:81:b6:8f:40:00:67:4b: 33 89:86:b8:cc:65:fe:15:53:e9:04:c1:d6:5f:1d:44: 34 d7:0a:2f:27:9a:46:7d:a1:0d:75:ad:54:86:15:dc: 35 49:3b:f1:96:ce:0f:9b:a0:ec:a3:7a:5d:be:d5:2a: [all …]
|
D | a7605362.0 | 15 00:90:17:4a:35:9d:ca:f0:0d:96:c7:44:fa:16:37: 16 fc:48:bd:bd:7f:80:2d:35:3b:e1:6f:a8:67:a9:bf: 17 03:1c:4d:8c:6f:32:47:d5:41:68:a4:13:04:c1:35: 18 0c:9a:84:43:fc:5c:1d:ff:89:b3:e8:17:18:cd:91: 19 5f:fb:89:e3:ea:bf:4e:5d:7c:1b:26:d3:75:79:ed: 21 36:69:b3:fd:5e:76:bd:a3:2d:99:d3:90:4e:23:28: 22 7d:18:63:f1:54:3b:26:9d:76:5b:97:42:b2:ff:ae: 24 01:b2:54:5a:66:1d:3d:fc:f9:e9:3c:0a:9e:81:b8: 26 72:d4:54:cf:61:23:bc:ea:fb:9d:02:95:d1:b6:b9: 31 71:57:87:9d:f3:be:a0:90:23:3d:8a:24:e1:da:21: [all …]
|
D | ff783690.0 | 17 6d:9f:d2:ff:58:f3:e7:9f:2b:ec:0d:89:54:99:b9: 18 38:99:16:f7:e0:21:79:48:c2:bb:61:74:12:96:1d: 21 5e:8d:ab:d0:6a:fd:b9:2a:55:17:10:54:b3:19:f0: 22 9a:f6:f1:b1:5d:b6:a7:6d:fb:e0:71:17:6b:a2:88: 26 17:bc:8b:87:c3:89:d3:5d:a0:8e:b2:aa:aa:f6:8e: 27 69:88:06:c5:fa:89:21:f3:08:9d:69:2e:09:33:9b: 28 29:0d:46:0f:8c:cc:49:34:b0:69:51:bd:f9:06:cd: 29 68:ad:66:4c:bc:3e:ac:61:bd:0a:88:0e:c8:df:3d: 30 ee:7c:04:4c:9d:0a:5e:6b:91:d6:ee:c7:ed:28:8d: 31 ab:4d:87:89:73:d0:6e:a4:d0:1e:16:8b:14:e1:76: [all …]
|
D | 72fa7371.0 | 5 7d:d9:fe:07:cf:a8:1e:b7:10:79:67:fb:a7:89:34:c6 16 00:cc:5e:d1:11:5d:5c:69:d0:ab:d3:b9:6a:4c:99: 17 1f:59:98:30:8e:16:85:20:46:6d:47:3f:d4:85:20: 18 84:e1:6d:b3:f8:a4:ed:0c:f1:17:0f:3b:f9:a7:f9: 21 6e:f5:95:29:3c:50:e8:34:d7:78:1f:a8:ba:6d:43: 24 61:f8:9b:1d:1c:89:4f:5c:67 27 51:4d:cd:be:5c:cb:98:19:9c:15:b2:01:39:78:2e:4d:0f:67: 28 70:70:99:c6:10:5a:94:a4:53:4d:54:6d:2b:af:0d:5d:40:8b: 29 64:d3:d7:ee:de:56:61:92:5f:a6:c4:1d:10:61:36:d3:2c:27: 33 57:26:79:00:f6:f8:0d:a2:33:30:28:d4:aa:58:a0:9d:9d:69:
|
D | a3896b44.0 | 15 00:b3:b3:fe:7f:d3:6d:b1:ef:16:7c:57:a5:0c:6d: 18 26:69:51:05:99:26:dc:d5:1c:6a:71:c6:9a:7d:1e: 19 9d:dd:7c:6c:c6:8c:67:67:4a:3e:f8:71:b0:19:27: 22 68:06:98:14:96:87:d2:61:36:bc:6d:27:56:9e:57: 23 ee:c0:c0:56:fd:32:cf:a4:d9:8e:c2:23:d7:8d:a8: 24 f3:d8:25:ac:97:e4:70:38:f4:b6:3a:b4:9d:3b:97: 26 4e:be:1c:68:56:66:af:cd:41:5d:c8:b3:4d:2a:55: 27 46:ab:1f:da:1e:e2:40:3d:db:cd:7d:b9:92:80:9c: 28 37:dd:0c:96:64:9d:dc:22:f7:64:8b:df:61:de:15: 29 94:52:15:a0:7d:52:c9:4b:a8:21:c9:c6:b1:ed:cb: [all …]
|
D | 54edfa5d.0 | 15 00:b6:b4:c1:35:05:2e:0d:8d:ec:a0:40:6a:1c:0e: 17 fc:84:a8:5e:8c:63:6a:2b:4d:d9:4e:02:76:11:c1: 18 0b:f2:8d:79:ca:00:b6:f1:b0:0e:d7:fb:a4:17:3d: 21 ab:8d:28:86:df:bb:ee:e3:0c:7d:30:d6:c3:52:ab: 22 8f:5d:27:9c:6b:c0:a3:e7:05:6b:57:49:44:b3:6e: 35 16:3d:c6:cd:c1:bb:85:71:85:46:9f:3e:20:8f:51:28:99:ec: 36 2d:45:21:63:23:5b:04:bb:4c:90:b8:88:92:04:4d:bd:7d:01: 37 a3:3f:f6:ec:ce:f1:de:fe:7d:e5:e1:3e:bb:c6:ab:5e:0b:dd: 38 3d:96:c4:cb:a9:d4:f9:26:e6:06:4e:9e:0c:a5:7a:ba:6e:c3: 39 7c:82:19:d1:c7:b1:b1:c3:db:0d:8e:9b:40:7c:37:0b:f1:5d: [all …]
|
D | e60bf0c0.0 | 5 5c:0b:85:5c:0b:e7:59:41:df:57:cc:3f:7f:9d:a8:36 17 80:16:65:20:75:b2:3d:9b:60:6d:46:c8:8c:31:6f: 19 49:90:2a:19:4b:1e:a3:6d:57:dd:f1:2b:62:28:75: 22 00:9f:d6:3a:71:5f:4d:6d:ce:5f:b9:a9:e4:89:7f: 23 6a:52:fa:ca:9b:f2:dc:a9:f9:9d:99:47:3f:4e:29: 24 5f:b4:a6:8d:5d:7b:0b:99:11:03:03:fe:e7:db:db: 25 a3:ff:1d:a5:cd:90:1e:01:1f:35:b0:7f:00:db:90: 26 6f:c6:7e:7b:d1:ee:7a:7a:a7:aa:0c:57:6f:a4:6d: 28 73:87:e5:d3:17:7c:66:50:72:5d:d4:1a:58:c1:d9: 29 cf:d8:89:02:6f:a7:49:b4:36:5d:d0:a4:de:07:2c: [all …]
|
D | 4d654d1d.0 | 16 0e:2e:b0:94:d0:1b:3d:0e:f6:94:c0:8a:94:c7:06: 18 73:60:7f:b2:97:53:07:9f:53:f9:6d:58:94:d2:af: 19 8d:6d:88:67:80:e6:ed:b2:95:cf:72:31:ca:a5:1c: 20 72:ba:5c:02:e7:64:42:e7:f9:a9:2c:d6:3a:0d:ac: 21 8d:42:aa:24:01:39:e6:9c:3f:01:85:57:0d:58:87: 26 6d:eb:1b:09:e9:5e:d9:51:db:67:22:61:a4:2a:3c:48:77:e3: 27 a0:7c:a6:de:73:a2:14:03:85:3d:fb:ab:0e:30:c5:83:16:33: 28 81:13:08:9e:7b:34:4e:df:40:c8:74:d7:b9:7d:dc:f4:76:55: 29 7d:9b:63:54:18:e9:f0:ea:f3:5c:b1:d9:8b:42:1e:b9:c0:95: 31 a3:85:34:c4:24:a7:0d:0f:95:93:ef:cb:94:d8:9e:1f:9d:5c: [all …]
|
/dalvik/tests/027-arithmetic/src/ |
D | Main.java | 42 long d = 0x44; in shiftTest2() local 48 long result = ((a << 56) | (b << 48) | (c << 40) | (d << 32) | in shiftTest2() 57 double d; in convTest() local 71 d = 1234.5678; in convTest() 72 i = (int) d; in convTest() 73 System.out.println("d=" + d + " --> i=" + i); in convTest() 75 d = -1234.5678; in convTest() 76 i = (int) d; in convTest() 77 System.out.println("d=" + d + " --> i=" + i); in convTest() 80 d = 5678956789.0123; in convTest() [all …]
|
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
D | DateTest.java | 288 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getDate() local 290 assertEquals("Returned incorrect date", 13, d.getDate()); in test_getDate() 304 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getDay() local 306 assertEquals("Returned incorrect day", 2, d.getDay()); in test_getDay() 320 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getHours() local 322 assertEquals("Returned incorrect hours", 19, d.getHours()); in test_getHours() 336 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getMinutes() local 338 assertEquals("Returned incorrect minutes", 9, d.getMinutes()); in test_getMinutes() 352 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getMonth() local 354 assertEquals("Returned incorrect month", 9, d.getMonth()); in test_getMonth() [all …]
|
D | ArraysTest.java | 397 byte d[] = new byte[1000]; in test_fill$BB() 398 Arrays.fill(d, Byte.MAX_VALUE); in test_fill$BB() 399 for (int i = 0; i < d.length; i++) in test_fill$BB() 401 d[i] == Byte.MAX_VALUE); in test_fill$BB() 416 byte d[] = new byte[1000]; in test_fill$BIIB() 417 Arrays.fill(d, 400, d.length, val); in test_fill$BIIB() 419 assertTrue("Filled elements not in range", !(d[i] == val)); in test_fill$BIIB() 420 for (int i = 400; i < d.length; i++) in test_fill$BIIB() 421 assertTrue("Failed to fill byte array correctly", d[i] == val); in test_fill$BIIB() 465 short d[] = new short[1000]; in test_fill$SS() local [all …]
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/crypto/ |
D | SHA1Impl.java | 79 int d = arrW[HASH_OFFSET +3]; in computeHash() local 101 ( ( b & c) | ((~b) & d) ) + in computeHash() 103 e = d; in computeHash() 104 d = c; in computeHash() 111 temp = ((( a<<5 ) | ( a>>>27 ))) + (b ^ c ^ d) + (e + arrW[t] + 0x6ED9EBA1) ; in computeHash() 112 e = d; in computeHash() 113 d = c; in computeHash() 120 temp = (( a<<5 ) | ( a>>>27 )) + ((b & c) | (b & d) | (c & d)) + in computeHash() 122 e = d; in computeHash() 123 d = c; in computeHash() [all …]
|
/dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/ |
D | DocumentBuilderTest.java | 188 Document d; in testNewDocument() local 191 d = dbf.newDocumentBuilder().newDocument(); in testNewDocument() 196 assertNotNull(d); in testNewDocument() 197 assertNull(d.getDoctype()); in testNewDocument() 198 assertNull(d.getDocumentElement()); in testNewDocument() 199 assertNull(d.getNamespaceURI()); in testNewDocument() 209 DOMImplementation d; in testGetImplementation() local 212 d = dbf.newDocumentBuilder().getDOMImplementation(); in testGetImplementation() 217 assertNotNull(d); in testGetImplementation() 287 Document d = db.parse(f); in test_parseLjava_io_File() local [all …]
|