/system/core/fastboot/ |
D | engine.cpp | 67 int (*func)(Action* a, int status, const char* resp); 91 static int cb_default(Action* a, int status, const char* resp) { in cb_default() argument 96 fprintf(stderr,"OKAY [%7.3fs]\n", (split - a->start)); in cb_default() 97 a->start = split; in cb_default() 107 Action* a = reinterpret_cast<Action*>(calloc(1, sizeof(Action))); in queue_action() local 108 if (a == nullptr) die("out of memory"); in queue_action() 111 cmdsize = vsnprintf(a->cmd, sizeof(a->cmd), fmt, ap); in queue_action() 114 if (cmdsize >= sizeof(a->cmd)) { in queue_action() 115 free(a); in queue_action() 116 die("Command length (%d) exceeds maximum size (%d)", cmdsize, sizeof(a->cmd)); in queue_action() [all …]
|
/system/bt/stack/smp/ |
D | p_256_multprecision.c | 36 void multiprecision_copy(DWORD *c, DWORD *a, uint32_t keyLength) in multiprecision_copy() argument 39 c[i] = a[i]; in multiprecision_copy() 42 int multiprecision_compare(DWORD *a, DWORD *b, uint32_t keyLength) in multiprecision_compare() argument 46 if (a[i] > b[i]) in multiprecision_compare() 48 if (a[i] < b[i]) in multiprecision_compare() 54 int multiprecision_iszero(DWORD *a, uint32_t keyLength) in multiprecision_iszero() argument 57 if (a[i]) in multiprecision_iszero() 63 UINT32 multiprecision_dword_bits(DWORD a) in multiprecision_dword_bits() argument 66 for (i = 0; i < DWORD_BITS; i++, a >>= 1) in multiprecision_dword_bits() 67 if (a == 0) in multiprecision_dword_bits() [all …]
|
D | p_256_multprecision.h | 39 int multiprecision_compare(DWORD *a, DWORD *b, uint32_t keyLength); 40 int multiprecision_iszero(DWORD *a, uint32_t keyLength); 42 void multiprecision_copy(DWORD *c, DWORD *a, uint32_t keyLength); 43 UINT32 multiprecision_dword_bits (DWORD a); 44 UINT32 multiprecision_most_signdwords(DWORD *a, uint32_t keyLength); 45 UINT32 multiprecision_most_signbits(DWORD *a, uint32_t keyLength); 46 void multiprecision_inv_mod(DWORD *aminus, DWORD *a, uint32_t keyLength); 47 DWORD multiprecision_add(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength); // c=a+b 48 void multiprecision_add_mod(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength); 49 DWORD multiprecision_sub(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength); // c=a-b [all …]
|
/system/extras/ext4_utils/ |
D | sha1.c | 71 void do_R01(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *); 72 void do_R2(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *); 73 void do_R3(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *); 74 void do_R4(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *); 83 do_R01(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *block) in do_R01() argument 85 nR0(a,b,c,d,e, 0); nR0(e,a,b,c,d, 1); nR0(d,e,a,b,c, 2); nR0(c,d,e,a,b, 3); in do_R01() 86 nR0(b,c,d,e,a, 4); nR0(a,b,c,d,e, 5); nR0(e,a,b,c,d, 6); nR0(d,e,a,b,c, 7); in do_R01() 87 nR0(c,d,e,a,b, 8); nR0(b,c,d,e,a, 9); nR0(a,b,c,d,e,10); nR0(e,a,b,c,d,11); in do_R01() 88 nR0(d,e,a,b,c,12); nR0(c,d,e,a,b,13); nR0(b,c,d,e,a,14); nR0(a,b,c,d,e,15); in do_R01() 89 nR1(e,a,b,c,d,16); nR1(d,e,a,b,c,17); nR1(c,d,e,a,b,18); nR1(b,c,d,e,a,19); in do_R01() [all …]
|
/system/extras/ksmutils/ |
D | lookup3.c | 115 #define mix(a,b,c) \ argument 117 a -= c; a ^= rot(c, 4); c += b; \ 118 b -= a; b ^= rot(a, 6); a += c; \ 119 c -= b; c ^= rot(b, 8); b += a; \ 120 a -= c; a ^= rot(c,16); c += b; \ 121 b -= a; b ^= rot(a,19); a += c; \ 122 c -= b; c ^= rot(b, 4); b += a; \ 150 #define final(a,b,c) \ argument 153 a ^= c; a -= rot(c,11); \ 154 b ^= a; b -= rot(a,25); \ [all …]
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
D | ggl_fixed.h | 87 GGLfixed gglSqrtx(GGLfixed a) CONST; 90 int32_t gglMulDivi(int32_t a, int32_t b, int32_t c); 133 inline GGLfixed gglMulAddx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) CONST; 134 inline GGLfixed gglMulAddx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) { in gglMulAddx() argument 141 : "%[x]"(x), [y]"r"(y), [a]"r"(a), [lshift] "I"(32-shift), [rshift] "I"(shift) in gglMulAddx() 148 : "%[x]"(x), [y]"r"(y), [a]"r"(a), [lshift] "r"(32-shift), [rshift] "r"(shift) in gglMulAddx() 154 inline GGLfixed gglMulSubx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) CONST; 155 inline GGLfixed gglMulSubx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) { in gglMulSubx() argument 162 : "%[x]"(x), [y]"r"(y), [a]"r"(a), [lshift] "I"(32-shift), [rshift] "I"(shift) in gglMulSubx() 169 : "%[x]"(x), [y]"r"(y), [a]"r"(a), [lshift] "r"(32-shift), [rshift] "r"(shift) in gglMulSubx() [all …]
|
/system/ca-certificates/files/ |
D | 9d6523ce.0 | 50 3a:4e:6d:9d:d3:2f:14:f3:63:74:cb:01:21:6a:37: 51 ea:84:50:07:4b:26:5b:09:43:6c:21:9e:6a:c8:d5: 52 03:f5:60:69:8f:cc:f0:22:e4:1f:e7:f7:6a:22:31: 53 b7:2c:15:f2:e0:fe:00:6a:43:ff:87:65:c6:b5:1a: 54 c1:a7:4c:6d:22:70:21:8a:31:f2:97:74:89:09:12: 56 64:e3:d6:42:b7:45:ef:97:f4:f6:f5:d7:b5:4a:15: 57 02:58:7d:98:58:4b:60:bc:cd:d7:0d:9a:13:33:53: 58 d1:61:f9:7a:d5:d7:78:b3:9a:33:f7:00:86:ce:1d: 59 4d:94:38:af:a8:ec:78:51:70:8a:5c:10:83:51:21: 62 10:0a:d9:24:3b:ba:be:44:13:46:30:3f:97:3c:d8: [all …]
|
D | f80cc7f6.0 | 49 00:ee:a0:84:61:d0:3a:6a:66:10:32:d8:31:38:7f: 54 29:bf:fb:89:91:0c:64:9a:05:4a:2b:cc:0c:ee:f1: 55 3d:9b:82:69:a4:4c:f8:9a:6f:e7:22:da:10:ba:5f: 56 92:fc:18:27:0a:a8:aa:44:fa:2e:2c:b4:fb:46:9a: 57 08:03:83:72:ab:88:e4:6a:72:c9:e5:65:1f:6e:2a: 58 0f:9d:b3:e8:3b:e4:0c:6e:7a:da:57:fd:d7:eb:79: 60 51:d1:28:9d:a1:1a:fc:44:a2:4d:cc:7a:76:a8:0d: 61 3d:bf:17:4f:22:88:50:fd:ae:b6:ec:90:50:4a:5b: 62 9f:95:41:aa:ca:0f:b2:4a:fe:80:99:4e:a3:46:15: 63 ab:f8:73:42:6a:c2:66:76:b1:0a:26:15:dd:93:92: [all …]
|
D | d59297b8.0 | 37 ae:3a:43:65:80:4b:c7:f2:96:bc:db:36:97:d6:a6: 38 64:8c:a8:5e:f0:e3:0a:1c:f7:df:97:3d:4b:ae:f6: 41 89:99:ca:e5:ab:6a:d4:b5:da:41:90:10:c1:d6:d6: 44 15:be:3a:56:a6:5a:6f:76:69:52:a9:7a:b9:c8:eb: 45 6a:9a:5d:52:d0:2d:0a:6b:35:16:09:10:84:d0:6a: 46 ca:3a:06:00:37:47:e4:7e:57:4f:3f:8b:eb:67:b8: 48 78:2e:db:61:1a:fa:85:f5:4a:91:a1:e7:16:d5:8e: 50 3c:83:2a:1a:99:6b:cf:de:59:6a:3b:fc:6f:16:d7: 51 1f:fd:4a:10:eb:4e:82:16:3a:ac:27:0c:53:f1:ad: 52 d5:24:b0:6b:03:50:c1:2d:3c:16:dd:44:34:27:1a: [all …]
|
D | 5046c355.0 | 55 92:cb:f0:49:92:fe:85:0a:05:3e:e6:d9:0b:e2:4f: 56 bb:dc:95:37:fc:91:e9:32:35:22:d1:1f:3a:4e:27: 58 47:e8:83:5a:50:58:e9:8a:8b:b9:5d:a1:dc:dd:99: 59 4a:1f:36:67:bb:48:e4:83:b6:37:eb:48:3a:af:0f: 60 67:8f:17:07:e8:04:ca:ef:6a:31:87:d4:c0:b6:f9: 61 94:71:7b:67:64:b8:b6:91:4a:42:7b:65:2e:30:6a: 62 0c:f5:90:ee:95:e6:f2:cd:82:ec:d9:a1:4a:ec:f6: 64 a9:c4:31:64:1f:86:83:0b:2a:f4:35:0a:78:c9:55: 66 7a:5f:38:d9:1b:a9:38:b0:83:7f:73:c1:c3:3b:48: 67 2a:82:0f:21:9b:b8:cc:a8:35:c3:84:1b:83:b3:3e: [all …]
|
D | 9ab62355.0 | 51 52:09:60:44:28:33:a3:7a:4e:0a:fa:d8:ea:6c:8b: 52 51:16:1a:55:ae:54:26:c4:cc:45:07:41:4f:10:79: 53 7f:71:d2:7a:4e:3f:38:4e:b3:00:c6:95:ca:5b:cd: 54 c1:2a:83:d7:27:1f:31:0e:23:16:b7:25:cb:1c:b4: 55 b9:80:32:5e:1a:9d:93:f1:e8:3c:60:2c:a7:5e:57: 57 b8:c2:24:a8:13:c7:a0:21:36:1b:7a:57:29:28:a7: 68 0b:1a:1b:3f:f6:02:7e:7b:d4:c5:51:64:28:9d:f5: 69 d3:ac:83:81:88:d3:74:b4:59:9d:c1:eb:61:33:5a: 70 45:d1:cb:39:d0:06:6a:53:60:1d:af:f6:fb:69:bc: 71 6a:dc:01:cf:bd:f9:8f:d9:bd:5b:c1:3a:5f:8e:da: [all …]
|
D | 4be590e0.0 | 36 0a:01:42:80:00:00:01:45:23:cf:46:7c:00:00:00:02 47 00:b6:22:94:fc:a4:48:af:e8:47:6b:0a:fb:27:76: 48 e4:f2:3f:8a:3b:7a:4a:2c:31:2a:8c:8d:b0:a9:c3: 50 58:bb:7a:f8:bc:65:7d:f2:a0:6d:8b:a8:47:e9:62: 52 2f:5e:db:cb:73:41:ae:bc:00:b0:4a:2b:40:b2:ac: 53 e1:3b:4b:c2:2d:9d:e4:a1:9b:ec:1a:3a:1e:f0:08: 56 a4:31:28:57:58:5a:e4:8d:1b:9a:ab:9e:0d:0c:f2: 57 0a:33:39:22:39:0a:97:2e:f3:53:77:b9:44:45:fd: 58 84:cb:36:20:81:59:2d:9a:6f:6d:48:48:61:ca:4c: 61 cd:d1:de:3e:87:10:36:e1:b9:a4:7a:ef:60:50:b2: [all …]
|
D | ee90b008.0 | 47 03:95:7a:af:0e:a3:55:c9:25:99:4a:c5:d0:56:41: 49 03:6a:ed:e1:0f:4b:c0:91:85:70:45:e0:42:9e:de: 51 d1:c6:e0:0f:cb:9e:8a:14:0a:b8:bd:f6:56:62:f1: 53 92:6f:18:8b:00:41:14:82:6f:40:20:26:7a:28:0f: 55 ec:fd:94:89:e1:cc:6e:d3:36:d6:0a:19:79:ae:d7: 63 f6:80:2b:1a:23:02:eb:8a:1c:3a:76:2a:7b:56:16: 64 1c:72:2a:b3:aa:e3:60:a5:00:9f:04:9b:e2:6f:1e: 65 14:58:5b:a5:6c:8b:58:3c:c3:ba:4e:3a:5c:f7:e1: 67 aa:bb:e1:6e:1a:ec:8f:e1:b6:4c:4d:79:72:5d:17: 68 35:0b:1d:d7:c1:47:da:96:24:e0:d0:72:a8:5a:5f: [all …]
|
D | 48a195d8.0 | 39 b0:b7:5a:16:48:5f:bf:e1:cb:f5:8b:d7:19:e6:7d 50 00:c9:d3:7a:ca:0f:1e:ac:a7:86:e8:16:65:6a:b1: 53 a4:2c:44:d8:9e:92:9b:14:3a:a1:e7:24:90:0a:0a: 54 56:8e:c5:d8:26:94:e1:d9:48:e1:2d:3e:da:0a:72: 56 ad:d6:eb:0c:b2:41:7a:73:6e:6d:db:7a:78:41:e9: 58 c0:bc:2e:ff:c2:b7:dd:0d:76:e3:3a:d7:f7:b4:68: 60 55:89:1a:33:31:0a:b1:57:b9:a3:8a:98:c3:ec:3b: 62 a0:20:90:93:a1:90:4b:f3:4e:7c:85:45:54:9a:d1: 66 4d:4d:64:c0:e1:0d:5a:87:22:bc:ad:1b:a3:fe:26: 69 26:ca:17:b8:c9:7a:87:56:2c:1a:01:1e:6c:be:13: [all …]
|
D | d6e6eab9.0 | 47 00:d4:cc:09:0a:2c:3f:92:f6:7f:14:9e:0b:9c:9a: 48 6a:1d:40:30:64:fd:aa:df:0e:1e:06:5b:9f:50:85: 51 ea:93:a8:77:9b:4a:f0:ef:74:80:2d:eb:30:1f:b5: 52 d9:c7:80:9c:62:27:91:88:f0:4a:89:dd:dc:88:e6: 54 59:95:0a:c6:47:7c:69:18:b9:a7:03:f9:ca:76:a9: 56 ed:29:66:3b:f3:4a:16:82:f6:d6:9a:db:72:98:e9: 59 58:45:2e:34:aa:84:50:bd:e7:b2:4a:13:b8:b0:0f: 60 ae:38:5d:b0:a9:1b:e6:73:c9:5a:a1:d9:66:40:aa: 61 a9:4d:a6:34:02:ad:84:7e:b2:23:c1:fb:2a:c6:67: 62 f4:34:b6:b0:95:6a:33:4f:71:44:b5:ad:c0:79:33: [all …]
|
D | 5a250ea7.0 | 48 51:e8:85:2a:b3:cc:4a:34:f2:b0:5f:f3:0e:c7:1c: 50 07:27:87:68:71:3a:9f:75:96:22:46:05:b0:ed:ad: 51 c7:5b:9e:2a:de:9c:fc:3a:c6:95:a7:f5:17:67:18: 53 dc:6b:32:f0:a2:fe:b6:3c:e4:ec:5a:97:c7:3f:1e: 56 8d:38:33:90:0a:72:23:fa:35:cc:26:71:31:d1:72: 60 11:42:d1:f7:24:ba:60:78:1a:98:f7:c9:11:fd:16: 61 c1:35:1a:54:75:ef:43:d3:e5:ae:4e:ce:e7:7b:c3: 62 c6:4e:61:51:4b:ab:9a:45:4b:a1:1f:41:bd:48:53: 65 c6:fc:7f:2b:66:1a:ec:8a:e5:d6:cf:4d:f5:63:09: 68 5a:37:40:89:d8:85:a4:d7:f1:0b:de:43:19:d4:4a: [all …]
|
D | 9282e51c.0 | 51 2a:4b:4c:8a:53:52:7a:c3:ee:2e:de:b3:71:25:c1: 52 e9:5d:3d:ee:a1:2f:a3:f7:2a:3c:c9:23:1d:6a:ab: 56 25:e8:84:29:53:b7:b1:88:1f:ff:fa:da:90:9f:0a: 57 a9:2d:41:3f:b1:f1:18:29:ee:16:59:2c:34:49:1a: 58 a8:06:d7:a8:88:d2:03:72:7a:32:e2:ea:68:4d:6e: 62 6f:c3:18:8a:b5:95:8f:b0:7a:37:de:5a:45:3b:c7: 65 b7:1b:70:d3:88:69:b9:5a:d6:38:f4:62:dc:25:8b: 68 f6:97:5a:7b:96:16:8f:01:19:2d:6c:6e:7f:39:58: 70 e9:16:ce:aa:2d:68:af:0a:81:65:3a:70:c1:9b:ad: 71 4d:6d:54:ca:2a:2d:4b:85:1b:b3:80:e6:70:45:0d: [all …]
|
D | 4e18c148.0 | 38 e4:39:6f:35:5d:4a:ae:dd:ea:61:8d:95:49:f4:6f: 39 64:a3:1a:60:66:a4:a9:40:22:84:d9:d4:a5:e5:78: 40 93:0e:68:01:ad:b9:4d:5c:3a:ce:d3:b8:a8:42:40: 41 df:cf:a3:ba:82:59:6a:92:1b:ac:1c:9a:da:08:2b: 42 25:27:f9:69:23:47:f1:e0:eb:2c:7a:9b:f5:13:02: 45 0e:08:48:56:5b:6a:fb:da:e1:58:58:01:49:5f:72: 47 a7:e8:6a:2d:52:34:db:3a:ef:5c:75:51:da:db:f3: 49 ad:df:18:08:a0:a3:86:8a:49:ee:53:05:8f:19:4c: 50 d5:de:58:79:9b:d2:6a:1c:42:ab:c5:d5:a7:cf:68: 52 91:50:87:e1:9d:0a:e6:ad:97:d2:1d:c6:3a:7d:cb: [all …]
|
D | 1dcd6f4c.0 | 37 1f:9d:59:5a:d7:2f:c2:06:44:a5:80:08:69:e3:5e:f6 48 00:9a:25:b8:ec:cc:a2:75:a8:7b:f7:ce:5b:59:8a: 50 e9:a5:df:4c:47:36:a4:1b:01:1c:7f:1e:57:8a:8d: 52 e7:2c:1c:93:d1:bf:1b:01:87:53:99:ce:a7:f5:0a: 54 fa:a8:59:49:5d:6a:81:07:56:f2:8a:f9:06:d0:f7: 57 6a:84:24:72:54:86:c6:d2:b2:ca:1c:0e:79:81:d6: 59 9a:bf:dc:cc:87:6d:26:e4:c9:57:a2:fb:96:f9:cc: 61 c8:c2:ad:b1:cd:80:b4:97:dc:76:01:16:15:e9:6a: 64 8d:64:7e:b5:20:6a:9d:3b:81:b6:8f:40:00:67:4b: 66 d7:0a:2f:27:9a:46:7d:a1:0d:75:ad:54:86:15:dc: [all …]
|
D | 3c860d51.0 | 26 GPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxpmo/a 49 3b:92:92:5c:ca:b8:5d:84:92:42:13:2a:bc:65:57: 50 82:40:3e:57:24:cd:50:8b:25:2a:b7:6f:fc:ef:a2: 51 d0:c0:1f:02:24:4a:13:96:8f:23:13:e6:28:58:00: 53 8b:c1:57:1f:0e:62:65:0f:dd:3d:56:8a:73:da:ae: 56 9f:2e:d8:3e:e6:18:37:5a:2a:72:f9:da:62:90:92: 57 95:ca:1f:9c:e9:b3:3c:2b:cb:f3:01:13:bf:5a:cf: 58 c1:b5:0a:60:bd:dd:b5:99:64:53:b8:a0:96:b3:6f: 60 33:51:de:be:8d:ba:84:7a:60:3c:6a:db:9f:2b:ec: 62 c5:ca:5a:8c:da:d2:2b:7c:a8:ee:be:a6:e5:0a:aa: [all …]
|
/system/core/include/cutils/ |
D | atomic.h | 84 volatile atomic_int_least32_t* a = (volatile atomic_int_least32_t*)addr; in android_atomic_inc() local 86 return atomic_fetch_add_explicit(a, 1, memory_order_release); in android_atomic_inc() 92 volatile atomic_int_least32_t* a = (volatile atomic_int_least32_t*)addr; in android_atomic_dec() local 93 return atomic_fetch_sub_explicit(a, 1, memory_order_release); in android_atomic_dec() 99 volatile atomic_int_least32_t* a = (volatile atomic_int_least32_t*)addr; in android_atomic_add() local 100 return atomic_fetch_add_explicit(a, value, memory_order_release); in android_atomic_add() 106 volatile atomic_int_least32_t* a = (volatile atomic_int_least32_t*)addr; in android_atomic_and() local 107 return atomic_fetch_and_explicit(a, value, memory_order_release); in android_atomic_and() 113 volatile atomic_int_least32_t* a = (volatile atomic_int_least32_t*)addr; in android_atomic_or() local 114 return atomic_fetch_or_explicit(a, value, memory_order_release); in android_atomic_or() [all …]
|
/system/core/include/mincrypt/ |
D | p256.h | 51 p256_digit a[P256_NDIGITS]; member 59 void p256_init(p256_int* a); 62 void p256_clear(p256_int* a); 65 int p256_get_bit(const p256_int* a, int index); 70 const p256_int* a, 76 const p256_int* a, 85 const p256_int* a, 93 const p256_int* a, 98 p256_digit p256_shl(const p256_int* a, int n, p256_int* b); 101 void p256_shr(const p256_int* a, int n, p256_int* b); [all …]
|
/system/extras/tests/net_test/ |
D | cstruct_test.py | 29 def CheckEquals(self, a, b): argument 30 self.assertEquals(a, b) 31 self.assertEquals(b, a) 32 assert a == b 33 assert b == a 34 assert not (a != b) # pylint: disable=g-comparison-negation,superfluous-parens 35 assert not (b != a) # pylint: disable=g-comparison-negation,superfluous-parens 37 def CheckNotEquals(self, a, b): argument 38 self.assertNotEquals(a, b) 39 self.assertNotEquals(b, a) [all …]
|
/system/core/libpixelflinger/ |
D | fixed.cpp | 29 uint32_t a = s ? -x : x; in gglRecipQNormalized() local 32 if (ggl_unlikely(a <= 2LU)) { in gglRecipQNormalized() 40 const int32_t lz = gglClz(a); in gglRecipQNormalized() 41 a <<= lz; // 0.32 in gglRecipQNormalized() 42 uint32_t r = a; in gglRecipQNormalized() 46 if (a != 0x80000000) { in gglRecipQNormalized() 50 r = (((2LU<<30) - uint32_t((uint64_t(a)*r) >> 32)) * uint64_t(r)) >> 30; in gglRecipQNormalized() 51 r = (((2LU<<30) - uint32_t((uint64_t(a)*r) >> 32)) * uint64_t(r)) >> 30; in gglRecipQNormalized() 93 const GGLfixed a = x; in gglSqrtRecipx() local 95 x = ggl_sqrt_reciproc_approx_tab[(a>>(28-lz))&0x7]; in gglSqrtRecipx() [all …]
|
/system/core/libmincrypt/ |
D | p256.c | 52 void p256_init(p256_int* a) { in p256_init() argument 53 memset(a, 0, sizeof(*a)); in p256_init() 56 void p256_clear(p256_int* a) { p256_init(a); } in p256_clear() argument 63 int p256_is_zero(const p256_int* a) { in p256_is_zero() argument 65 for (i = 0; i < P256_NDIGITS; ++i) result |= P256_DIGIT(a, i); in p256_is_zero() 71 static p256_digit mulAdd(const p256_int* a, in mulAdd() argument 80 carry += (p256_ddigit)P256_DIGIT(a, i) * b; in mulAdd() 89 const p256_digit* a, in subTop() argument 97 borrow -= *a++; in subTop() 144 const p256_int* a, in p256_modmul() argument [all …]
|