OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BLOCK_LENGTH
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SHA1.h
57
enum {
BLOCK_LENGTH
= 64 };
63
uint8_t C[
BLOCK_LENGTH
];
64
uint32_t L[
BLOCK_LENGTH
/ 4];
SHA256.h
64
enum {
BLOCK_LENGTH
= 64 };
70
uint8_t C[
BLOCK_LENGTH
];
71
uint32_t L[
BLOCK_LENGTH
/ 4];
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerSHA1.cpp
52
#define
BLOCK_LENGTH
64
55
uint32_t buffer[
BLOCK_LENGTH
/4];
59
uint8_t keyBuffer[
BLOCK_LENGTH
];
144
if (s->bufferOffset ==
BLOCK_LENGTH
) {
/src/external/apache2/llvm/dist/llvm/lib/Support/
SHA1.cpp
202
if (InternalState.BufferOffset ==
BLOCK_LENGTH
) {
219
Data.size(),
BLOCK_LENGTH
- InternalState.BufferOffset);
226
while (Data.size() >=
BLOCK_LENGTH
) {
228
static_assert(
BLOCK_LENGTH
% 4 == 0, "");
229
constexpr size_t BLOCK_LENGTH_32 =
BLOCK_LENGTH
/ 4;
233
Data = Data.drop_front(
BLOCK_LENGTH
);
SHA256.cpp
181
if (InternalState.BufferOffset ==
BLOCK_LENGTH
) {
198
Data.size(),
BLOCK_LENGTH
- InternalState.BufferOffset);
205
while (Data.size() >=
BLOCK_LENGTH
) {
207
static_assert(
BLOCK_LENGTH
% 4 == 0, "");
208
constexpr size_t BLOCK_LENGTH_32 =
BLOCK_LENGTH
/ 4;
212
Data = Data.drop_front(
BLOCK_LENGTH
);
Completed in 28 milliseconds
Indexes created Tue Feb 24 01:34:59 UTC 2026