reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/fuzzer/FuzzerSHA1.cpp
   91 	s->byteCount = 0;
  151 	++s->byteCount;
  170 	sha1_addUncounted(s, s->byteCount >> 29); // Shifting to multiply by 8
  171 	sha1_addUncounted(s, s->byteCount >> 21); // as SHA-1 supports bitstreams as well as
  172 	sha1_addUncounted(s, s->byteCount >> 13); // byte.
  173 	sha1_addUncounted(s, s->byteCount >> 5);
  174 	sha1_addUncounted(s, s->byteCount << 3);