Home
last modified time | relevance | path

Searched refs:sha1_uint32 (Results 1 – 2 of 2) sorted by relevance

/external/elfutils/src/lib/
Dsha1.h41 typedef uint32_t sha1_uint32; typedef
47 sha1_uint32 A;
48 sha1_uint32 B;
49 sha1_uint32 C;
50 sha1_uint32 D;
51 sha1_uint32 E;
53 sha1_uint32 total[2];
54 sha1_uint32 buflen;
55 char buffer[128] __attribute__ ((__aligned__ (__alignof__ (sha1_uint32))));
Dsha1.c74 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A);
75 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B);
76 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C);
77 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D);
78 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E);
101 sha1_uint32 bytes = ctx->buflen;
162 # define UNALIGNED_P(p) (((sha1_uintptr) p) % __alignof__ (sha1_uint32) != 0)
164 # define UNALIGNED_P(p) (((sha1_uintptr) p) % sizeof (sha1_uint32) != 0)
228 sha1_uint32 computed_words[16];
230 const sha1_uint32 *words = buffer;
[all …]