Home
last modified time | relevance | path

Searched refs:Py_ULL (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Modules/
Dsha512module.c124 ( ((((x) & Py_ULL(0xFFFFFFFFFFFFFFFF))>>((unsigned PY_LONG_LONG)(y) & 63)) | \
125 ((x)<<((unsigned PY_LONG_LONG)(64-((y) & 63))))) & Py_ULL(0xFFFFFFFFFFFFFFFF))
129 #define R(x, n) (((x) & Py_ULL(0xFFFFFFFFFFFFFFFF)) >> ((unsigned PY_LONG_LONG)n))
159 RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],0,Py_ULL(0x428a2f98d728ae22)); in sha512_transform()
160 RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],1,Py_ULL(0x7137449123ef65cd)); in sha512_transform()
161 RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],2,Py_ULL(0xb5c0fbcfec4d3b2f)); in sha512_transform()
162 RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],3,Py_ULL(0xe9b5dba58189dbbc)); in sha512_transform()
163 RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],4,Py_ULL(0x3956c25bf348b538)); in sha512_transform()
164 RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],5,Py_ULL(0x59f111f1b605d019)); in sha512_transform()
165 RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],6,Py_ULL(0x923f82a4af194f9b)); in sha512_transform()
[all …]
/external/python/cpython3/Modules/
Dsha512module.c239 sha_info->digest[0] = Py_ULL(0x6a09e667f3bcc908); in sha512_init()
240 sha_info->digest[1] = Py_ULL(0xbb67ae8584caa73b); in sha512_init()
241 sha_info->digest[2] = Py_ULL(0x3c6ef372fe94f82b); in sha512_init()
242 sha_info->digest[3] = Py_ULL(0xa54ff53a5f1d36f1); in sha512_init()
243 sha_info->digest[4] = Py_ULL(0x510e527fade682d1); in sha512_init()
244 sha_info->digest[5] = Py_ULL(0x9b05688c2b3e6c1f); in sha512_init()
245 sha_info->digest[6] = Py_ULL(0x1f83d9abfb41bd6b); in sha512_init()
246 sha_info->digest[7] = Py_ULL(0x5be0cd19137e2179); in sha512_init()
256 sha_info->digest[0] = Py_ULL(0xcbbb9d5dc1059ed8); in sha384_init()
257 sha_info->digest[1] = Py_ULL(0x629a292a367cd507); in sha384_init()
[all …]
/external/python/cpython3/Include/
Dpyport.h778 #ifndef Py_ULL
779 #define Py_ULL(x) Py_LL(x##U) macro
/external/python/cpython2/Include/
Dpyport.h946 #ifndef Py_ULL
947 #define Py_ULL(x) Py_LL(x##U) macro