Searched refs:BLOCK_LENGTH (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSHA1.h62 enum { BLOCK_LENGTH = 64 }; enumerator in enum:llvm::SHA1::__anon4361
68 uint8_t C[BLOCK_LENGTH];
69 uint32_t L[BLOCK_LENGTH / 4];
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerSHA1.cpp52 #define BLOCK_LENGTH 64 macro
55 uint32_t buffer[BLOCK_LENGTH/4];
59 uint8_t keyBuffer[BLOCK_LENGTH];
144 if (s->bufferOffset == BLOCK_LENGTH) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DSHA1.cpp202 if (InternalState.BufferOffset == BLOCK_LENGTH) {
219 Data.size(), BLOCK_LENGTH - InternalState.BufferOffset);
226 while (Data.size() >= BLOCK_LENGTH) {
228 assert(BLOCK_LENGTH % 4 == 0);
229 constexpr size_t BLOCK_LENGTH_32 = BLOCK_LENGTH / 4;
233 Data = Data.drop_front(BLOCK_LENGTH);

Completed in 115 milliseconds