Lines Matching refs:HashResultPointer
2913 lpfc_sha_init(uint32_t * HashResultPointer) in lpfc_sha_init() argument
2915 HashResultPointer[0] = 0x67452301; in lpfc_sha_init()
2916 HashResultPointer[1] = 0xEFCDAB89; in lpfc_sha_init()
2917 HashResultPointer[2] = 0x98BADCFE; in lpfc_sha_init()
2918 HashResultPointer[3] = 0x10325476; in lpfc_sha_init()
2919 HashResultPointer[4] = 0xC3D2E1F0; in lpfc_sha_init()
2933 lpfc_sha_iterate(uint32_t * HashResultPointer, uint32_t * HashWorkingPointer) in lpfc_sha_iterate() argument
2947 A = HashResultPointer[0]; in lpfc_sha_iterate()
2948 B = HashResultPointer[1]; in lpfc_sha_iterate()
2949 C = HashResultPointer[2]; in lpfc_sha_iterate()
2950 D = HashResultPointer[3]; in lpfc_sha_iterate()
2951 E = HashResultPointer[4]; in lpfc_sha_iterate()
2971 HashResultPointer[0] += A; in lpfc_sha_iterate()
2972 HashResultPointer[1] += B; in lpfc_sha_iterate()
2973 HashResultPointer[2] += C; in lpfc_sha_iterate()
2974 HashResultPointer[3] += D; in lpfc_sha_iterate()
2975 HashResultPointer[4] += E; in lpfc_sha_iterate()