Home
last modified time | relevance | path

Searched refs:mlen (Results 1 - 25 of 92) sorted by relevance

1234

/kernel/linux/linux-5.10/lib/zstd/
H A Dzstd_opt.h206 opt[pos].mlen = mlen_; \
441 U32 u, mlen, best_mlen, best_off, litLength; in ZSTD_compressBlock_opt_generic() local
453 mlen = (U32)ZSTD_count(ip + minMatch, ip + minMatch - repCur, iend) + minMatch; in ZSTD_compressBlock_opt_generic()
454 if (mlen > sufficient_len || mlen >= ZSTD_OPT_NUM) { in ZSTD_compressBlock_opt_generic()
455 best_mlen = mlen; in ZSTD_compressBlock_opt_generic()
463 price = ZSTD_getPrice(seqStorePtr, litlen, anchor, best_off, mlen - MINMATCH, ultra); in ZSTD_compressBlock_opt_generic()
464 if (mlen > last_pos || price < opt[mlen].price) in ZSTD_compressBlock_opt_generic()
465 SET_PRICE(mlen, mle in ZSTD_compressBlock_opt_generic()
739 U32 u, mlen, best_mlen, best_off, litLength; ZSTD_compressBlock_opt_extDict_generic() local
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dtc_ct.h39 .mlen = 16,\
47 .mlen = 16,\
55 .mlen = 32,\
63 .mlen = 32,\
72 .mlen = 24,\
80 .mlen = ESW_ZONE_ID_BITS,\
88 .mlen = ESW_ZONE_ID_BITS,\
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dtc_ct.h36 .mlen = 2,\
44 .mlen = 2,\
52 .mlen = 4,\
60 .mlen = 4,\
68 .mlen = 4,\
76 .mlen = 1,\
84 .mlen = 1,\
87 #define REG_MAPPING_MLEN(reg) (mlx5e_tc_attr_to_reg_mappings[reg].mlen)
/kernel/linux/linux-5.10/scripts/
H A Dcleanfile62 my $mlen = 0;
69 $mlen = $pos if ($pos > $mlen);
76 $mlen = $pos if ($pos > $mlen);
77 return $mlen;
H A Dcleanpatch62 my $mlen = 0;
69 $mlen = $pos if ($pos > $mlen);
76 $mlen = $pos if ($pos > $mlen);
77 return $mlen;
/kernel/linux/linux-6.6/scripts/
H A Dcleanfile62 my $mlen = 0;
69 $mlen = $pos if ($pos > $mlen);
76 $mlen = $pos if ($pos > $mlen);
77 return $mlen;
H A Dcleanpatch62 my $mlen = 0;
69 $mlen = $pos if ($pos > $mlen);
76 $mlen = $pos if ($pos > $mlen);
77 return $mlen;
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_opt.c660 size_t mlen; in ZSTD_insertBtAndGetAllMatches() local
663 mlen = ZSTD_count(ip, match, iLimit); in ZSTD_insertBtAndGetAllMatches()
666 mlen = ZSTD_count_2segments(ip, match, iLimit, dictEnd, prefixStart); in ZSTD_insertBtAndGetAllMatches()
670 if (mlen >= mls /* == 3 > bestLength */) { in ZSTD_insertBtAndGetAllMatches()
672 (U32)mlen); in ZSTD_insertBtAndGetAllMatches()
673 bestLength = mlen; in ZSTD_insertBtAndGetAllMatches()
677 matches[0].len = (U32)mlen; in ZSTD_insertBtAndGetAllMatches()
679 if ( (mlen > sufficient_len) | in ZSTD_insertBtAndGetAllMatches()
680 (ip+mlen == iLimit) ) { /* best possible length */ in ZSTD_insertBtAndGetAllMatches()
1016 return sol.litlen + sol.mlen; in ZSTD_totalLen()
1231 U32 mlen; ZSTD_compressBlock_opt_generic() local
1298 U32 const mlen = opt[storePos].mlen; ZSTD_compressBlock_opt_generic() local
[all...]
/kernel/liteos_m/testsuites/unittest/posix/src/string/
H A Dmemory_func_test.c266 size_t k, len, mlen, rlen; variable
273 mlen = 10;
274 mem = malloc(mlen);
277 (void)memset_s(mem, mlen, testChar, mlen);
278 rlen = rand() % (1024) + mlen;
285 len = mlen <= rlen ? mlen : rlen;
/kernel/linux/linux-5.10/lib/
H A Ddigsig.c73 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()
/kernel/linux/linux-6.6/lib/
H A Ddigsig.c73 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()
/kernel/linux/linux-6.6/crypto/
H A Dakcipher.c197 unsigned int mlen; in crypto_akcipher_sync_prep() local
202 mlen = max(data->slen, data->dlen); in crypto_akcipher_sync_prep()
204 mlen = data->slen + data->dlen; in crypto_akcipher_sync_prep()
206 len = sizeof(*req) + reqsize + mlen; in crypto_akcipher_sync_prep()
207 if (len < mlen) in crypto_akcipher_sync_prep()
222 sg_init_one(sg, buf, mlen); in crypto_akcipher_sync_prep()
/kernel/linux/linux-5.10/include/uapi/scsi/
H A Dscsi_netlink.h99 #define INIT_SCSI_NL_HDR(hdr, t, mtype, mlen) \
105 (hdr)->msglen = mlen; \
/kernel/linux/linux-6.6/include/uapi/scsi/
H A Dscsi_netlink.h99 #define INIT_SCSI_NL_HDR(hdr, t, mtype, mlen) \
105 (hdr)->msglen = mlen; \
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/scsi/
H A Dscsi_netlink.h40 #define INIT_SCSI_NL_HDR(hdr, t, mtype, mlen) \
46 (hdr)->msglen = mlen; \
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/scsi/
H A Dscsi_netlink.h50 #define INIT_SCSI_NL_HDR(hdr,t,mtype,mlen) { (hdr)->version = SCSI_NL_VERSION; (hdr)->transport = t; (hdr)->magic = SCSI_NL_MAGIC; (hdr)->msgtype = mtype; (hdr)->msglen = mlen; }
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/scsi/
H A Dscsi_netlink.h50 #define INIT_SCSI_NL_HDR(hdr,t,mtype,mlen) { (hdr)->version = SCSI_NL_VERSION; (hdr)->transport = t; (hdr)->magic = SCSI_NL_MAGIC; (hdr)->msgtype = mtype; (hdr)->msglen = mlen; }
/kernel/linux/linux-5.10/drivers/staging/gdm724x/
H A Dnetlink_k.c33 u32 mlen; in netlink_rcv_cb() local
57 mlen = ND_NLMSG_R_LEN(nlh); in netlink_rcv_cb()
61 rcv_cb(dev, nlh->nlmsg_type, msg, mlen); in netlink_rcv_cb()
/kernel/linux/linux-6.6/drivers/staging/gdm724x/
H A Dnetlink_k.c33 u32 mlen; in netlink_rcv_cb() local
57 mlen = ND_NLMSG_R_LEN(nlh); in netlink_rcv_cb()
61 rcv_cb(dev, nlh->nlmsg_type, msg, mlen); in netlink_rcv_cb()
/kernel/linux/linux-5.10/drivers/w1/
H A Dw1_netlink.c446 u16 mlen = node->msg->len; in w1_process_cb() local
458 while (mlen && !err) { in w1_process_cb()
459 if (cmd->len + sizeof(struct w1_netlink_cmd) > mlen) { in w1_process_cb()
475 mlen -= len; in w1_process_cb()
502 u16 mlen = msg->len; in w1_list_count_cmds() local
505 while (mlen) { in w1_list_count_cmds()
506 if (cmd->len + sizeof(struct w1_netlink_cmd) > mlen) in w1_list_count_cmds()
518 mlen -= len; in w1_list_count_cmds()
/kernel/linux/linux-6.6/drivers/w1/
H A Dw1_netlink.c448 u16 mlen = node->msg->len; in w1_process_cb() local
460 while (mlen && !err) { in w1_process_cb()
461 if (cmd->len + sizeof(struct w1_netlink_cmd) > mlen) { in w1_process_cb()
477 mlen -= len; in w1_process_cb()
504 u16 mlen = msg->len; in w1_list_count_cmds() local
507 while (mlen) { in w1_list_count_cmds()
508 if (cmd->len + sizeof(struct w1_netlink_cmd) > mlen) in w1_list_count_cmds()
520 mlen -= len; in w1_list_count_cmds()
/kernel/linux/linux-5.10/fs/nfs/blocklayout/
H A Drpc_pipefs.c113 size_t mlen) in bl_pipe_downcall()
118 if (mlen != sizeof (struct bl_dev_msg)) in bl_pipe_downcall()
121 if (copy_from_user(&nn->bl_mount_reply, src, mlen) != 0) in bl_pipe_downcall()
126 return mlen; in bl_pipe_downcall()
112 bl_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) bl_pipe_downcall() argument
/kernel/linux/linux-6.6/fs/nfs/blocklayout/
H A Drpc_pipefs.c112 size_t mlen) in bl_pipe_downcall()
117 if (mlen != sizeof (struct bl_dev_msg)) in bl_pipe_downcall()
120 if (copy_from_user(&nn->bl_mount_reply, src, mlen) != 0) in bl_pipe_downcall()
125 return mlen; in bl_pipe_downcall()
111 bl_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) bl_pipe_downcall() argument
/kernel/linux/linux-5.10/drivers/isdn/mISDN/
H A Dl1oip_core.c450 int m, mlen; in l1oip_socket_parse() local
552 mlen = *buf++; in l1oip_socket_parse()
554 if (mlen == 0) in l1oip_socket_parse()
555 mlen = 256; in l1oip_socket_parse()
556 if (len < mlen + 3) { in l1oip_socket_parse()
559 __func__, mlen, len_start-len - 1, len_start); in l1oip_socket_parse()
562 if (len == mlen + 3) { in l1oip_socket_parse()
566 __func__, mlen, len_start-len + 1); in l1oip_socket_parse()
570 mlen = len - 2; /* single frame, subtract timebase */ in l1oip_socket_parse()
595 l1oip_socket_recv(hc, remotecodec, channel, timebase, buf, mlen); in l1oip_socket_parse()
[all...]
/kernel/linux/linux-6.6/drivers/isdn/mISDN/
H A Dl1oip_core.c450 int m, mlen; in l1oip_socket_parse() local
552 mlen = *buf++; in l1oip_socket_parse()
554 if (mlen == 0) in l1oip_socket_parse()
555 mlen = 256; in l1oip_socket_parse()
556 if (len < mlen + 3) { in l1oip_socket_parse()
559 __func__, mlen, len_start-len - 1, len_start); in l1oip_socket_parse()
562 if (len == mlen + 3) { in l1oip_socket_parse()
566 __func__, mlen, len_start-len + 1); in l1oip_socket_parse()
570 mlen = len - 2; /* single frame, subtract timebase */ in l1oip_socket_parse()
595 l1oip_socket_recv(hc, remotecodec, channel, timebase, buf, mlen); in l1oip_socket_parse()
[all...]

Completed in 14 milliseconds

1234