Searched refs:MD5_u32plus (Results 1 – 10 of 10) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | MD5.h | 43 typedef uint32_t MD5_u32plus; typedef 45 MD5_u32plus a = 0x67452301; 46 MD5_u32plus b = 0xefcdab89; 47 MD5_u32plus c = 0x98badcfe; 48 MD5_u32plus d = 0x10325476; 49 MD5_u32plus hi = 0; 50 MD5_u32plus lo = 0; 52 MD5_u32plus block[16];
|
/external/freetype/src/base/ |
D | md5.h | 32 typedef unsigned int MD5_u32plus; typedef 35 MD5_u32plus lo, hi; 36 MD5_u32plus a, b, c, d; 38 MD5_u32plus block[16];
|
D | md5.c | 82 (*(MD5_u32plus *)&ptr[(n) * 4]) 88 (MD5_u32plus)ptr[(n) * 4] | \ 89 ((MD5_u32plus)ptr[(n) * 4 + 1] << 8) | \ 90 ((MD5_u32plus)ptr[(n) * 4 + 2] << 16) | \ 91 ((MD5_u32plus)ptr[(n) * 4 + 3] << 24)) 103 MD5_u32plus a, b, c, d; in body() 104 MD5_u32plus saved_a, saved_b, saved_c, saved_d; in body() 220 MD5_u32plus saved_lo; in MD5_Update()
|
D | ftobjs.c | 68 #define MD5_u32plus FT_MD5_u32plus macro
|
/external/llvm/include/llvm/Support/ |
D | MD5.h | 40 typedef uint32_t MD5_u32plus; typedef 42 MD5_u32plus a, b, c, d; 43 MD5_u32plus hi, lo; 45 MD5_u32plus block[16];
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | MD5.h | 41 typedef uint32_t MD5_u32plus; typedef 43 MD5_u32plus a, b, c, d; 44 MD5_u32plus hi, lo; 46 MD5_u32plus block[16];
|
/external/curl/lib/ |
D | md5.c | 212 typedef unsigned int MD5_u32plus; typedef 215 MD5_u32plus lo, hi; 216 MD5_u32plus a, b, c, d; 218 MD5_u32plus block[16]; 256 (*(MD5_u32plus *)(void *)&ptr[(n) * 4]) 262 (MD5_u32plus)ptr[(n) * 4] | \ 263 ((MD5_u32plus)ptr[(n) * 4 + 1] << 8) | \ 264 ((MD5_u32plus)ptr[(n) * 4 + 2] << 16) | \ 265 ((MD5_u32plus)ptr[(n) * 4 + 3] << 24)) 277 MD5_u32plus a, b, c, d; in body() [all …]
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_md5.cc | 28 (*(const MD5_u32plus *)&ptr[(n) * 4]) 32 typedef unsigned int MD5_u32plus; typedef 36 MD5_u32plus lo, hi; 37 MD5_u32plus a, b, c, d; 39 MD5_u32plus block[16]; 44 MD5_u32plus a, b, c, d; in body() 45 MD5_u32plus saved_a, saved_b, saved_c, saved_d; in body() 153 MD5_u32plus saved_lo; in MD5_Update()
|
/external/llvm/lib/Support/ |
D | MD5.cpp | 66 (MD5_u32plus) ptr[(n) * 4] | ((MD5_u32plus) ptr[(n) * 4 + 1] << 8) | \ 67 ((MD5_u32plus) ptr[(n) * 4 + 2] << 16) | \ 68 ((MD5_u32plus) ptr[(n) * 4 + 3] << 24)) 77 MD5_u32plus a, b, c, d; in body() 78 MD5_u32plus saved_a, saved_b, saved_c, saved_d; in body() 188 MD5_u32plus saved_lo; in update()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | MD5.cpp | 70 (MD5_u32plus) ptr[(n) * 4] | ((MD5_u32plus) ptr[(n) * 4 + 1] << 8) | \ 71 ((MD5_u32plus) ptr[(n) * 4 + 2] << 16) | \ 72 ((MD5_u32plus) ptr[(n) * 4 + 3] << 24)) 81 MD5_u32plus a, b, c, d; in body() 82 MD5_u32plus saved_a, saved_b, saved_c, saved_d; in body() 190 MD5_u32plus saved_lo; in update()
|