Searched refs:SHA384_P (Results 1 – 1 of 1) sorted by relevance
/external/pdfium/core/fdrm/crypto/ |
D | fx_crypt_sha.cpp | 410 #define SHA384_P(a, b, c, d, e, f, g, h, x, K) \ macro 526 SHA384_P(A, B, C, D, E, F, G, H, temp[0], FX_ato64i(constants[i * 8])); in sha384_process() 527 SHA384_P(H, A, B, C, D, E, F, G, temp[1], FX_ato64i(constants[i * 8 + 1])); in sha384_process() 528 SHA384_P(G, H, A, B, C, D, E, F, temp[2], FX_ato64i(constants[i * 8 + 2])); in sha384_process() 529 SHA384_P(F, G, H, A, B, C, D, E, temp[3], FX_ato64i(constants[i * 8 + 3])); in sha384_process() 530 SHA384_P(E, F, G, H, A, B, C, D, temp[4], FX_ato64i(constants[i * 8 + 4])); in sha384_process() 531 SHA384_P(D, E, F, G, H, A, B, C, temp[5], FX_ato64i(constants[i * 8 + 5])); in sha384_process() 532 SHA384_P(C, D, E, F, G, H, A, B, temp[6], FX_ato64i(constants[i * 8 + 6])); in sha384_process() 533 SHA384_P(B, C, D, E, F, G, H, A, temp[7], FX_ato64i(constants[i * 8 + 7])); in sha384_process()
|