| /linux/tools/perf/ui/tui/ |
| H A D | util.c | 79 int max_len = 60, nr_lines = 0; in ui_browser__input_window() local 90 if (max_len < len) in ui_browser__input_window() 91 max_len = len; in ui_browser__input_window() 100 max_len += 2; in ui_browser__input_window() 103 x = SLtt_Screen_Cols / 2 - max_len / 2; in ui_browser__input_window() 106 SLsmg_draw_box(y, x++, nr_lines, max_len); in ui_browser__input_window() 113 max_len -= 2; in ui_browser__input_window() 115 nr_lines, max_len, 1); in ui_browser__input_window() 120 SLsmg_write_nstring(" ", max_len); in ui_browser__input_window() 122 SLsmg_draw_box(y++, x + 1, 3, max_len - 2); in ui_browser__input_window() [all …]
|
| /linux/drivers/firmware/google/ |
| H A D | vpd_decode.c | 12 static int vpd_decode_len(const u32 max_len, const u8 *in, in vpd_decode_len() argument 23 if (i >= max_len) in vpd_decode_len() 36 static int vpd_decode_entry(const u32 max_len, const u8 *input_buf, in vpd_decode_entry() argument 42 if (vpd_decode_len(max_len - consumed, &input_buf[consumed], in vpd_decode_entry() 45 if (max_len - consumed < decoded_len) in vpd_decode_entry() 52 if (max_len - consumed < *entry_len) in vpd_decode_entry() 60 int vpd_decode_string(const u32 max_len, const u8 *input_buf, u32 *consumed, in vpd_decode_string() argument 70 if (*consumed >= max_len) in vpd_decode_string() 80 if (vpd_decode_entry(max_len, input_buf, consumed, &key, in vpd_decode_string() 84 if (vpd_decode_entry(max_len, input_buf, consumed, &value, in vpd_decode_string()
|
| /linux/fs/ntfs3/ |
| H A D | lznt.c | 32 size_t max_len; member 39 size_t max_len) in get_match_len() argument 43 while (ptr + len < end && ptr[len] == prev[len] && ++len < max_len) in get_match_len() 63 if (ctx->max_len > 3) in longest_match_std() 65 hash[0] + 3, ctx->max_len - 3); in longest_match_std() 71 if (ctx->max_len > 3) in longest_match_std() 73 hash[1] + 3, ctx->max_len - 3); in longest_match_std() 91 size_t max_len; in longest_match_best() local 94 if (ctx->unc >= src || !ctx->max_len) in longest_match_best() 97 max_len = 0; in longest_match_best() [all …]
|
| /linux/lib/crypto/tests/ |
| H A D | sha3_kunit.c | 275 const size_t max_len = 4096; in test_shake_all_lens_up_to_4096() local 277 u8 *const out = &test_buf[TEST_BUF_LEN - max_len]; in test_shake_all_lens_up_to_4096() 280 KUNIT_ASSERT_LE(test, 2 * max_len, TEST_BUF_LEN); in test_shake_all_lens_up_to_4096() 282 rand_bytes_seeded_from_len(in, max_len); in test_shake_all_lens_up_to_4096() 285 for (size_t in_len = 0; in_len <= max_len; in_len++) { in test_shake_all_lens_up_to_4096() 286 size_t out_len = (in_len * 293) % (max_len + 1); in test_shake_all_lens_up_to_4096() 311 const size_t max_len = 512; in test_shake_multiple_squeezes() local 314 KUNIT_ASSERT_GE(test, TEST_BUF_LEN, 2 * max_len); in test_shake_multiple_squeezes() 316 ref_out = kunit_kzalloc(test, max_len, GFP_KERNEL); in test_shake_multiple_squeezes() 321 const size_t in_len = rand_length(max_len); in test_shake_multiple_squeezes() [all …]
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | test_get_stack_rawtp.c | 60 int max_len, max_buildid_len, total_size; in bpf_prog1() local 70 max_len = MAX_STACK_RAWTP * sizeof(__u64); in bpf_prog1() 74 max_len, 0); in bpf_prog1() 75 data->user_stack_size = bpf_get_stack(ctx, data->user_stack, max_len, in bpf_prog1() 87 usize = bpf_get_stack(ctx, raw_data, max_len, BPF_F_USER_STACK); in bpf_prog1() 91 ksize = bpf_get_stack(ctx, raw_data + usize, max_len - usize, 0); in bpf_prog1() 96 if (total_size > 0 && total_size <= max_len) in bpf_prog1()
|
| /linux/drivers/net/ethernet/intel/libeth/ |
| H A D | rx.c | 21 static u32 libeth_rx_hw_len_mtu(const struct page_pool_params *pp, u32 max_len) in libeth_rx_hw_len_mtu() argument 27 len = min3(len, ALIGN_DOWN(max_len ? : U32_MAX, LIBETH_RX_BUF_STRIDE), in libeth_rx_hw_len_mtu() 28 pp->max_len); in libeth_rx_hw_len_mtu() 44 u32 max_len, u32 truesize) in libeth_rx_hw_len_truesize() argument 54 len = min3(len, ALIGN_DOWN(max_len ? : U32_MAX, LIBETH_RX_BUF_STRIDE), in libeth_rx_hw_len_truesize() 55 pp->max_len); in libeth_rx_hw_len_truesize() 77 pp->max_len = LIBETH_RX_PAGE_LEN(pp->offset); in libeth_rx_page_pool_params() 122 pp->max_len = PAGE_SIZE << LIBETH_RX_PAGE_ORDER; in libeth_rx_page_pool_params_zc() 137 pp->max_len); in libeth_rx_page_pool_params_zc()
|
| /linux/fs/nfs/ |
| H A D | export.c | 35 nfs_encode_fh(struct inode *inode, __u32 *p, int *max_len, struct inode *parent) in nfs_encode_fh() argument 43 __func__, *max_len, inode, parent); in nfs_encode_fh() 45 if (*max_len < len) { in nfs_encode_fh() 47 __func__, *max_len, len); in nfs_encode_fh() 48 *max_len = len; in nfs_encode_fh() 57 *max_len = len; in nfs_encode_fh() 59 __func__, NFS_FILEID(inode), inode->i_mode, *max_len); in nfs_encode_fh() 60 return *max_len; in nfs_encode_fh()
|
| /linux/drivers/staging/rtl8723bs/hal/ |
| H A D | hal_sdio.c | 82 u32 deviceId, max_len; in rtw_hal_get_sdio_tx_max_length() local 88 max_len = pHalData->sdio_tx_max_len[HI_QUEUE_IDX]; in rtw_hal_get_sdio_tx_max_length() 92 max_len = pHalData->sdio_tx_max_len[MID_QUEUE_IDX]; in rtw_hal_get_sdio_tx_max_length() 96 max_len = pHalData->sdio_tx_max_len[LOW_QUEUE_IDX]; in rtw_hal_get_sdio_tx_max_length() 100 max_len = pHalData->sdio_tx_max_len[MID_QUEUE_IDX]; in rtw_hal_get_sdio_tx_max_length() 104 return max_len; in rtw_hal_get_sdio_tx_max_length()
|
| /linux/drivers/infiniband/hw/hfi1/ |
| H A D | mad.c | 542 u32 port, u32 *resp_len, u32 max_len) in __subn_get_opa_nodedesc() argument 546 if (am || smp_length_check(sizeof(*nd), max_len)) { in __subn_get_opa_nodedesc() 563 u32 *resp_len, u32 max_len) in __subn_get_opa_nodeinfo() argument 573 smp_length_check(sizeof(*ni), max_len) || in __subn_get_opa_nodeinfo() 756 u32 *resp_len, u32 max_len) in __subn_get_opa_portinfo() argument 772 if (num_ports != 1 || smp_length_check(sizeof(*pi), max_len)) { in __subn_get_opa_portinfo() 981 u32 *resp_len, u32 max_len) in __subn_get_opa_pkeytable() argument 1004 if (smp_length_check(size, max_len)) { in __subn_get_opa_pkeytable() 1311 u32 *resp_len, u32 max_len, int local_mad) in __subn_set_opa_portinfo() argument 1333 smp_length_check(sizeof(*pi), max_len)) { in __subn_set_opa_portinfo() [all …]
|
| /linux/include/linux/ |
| H A D | exportfs.h | 261 int (*encode_fh)(struct inode *inode, __u32 *fh, int *max_len, 305 int *max_len, struct inode *parent, 308 int *max_len, int flags); 349 int *max_len) in exportfs_encode_fid() argument 351 return exportfs_encode_inode_fh(inode, fid, max_len, NULL, in exportfs_encode_fid() 368 int generic_encode_ino32_fh(struct inode *inode, __u32 *fh, int *max_len,
|
| /linux/drivers/crypto/qce/ |
| H A D | dma.c | 57 unsigned int max_len) in qce_sgtable_add() argument 71 while (new_sgl && sg && max_len) { in qce_sgtable_add() 72 new_len = new_sgl->length > max_len ? max_len : new_sgl->length; in qce_sgtable_add() 77 max_len -= new_len; in qce_sgtable_add()
|
| /linux/fs/isofs/ |
| H A D | export.c | 113 int *max_len, in isofs_export_encode_fh() argument 117 int len = *max_len; in isofs_export_encode_fh() 128 *max_len = 5; in isofs_export_encode_fh() 131 *max_len = 3; in isofs_export_encode_fh() 149 *max_len = len; in isofs_export_encode_fh()
|
| /linux/net/x25/ |
| H A D | x25_out.c | 56 int max_len = x25_pacsize_to_bytes(x25->facilities.pacsize_out); in x25_output() local 58 if (skb->len - header_len > max_len) { in x25_output() 67 skbn = sock_alloc_send_skb(sk, frontlen + max_len, in x25_output() 83 len = max_len > skb->len ? skb->len : max_len; in x25_output()
|
| /linux/fs/ceph/ |
| H A D | export.c | 44 static int ceph_encode_snapfh(struct inode *inode, u32 *rawfh, int *max_len, in ceph_encode_snapfh() argument 54 if (*max_len < snap_handle_length) { in ceph_encode_snapfh() 55 *max_len = snap_handle_length; in ceph_encode_snapfh() 87 *max_len = snap_handle_length; in ceph_encode_snapfh() 94 static int ceph_encode_fh(struct inode *inode, u32 *rawfh, int *max_len, in ceph_encode_fh() argument 103 return ceph_encode_snapfh(inode, rawfh, max_len, parent_inode); in ceph_encode_fh() 105 if (parent_inode && (*max_len < connected_handle_length)) { in ceph_encode_fh() 106 *max_len = connected_handle_length; in ceph_encode_fh() 108 } else if (*max_len < handle_length) { in ceph_encode_fh() 109 *max_len = handle_length; in ceph_encode_fh() [all …]
|
| /linux/fs/btrfs/ |
| H A D | export.c | 18 static int btrfs_encode_fh(struct inode *inode, u32 *fh, int *max_len, in btrfs_encode_fh() argument 22 int len = *max_len; in btrfs_encode_fh() 28 *max_len = BTRFS_FID_SIZE_CONNECTABLE_ROOT; in btrfs_encode_fh() 30 *max_len = BTRFS_FID_SIZE_CONNECTABLE; in btrfs_encode_fh() 33 *max_len = BTRFS_FID_SIZE_NON_CONNECTABLE; in btrfs_encode_fh() 52 if (*max_len < BTRFS_FID_SIZE_CONNECTABLE_ROOT) in btrfs_encode_fh() 63 *max_len = len; in btrfs_encode_fh()
|
| /linux/fs/exportfs/ |
| H A D | expfs.c | 356 int *max_len) in exportfs_encode_ino64_fid() argument 358 if (*max_len < FILEID_INO64_GEN_LEN) { in exportfs_encode_ino64_fid() 359 *max_len = FILEID_INO64_GEN_LEN; in exportfs_encode_ino64_fid() 365 *max_len = FILEID_INO64_GEN_LEN; in exportfs_encode_ino64_fid() 381 int *max_len, struct inode *parent, int flags) in exportfs_encode_inode_fh() argument 390 type = exportfs_encode_ino64_fid(inode, fid, max_len); in exportfs_encode_inode_fh() 392 type = nop->encode_fh(inode, fid->raw, max_len, parent); in exportfs_encode_inode_fh() 414 int exportfs_encode_fh(struct dentry *dentry, struct fid *fid, int *max_len, in exportfs_encode_fh() argument 430 error = exportfs_encode_inode_fh(inode, fid, max_len, parent, flags); in exportfs_encode_fh()
|
| /linux/arch/m68k/amiga/ |
| H A D | pcmcia.c | 40 int pcmcia_copy_tuple(unsigned char tuple_id, void *tuple, int max_len) in pcmcia_copy_tuple() argument 53 len = (len > max_len)?max_len:len; in pcmcia_copy_tuple()
|
| /linux/drivers/net/ethernet/netronome/nfp/ |
| H A D | ccm_mbox.c | 49 unsigned int max_len; member 62 nfp_ccm_mbox_msg_init(struct sk_buff *skb, unsigned int exp_reply, int max_len) in nfp_ccm_mbox_msg_init() argument 68 cb->max_len = max_len; in nfp_ccm_mbox_msg_init() 77 return cb->max_len; in nfp_ccm_mbox_maxlen() 291 if (length > cb->max_len) { in nfp_ccm_mbox_copy_out() 293 hdr.type, cb->max_len, length); in nfp_ccm_mbox_copy_out() 470 unsigned int max_len; in nfp_ccm_mbox_msg_prepare() local 503 max_len = max(max_reply_size, round_up(skb->len, 4)); in nfp_ccm_mbox_msg_prepare() 504 if (max_len > mbox_max) { in nfp_ccm_mbox_msg_prepare() 511 nfp_ccm_mbox_msg_init(skb, reply_size, max_len); in nfp_ccm_mbox_msg_prepare()
|
| /linux/drivers/net/wireless/ath/carl9170/ |
| H A D | fw.c | 40 const struct carl9170fw_desc_head *head, unsigned int max_len) in carl9170_fw_verify_descs() argument 46 if (max_len < sizeof(*pos)) in carl9170_fw_verify_descs() 49 max_len = min_t(unsigned int, CARL9170FW_DESC_MAX_LENGTH, max_len); in carl9170_fw_verify_descs() 53 end_addr = pos_addr + max_len; in carl9170_fw_verify_descs() 64 if (pos_length > max_len) in carl9170_fw_verify_descs() 77 max_len -= pos_length; in carl9170_fw_verify_descs()
|
| /linux/fs/iomap/ |
| H A D | ioend.c | 376 unsigned int max_len, bool is_append) in iomap_split_ioend() argument 387 max_len = min(max_len, in iomap_split_ioend() 390 sector_offset = bio_split_rw_at(bio, lim, &nr_segs, max_len); in iomap_split_ioend() 396 if (bio->bi_iter.bi_size <= max_len) in iomap_split_ioend() 398 sector_offset = max_len >> SECTOR_SHIFT; in iomap_split_ioend()
|
| /linux/drivers/net/wireless/intel/iwlwifi/fw/ |
| H A D | pnvm.h | 22 u8 *pnvm_name, size_t max_len) in iwl_pnvm_get_fs_name() argument 26 snprintf(pnvm_name, max_len, "%s.pnvm", in iwl_pnvm_get_fs_name()
|
| /linux/drivers/pci/ |
| H A D | vpd.c | 159 unsigned int max_len; in pci_vpd_read() local 170 max_len = check_size ? vpd->len : PCI_VPD_MAX_SIZE; in pci_vpd_read() 172 if (pos >= max_len) in pci_vpd_read() 175 if (end > max_len) { in pci_vpd_read() 176 end = max_len; in pci_vpd_read() 223 unsigned int max_len; in pci_vpd_write() local 234 max_len = check_size ? vpd->len : PCI_VPD_MAX_SIZE; in pci_vpd_write() 236 if (end > max_len) in pci_vpd_write()
|
| /linux/drivers/net/dsa/sja1105/ |
| H A D | sja1105_devlink.c | 43 size_t max_len, len; in sja1105_region_static_config_snapshot() local 46 max_len = sja1105_static_config_get_max_size(priv); in sja1105_region_static_config_snapshot() 48 *data = kcalloc(max_len, sizeof(u8), GFP_KERNEL); in sja1105_region_static_config_snapshot()
|
| /linux/io_uring/ |
| H A D | kbuf.c | 251 if (arg->max_len) { in io_ring_buffers_peek() 257 needed = (arg->max_len + len - 1) / len; in io_ring_buffers_peek() 267 if (arg->mode & KBUF_MODE_EXPAND && nr_avail > nr_iovs && arg->max_len) { in io_ring_buffers_peek() 280 if (!arg->max_len) in io_ring_buffers_peek() 281 arg->max_len = INT_MAX; in io_ring_buffers_peek() 288 if (len > arg->max_len) { in io_ring_buffers_peek() 289 len = arg->max_len; in io_ring_buffers_peek() 303 arg->max_len -= len; in io_ring_buffers_peek() 304 if (!arg->max_len) in io_ring_buffers_peek() 375 return io_provided_buffers_select(req, &arg->max_len, bl, arg->iovs); in io_buffers_peek()
|
| /linux/tools/lib/python/kdoc/ |
| H A D | python_version.py | 50 def cmd_print(cmd, max_len=80): argument 57 if not max_len or len(cmd_line[-1]) + len(w) < max_len:
|