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

/linux-master/include/crypto/
H A Dstreebog.h34 size_t fillsize; member in struct:streebog_state
/linux-master/fs/romfs/
H A Dsuper.c107 unsigned long fillsize, pos; local
118 fillsize = 0;
122 fillsize = size > PAGE_SIZE ? PAGE_SIZE : size;
126 ret = romfs_dev_read(inode->i_sb, pos, buf, fillsize);
129 fillsize = 0;
134 if (fillsize < PAGE_SIZE)
135 memset(buf + fillsize, 0, PAGE_SIZE - fillsize);
/linux-master/crypto/
H A Dstreebog_generic.c924 if (ctx->fillsize >= STREEBOG_BLOCK_SIZE)
927 memset(ctx->buffer + ctx->fillsize, 0,
928 sizeof(ctx->buffer) - ctx->fillsize);
930 ctx->buffer[ctx->fillsize] = 1;
991 buf.qword[0] = cpu_to_le64(ctx->fillsize << 3);
1008 if (ctx->fillsize) {
1009 chunksize = STREEBOG_BLOCK_SIZE - ctx->fillsize;
1012 memcpy(&ctx->buffer[ctx->fillsize], data, chunksize);
1013 ctx->fillsize += chunksize;
1017 if (ctx->fillsize
[all...]

Completed in 126 milliseconds