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

Declarations

include/llvm/Support/SHA1.h
   82   void addUncounted(uint8_t data);

References

lib/Support/SHA1.cpp
  209   addUncounted(Data);
  221   addUncounted(0x80);
  223     addUncounted(0x00);
  226   addUncounted(0); // We're only using 32 bit lengths
  227   addUncounted(0); // But SHA-1 supports 64 bit lengths
  228   addUncounted(0); // So zero pad the top bits
  229   addUncounted(InternalState.ByteCount >> 29); // Shifting to multiply by 8
  230   addUncounted(InternalState.ByteCount >>
  232   addUncounted(InternalState.ByteCount >> 13); // byte.
  233   addUncounted(InternalState.ByteCount >> 5);
  234   addUncounted(InternalState.ByteCount << 3);