Searched defs:SHA_INT32 (Results 1 - 5 of 5) sorted by relevance

/external/python/cpython2/Modules/
H A Dsha256module.c35 typedef unsigned int SHA_INT32; /* 32-bit integer */ typedef
49 SHA_INT32 digest[8]; /* Message digest */
50 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */
60 static void longReverse(SHA_INT32 *buffer, int byteCount, int Endianness)
62 SHA_INT32 value;
130 SHA_INT32 S[8], W[64], t0, t1;
270 SHA_INT32 clo;
272 clo = sha_info->count_lo + ((SHA_INT32) count << 3);
277 sha_info->count_hi += (SHA_INT32) count >> 29;
310 SHA_INT32 lo_bit_coun
[all...]
H A Dsha512module.c36 typedef unsigned int SHA_INT32; /* 32-bit integer */ typedef
52 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */
296 SHA_INT32 clo;
298 clo = sha_info->count_lo + ((SHA_INT32) count << 3);
303 sha_info->count_hi += (SHA_INT32) count >> 29;
336 SHA_INT32 lo_bit_count, hi_bit_count;
H A Dshamodule.c34 typedef unsigned int SHA_INT32; /* 32-bit integer */ typedef
48 SHA_INT32 digest[5]; /* Message digest */
49 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */
58 static void longReverse(SHA_INT32 *buffer, int byteCount, int Endianness)
60 SHA_INT32 value;
164 SHA_INT32 T, A, B, C, D, E, W[80], *WP;
242 SHA_INT32 clo;
244 clo = sha_info->count_lo + ((SHA_INT32) count << 3);
249 sha_info->count_hi += (SHA_INT32) count >> 29;
282 SHA_INT32 lo_bit_coun
[all...]
/external/python/cpython3/Modules/
H A Dsha256module.c35 typedef unsigned int SHA_INT32; /* 32-bit integer */ typedef
49 SHA_INT32 digest[8]; /* Message digest */
50 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */
62 static void longReverse(SHA_INT32 *buffer, int byteCount)
64 SHA_INT32 value;
129 SHA_INT32 S[8], W[64], t0, t1;
269 SHA_INT32 clo;
271 clo = sha_info->count_lo + ((SHA_INT32) count << 3);
276 sha_info->count_hi += (SHA_INT32) count >> 29;
309 SHA_INT32 lo_bit_coun
[all...]
H A Dsha512module.c35 typedef unsigned int SHA_INT32; /* 32-bit integer */ typedef
51 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */
294 SHA_INT32 clo;
296 clo = sha_info->count_lo + ((SHA_INT32) count << 3);
301 sha_info->count_hi += (SHA_INT32) count >> 29;
334 SHA_INT32 lo_bit_count, hi_bit_count;

Completed in 217 milliseconds