Searched refs:mlen (Results 1 – 7 of 7) sorted by relevance
/lib/zstd/compress/ |
A D | zstd_opt.c | 696 size_t mlen; in ZSTD_insertBtAndGetAllMatches() local 708 (U32)mlen); in ZSTD_insertBtAndGetAllMatches() 709 bestLength = mlen; in ZSTD_insertBtAndGetAllMatches() 1178 opt[pos].mlen = 0; in ZSTD_compressBlock_opt_generic() 1310 U32 mlen; in ZSTD_compressBlock_opt_generic() local 1315 for (mlen = lastML; mlen >= startML; mlen--) { /* scan downward */ in ZSTD_compressBlock_opt_generic() 1328 opt[pos].mlen = mlen; in ZSTD_compressBlock_opt_generic() 1346 assert(opt[0].mlen == 0); in ZSTD_compressBlock_opt_generic() 1350 if (lastStretch.mlen==0) { in ZSTD_compressBlock_opt_generic() 1389 opt[storeEnd].mlen = 0; in ZSTD_compressBlock_opt_generic() [all …]
|
A D | zstd_compress_internal.h | 217 U32 mlen; /* length of previous match */ member
|
/lib/ |
A D | digsig.c | 73 unsigned long mlen, mblen; in digsig_verify_rsa() local 121 mlen = DIV_ROUND_UP(mblen, 8); in digsig_verify_rsa() 123 if (mlen == 0) { in digsig_verify_rsa() 130 out1 = kzalloc(mlen, GFP_KERNEL); in digsig_verify_rsa() 149 if (mpi_get_nlimbs(res) * BYTES_PER_MPI_LIMB > mlen) { in digsig_verify_rsa() 160 len = mlen; in digsig_verify_rsa()
|
A D | bch.c | 211 unsigned int i, mlen; in bch_encode() local 234 mlen = (len < (4-m)) ? len : 4-m; in bch_encode() 235 bch_encode_unaligned(bch, data, mlen, bch->ecc_buf); in bch_encode() 236 data += mlen; in bch_encode() 237 len -= mlen; in bch_encode() 242 mlen = len/4; in bch_encode() 243 data += 4*mlen; in bch_encode() 244 len -= 4*mlen; in bch_encode() 258 while (mlen--) { in bch_encode()
|
/lib/crypto/powerpc/ |
A D | poly1305-p10-glue.c | 15 asmlinkage void poly1305_p10le_4blocks(struct poly1305_block_state *state, const u8 *m, u32 mlen); 16 asmlinkage void poly1305_64s(struct poly1305_block_state *state, const u8 *m, u32 mlen, int highbit…
|
A D | poly1305-p10le_64.S | 49 # poly1305_p10le_4blocks( uint8_t *k, uint32_t mlen, uint8_t *m) 52 # r4 = mlen 522 # poly1305_p10le_4blocks( uint8_t *k, uint32_t mlen, uint8_t *m) 525 # r4 = mlen
|
/lib/lz4/ |
A D | lz4_decompress.c | 387 size_t const mlen = min(length, (size_t)(oend - op)); in LZ4_decompress_generic() local 388 const BYTE * const matchEnd = match + mlen; in LZ4_decompress_generic() 389 BYTE * const copyEnd = op + mlen; in LZ4_decompress_generic() 396 LZ4_memcpy(op, match, mlen); in LZ4_decompress_generic()
|
Completed in 20 milliseconds