Home
last modified time | relevance | path

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

/external/valgrind/none/tests/amd64/
Dcrc32.c13 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 …]
Damd64locked.c110 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn ) in crcBytes() argument
112 UInt crc = crcIn; in crcBytes()
/external/valgrind/VEX/priv/
Dguest_amd64_defs.h149 extern ULong amd64g_calc_crc32b ( ULong crcIn, ULong b );
150 extern ULong amd64g_calc_crc32w ( ULong crcIn, ULong w );
151 extern ULong amd64g_calc_crc32l ( ULong crcIn, ULong l );
152 extern ULong amd64g_calc_crc32q ( ULong crcIn, ULong q );
Dguest_amd64_helpers.c3715 ULong amd64g_calc_crc32b ( ULong crcIn, ULong b ) in amd64g_calc_crc32b() argument
3718 ULong crc = (b & 0xFFULL) ^ crcIn; in amd64g_calc_crc32b()
3725 ULong amd64g_calc_crc32w ( ULong crcIn, ULong w ) in amd64g_calc_crc32w() argument
3728 ULong crc = (w & 0xFFFFULL) ^ crcIn; in amd64g_calc_crc32w()
3735 ULong amd64g_calc_crc32l ( ULong crcIn, ULong l ) in amd64g_calc_crc32l() argument
3738 ULong crc = (l & 0xFFFFFFFFULL) ^ crcIn; in amd64g_calc_crc32l()
3745 ULong amd64g_calc_crc32q ( ULong crcIn, ULong q ) in amd64g_calc_crc32q() argument
3747 ULong crc = amd64g_calc_crc32l(crcIn, q); in amd64g_calc_crc32q()
/external/valgrind/none/tests/x86/
Dx86locked.c110 static UInt crcBytes ( UChar* bytes, UWord nBytes, UInt crcIn ) in crcBytes() argument
112 UInt crc = crcIn; in crcBytes()