Lines Matching defs:HashResultPointer
2927 * @HashResultPointer: pointer to an array as hash table.
2933 lpfc_sha_init(uint32_t * HashResultPointer)
2935 HashResultPointer[0] = 0x67452301;
2936 HashResultPointer[1] = 0xEFCDAB89;
2937 HashResultPointer[2] = 0x98BADCFE;
2938 HashResultPointer[3] = 0x10325476;
2939 HashResultPointer[4] = 0xC3D2E1F0;
2944 * @HashResultPointer: pointer to an initial/result hash table.
2947 * This routine iterates an initial hash table pointed by @HashResultPointer
2950 * the @HashResultPointer as the result hash table.
2953 lpfc_sha_iterate(uint32_t * HashResultPointer, uint32_t * HashWorkingPointer)
2967 A = HashResultPointer[0];
2968 B = HashResultPointer[1];
2969 C = HashResultPointer[2];
2970 D = HashResultPointer[3];
2971 E = HashResultPointer[4];
2991 HashResultPointer[0] += A;
2992 HashResultPointer[1] += B;
2993 HashResultPointer[2] += C;
2994 HashResultPointer[3] += D;
2995 HashResultPointer[4] += E;