Lines Matching refs:data
60 sha256_process(context_sha256_T *ctx, char_u data[64]) in sha256_process()
65 GET_UINT32(W[0], data, 0); in sha256_process()
66 GET_UINT32(W[1], data, 4); in sha256_process()
67 GET_UINT32(W[2], data, 8); in sha256_process()
68 GET_UINT32(W[3], data, 12); in sha256_process()
69 GET_UINT32(W[4], data, 16); in sha256_process()
70 GET_UINT32(W[5], data, 20); in sha256_process()
71 GET_UINT32(W[6], data, 24); in sha256_process()
72 GET_UINT32(W[7], data, 28); in sha256_process()
73 GET_UINT32(W[8], data, 32); in sha256_process()
74 GET_UINT32(W[9], data, 36); in sha256_process()
75 GET_UINT32(W[10], data, 40); in sha256_process()
76 GET_UINT32(W[11], data, 44); in sha256_process()
77 GET_UINT32(W[12], data, 48); in sha256_process()
78 GET_UINT32(W[13], data, 52); in sha256_process()
79 GET_UINT32(W[14], data, 56); in sha256_process()
80 GET_UINT32(W[15], data, 60); in sha256_process()