Lines Matching refs:uint32_t

70     uint32_t RedCrc32Update( uint32_t ulInitCrc32,  in RedCrc32Update()
72 uint32_t ulLength ) in RedCrc32Update()
74 uint32_t ulCrc32; in RedCrc32Update()
84 uint32_t ulIdx; in RedCrc32Update()
90 uint32_t ulBit; in RedCrc32Update()
121 uint32_t RedCrc32Update( uint32_t ulInitCrc32, in RedCrc32Update()
123 uint32_t ulLength ) in RedCrc32Update()
125 static const uint32_t aulCrc32Table[] = in RedCrc32Update()
161 uint32_t ulCrc32; in RedCrc32Update()
171 uint32_t ulIdx; in RedCrc32Update()
200 uint32_t RedCrc32Update( uint32_t ulInitCrc32, in RedCrc32Update()
202 uint32_t ulLength ) in RedCrc32Update()
221 static const uint32_t aulCrc32Table[] = in RedCrc32Update()
481 uint32_t ulCrc32; in RedCrc32Update()
491 uint32_t ulIdx = 0U; in RedCrc32Update()
492 const uint32_t * pulXorCrc0 = &aulCrc32Table[ 7U ]; in RedCrc32Update()
493 const uint32_t * pulXorCrc1 = &aulCrc32Table[ 6U ]; in RedCrc32Update()
494 const uint32_t * pulXorCrc2 = &aulCrc32Table[ 5U ]; in RedCrc32Update()
495 const uint32_t * pulXorCrc3 = &aulCrc32Table[ 4U ]; in RedCrc32Update()
496 const uint32_t * pulXorData4 = &aulCrc32Table[ 3U ]; in RedCrc32Update()
497 const uint32_t * pulXorData5 = &aulCrc32Table[ 2U ]; in RedCrc32Update()
498 const uint32_t * pulXorData6 = &aulCrc32Table[ 1U ]; in RedCrc32Update()
499 const uint32_t * pulXorData7 = &aulCrc32Table[ 0U ]; in RedCrc32Update()
500 uint32_t ulSliceLen; in RedCrc32Update()
526 ulCrc32 ^= pbBuffer[ ulIdx ] | ( ( uint32_t ) pbBuffer[ ulIdx + 1U ] << 8U ) | in RedCrc32Update()
527 … ( ( uint32_t ) pbBuffer[ ulIdx + 2U ] << 16U ) | ( ( uint32_t ) pbBuffer[ ulIdx + 3U ] << 24U ); in RedCrc32Update()
574 uint32_t RedCrcNode( const void * pBuffer ) in RedCrcNode()
576 uint32_t ulCrc; in RedCrcNode()