OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sha1_uint32
(Results
1 - 2
of
2
) sorted by null
/external/elfutils/lib/
sha1.h
38
typedef uint32_t
sha1_uint32
;
typedef
44
sha1_uint32
A;
45
sha1_uint32
B;
46
sha1_uint32
C;
47
sha1_uint32
D;
48
sha1_uint32
E;
50
sha1_uint32
total[2];
51
sha1_uint32
buflen;
52
char buffer[128] __attribute__ ((__aligned__ (__alignof__ (
sha1_uint32
))));
sha1.c
77
((
sha1_uint32
*) resbuf)[0] = SWAP (ctx->A);
78
((
sha1_uint32
*) resbuf)[1] = SWAP (ctx->B);
79
((
sha1_uint32
*) resbuf)[2] = SWAP (ctx->C);
80
((
sha1_uint32
*) resbuf)[3] = SWAP (ctx->D);
81
((
sha1_uint32
*) resbuf)[4] = SWAP (ctx->E);
97
sha1_uint32
bytes = ctx->buflen;
109
*(
sha1_uint32
*) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) |
111
*(
sha1_uint32
*) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3);
157
# define UNALIGNED_P(p) (((sha1_uintptr) p) % __alignof__ (
sha1_uint32
) != 0)
159
# define UNALIGNED_P(p) (((sha1_uintptr) p) % sizeof (
sha1_uint32
) != 0
[
all
...]
Completed in 19 milliseconds