Home
last modified time | relevance | path

Searched refs:lenW (Results 1 – 1 of 1) sorted by relevance

/external/fio/crc/
Dsha1.c31 int lenW = ctx->size & 63; in fio_sha1_update() local
37 if (lenW) { in fio_sha1_update()
38 int left = 64 - lenW; in fio_sha1_update()
41 memcpy(lenW + (char *)ctx->W, data, left); in fio_sha1_update()
42 lenW = (lenW + left) & 63; in fio_sha1_update()
45 if (lenW) in fio_sha1_update()