reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
248 for (int i = 0; i < 5; i++) { 248 for (int i = 0; i < 5; i++) { 249 HashResult[i] = (((InternalState.State[i]) << 24) & 0xff000000) | 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);