Searched refs:crcIn (Results 1 – 5 of 5) sorted by relevance
/external/valgrind/main/none/tests/amd64/ |
D | crc32.c | 13 UInt do_s_crc32b ( UInt crcIn, UChar b ) in do_s_crc32b() argument 15 UInt i, crc = (b & 0xFF) ^ crcIn; in do_s_crc32b() 21 UInt do_s_crc32w ( UInt crcIn, UShort w ) in do_s_crc32w() argument 23 UInt i, crc = (w & 0xFFFF) ^ crcIn; in do_s_crc32w() 29 UInt do_s_crc32l ( UInt crcIn, UInt l ) in do_s_crc32l() argument 31 UInt i, crc = l ^ crcIn; in do_s_crc32l() 37 UInt do_s_crc32q ( UInt crcIn, ULong q ) in do_s_crc32q() argument 39 UInt crc = do_s_crc32l(crcIn, (UInt)q); in do_s_crc32q() 43 UInt do_h_crc32b ( UInt crcIn, UChar b ) in do_h_crc32b() argument 47 : "=S"(crcIn) : "0"(crcIn), "c"(b) in do_h_crc32b() [all …]
|
D | amd64locked.c | 98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn ) in crcBytes() argument 100 UInt crc = crcIn; in crcBytes()
|
/external/valgrind/main/VEX/priv/ |
D | guest_amd64_defs.h | 140 extern ULong amd64g_calc_crc32b ( ULong crcIn, ULong b ); 141 extern ULong amd64g_calc_crc32w ( ULong crcIn, ULong w ); 142 extern ULong amd64g_calc_crc32l ( ULong crcIn, ULong l ); 143 extern ULong amd64g_calc_crc32q ( ULong crcIn, ULong q );
|
D | guest_amd64_helpers.c | 2764 ULong amd64g_calc_crc32b ( ULong crcIn, ULong b ) in amd64g_calc_crc32b() argument 2767 ULong crc = (b & 0xFFULL) ^ crcIn; in amd64g_calc_crc32b() 2774 ULong amd64g_calc_crc32w ( ULong crcIn, ULong w ) in amd64g_calc_crc32w() argument 2777 ULong crc = (w & 0xFFFFULL) ^ crcIn; in amd64g_calc_crc32w() 2784 ULong amd64g_calc_crc32l ( ULong crcIn, ULong l ) in amd64g_calc_crc32l() argument 2787 ULong crc = (l & 0xFFFFFFFFULL) ^ crcIn; in amd64g_calc_crc32l() 2794 ULong amd64g_calc_crc32q ( ULong crcIn, ULong q ) in amd64g_calc_crc32q() argument 2796 ULong crc = amd64g_calc_crc32l(crcIn, q); in amd64g_calc_crc32q()
|
/external/valgrind/main/none/tests/x86/ |
D | x86locked.c | 98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn ) in crcBytes() argument 100 UInt crc = crcIn; in crcBytes()
|