Searched refs:HOST_l2c (Results 1 – 6 of 6) sorted by relevance
/external/openssl/crypto/ |
D | md32_common.h | 212 # define HOST_l2c(l,c) ({ unsigned int r=(l); \ macro 221 # define HOST_l2c(l,c) (*((unsigned int *)(c))=(l), (c)+=4, (l)) macro 231 #ifndef HOST_l2c 232 #define HOST_l2c(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \ macro 247 # define HOST_l2c(l,c) ({ asm ("strv %0,0(%1)" \ macro 257 # define HOST_l2c(l,c) (*((unsigned int *)(c))=(l), (c)+=4, l) macro 268 #ifndef HOST_l2c 269 #define HOST_l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ macro 365 (void)HOST_l2c(c->Nh,p); in HASH_FINAL() 366 (void)HOST_l2c(c->Nl,p); in HASH_FINAL() [all …]
|
/external/openssl/crypto/md4/ |
D | md4_locl.h | 80 ll=(c)->A; HOST_l2c(ll,(s)); \ 81 ll=(c)->B; HOST_l2c(ll,(s)); \ 82 ll=(c)->C; HOST_l2c(ll,(s)); \ 83 ll=(c)->D; HOST_l2c(ll,(s)); \
|
/external/openssl/crypto/ripemd/ |
D | rmd_locl.h | 91 ll=(c)->A; HOST_l2c(ll,(s)); \ 92 ll=(c)->B; HOST_l2c(ll,(s)); \ 93 ll=(c)->C; HOST_l2c(ll,(s)); \ 94 ll=(c)->D; HOST_l2c(ll,(s)); \ 95 ll=(c)->E; HOST_l2c(ll,(s)); \
|
/external/openssl/crypto/md5/ |
D | md5_locl.h | 87 ll=(c)->A; HOST_l2c(ll,(s)); \ 88 ll=(c)->B; HOST_l2c(ll,(s)); \ 89 ll=(c)->C; HOST_l2c(ll,(s)); \ 90 ll=(c)->D; HOST_l2c(ll,(s)); \
|
/external/openssl/crypto/sha/ |
D | sha_locl.h | 72 ll=(c)->h0; HOST_l2c(ll,(s)); \ 73 ll=(c)->h1; HOST_l2c(ll,(s)); \ 74 ll=(c)->h2; HOST_l2c(ll,(s)); \ 75 ll=(c)->h3; HOST_l2c(ll,(s)); \ 76 ll=(c)->h4; HOST_l2c(ll,(s)); \
|
D | sha256.c | 91 { ll=(c)->h[xn]; HOST_l2c(ll,(s)); } \ 95 { ll=(c)->h[xn]; HOST_l2c(ll,(s)); } \ 101 { ll=(c)->h[xn]; HOST_l2c(ll,(s)); } \
|