OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sc_blockSize
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/smhasher/src/
Spooky.cpp
151
end = u.p64 + (length/
sc_blockSize
)*sc_numVars;
153
// handle all whole
sc_blockSize
blocks of bytes
166
memcpy(buf, u.p64,
sc_blockSize
);
172
// handle the last partial block of
sc_blockSize
bytes
175
memset(((uint8 *)buf)+remainder, 0,
sc_blockSize
-remainder);
176
((uint8 *)buf)[
sc_blockSize
-1] = remainder;
260
// handle all whole blocks of
sc_blockSize
bytes
261
end = u.p64 + (length/
sc_blockSize
)*sc_numVars;
275
memcpy(m_data, u.p8,
sc_blockSize
);
327
if (remainder >=
sc_blockSize
)
[
all
...]
Spooky.h
273
static const size_t
sc_blockSize
= sc_numVars*8;
276
static const size_t sc_bufSize = 2*
sc_blockSize
;
Completed in 265 milliseconds