Searched refs:crcIn (Results 1 - 5 of 5) sorted by relevance

/external/valgrind/main/none/tests/amd64/
H A Dcrc32.c13 UInt do_s_crc32b ( UInt crcIn, UChar b ) argument
15 UInt i, crc = (b & 0xFF) ^ crcIn;
21 UInt do_s_crc32w ( UInt crcIn, UShort w ) argument
23 UInt i, crc = (w & 0xFFFF) ^ crcIn;
29 UInt do_s_crc32l ( UInt crcIn, UInt l ) argument
31 UInt i, crc = l ^ crcIn;
37 UInt do_s_crc32q ( UInt crcIn, ULong q ) argument
39 UInt crc = do_s_crc32l(crcIn, (UInt)q);
43 UInt do_h_crc32b ( UInt crcIn, UChar b ) argument
47 : "=S"(crcIn)
52 do_h_crc32w( UInt crcIn, UShort w ) argument
61 do_h_crc32l( UInt crcIn, UInt l ) argument
70 do_h_crc32q( UInt crcIn, ULong q ) argument
81 do_h_crc32b_mem( UInt crcIn, UChar* a ) argument
90 do_h_crc32w_mem( UInt crcIn, UShort* a ) argument
99 do_h_crc32l_mem( UInt crcIn, UInt* a ) argument
108 do_h_crc32q_mem( UInt crcIn, ULong* a ) argument
[all...]
H A Damd64locked.c98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn )
100 UInt crc = crcIn;
/external/valgrind/main/VEX/priv/
H A Dguest_amd64_defs.h148 extern ULong amd64g_calc_crc32b ( ULong crcIn, ULong b );
149 extern ULong amd64g_calc_crc32w ( ULong crcIn, ULong w );
150 extern ULong amd64g_calc_crc32l ( ULong crcIn, ULong l );
151 extern ULong amd64g_calc_crc32q ( ULong crcIn, ULong q );
H A Dguest_amd64_helpers.c3140 ULong amd64g_calc_crc32b ( ULong crcIn, ULong b ) argument
3143 ULong crc = (b & 0xFFULL) ^ crcIn;
3150 ULong amd64g_calc_crc32w ( ULong crcIn, ULong w ) argument
3153 ULong crc = (w & 0xFFFFULL) ^ crcIn;
3160 ULong amd64g_calc_crc32l ( ULong crcIn, ULong l ) argument
3163 ULong crc = (l & 0xFFFFFFFFULL) ^ crcIn;
3170 ULong amd64g_calc_crc32q ( ULong crcIn, ULong q ) argument
3172 ULong crc = amd64g_calc_crc32l(crcIn, q);
/external/valgrind/main/none/tests/x86/
H A Dx86locked.c98 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn )
100 UInt crc = crcIn;

Completed in 664 milliseconds