reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
85 InternalState.State[0] = SEED_0; 86 InternalState.State[1] = SEED_1; 87 InternalState.State[2] = SEED_2; 88 InternalState.State[3] = SEED_3; 89 InternalState.State[4] = SEED_4; 95 uint32_t A = InternalState.State[0]; 96 uint32_t B = InternalState.State[1]; 97 uint32_t C = InternalState.State[2]; 98 uint32_t D = InternalState.State[3]; 99 uint32_t E = InternalState.State[4]; 186 InternalState.State[0] += A; 187 InternalState.State[1] += B; 188 InternalState.State[2] += C; 189 InternalState.State[3] += D; 190 InternalState.State[4] += E; 249 HashResult[i] = (((InternalState.State[i]) << 24) & 0xff000000) | 250 (((InternalState.State[i]) << 8) & 0x00ff0000) | 251 (((InternalState.State[i]) >> 8) & 0x0000ff00) | 252 (((InternalState.State[i]) >> 24) & 0x000000ff);