Home
last modified time | relevance | path

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

/linux-6.1.9/fs/udf/
Dsymlink.c37 int comp_len; in udf_pc_to_char() local
82 comp_len = udf_get_filename(sb, pc->componentIdent, in udf_pc_to_char()
85 if (comp_len < 0) in udf_pc_to_char()
86 return comp_len; in udf_pc_to_char()
88 p += comp_len; in udf_pc_to_char()
89 tolen -= comp_len; in udf_pc_to_char()
/linux-6.1.9/drivers/nfc/nfcmrvl/
Dfw_dnld.c251 uint16_t comp_len; in process_state_fw_dnld() local
274 comp_len = get_unaligned_le16(skb->data); in process_state_fw_dnld()
275 memcpy(&comp_len, skb->data, 2); in process_state_fw_dnld()
277 if (((~len) & 0xFFFF) != comp_len) { in process_state_fw_dnld()
279 len, comp_len, (~len & 0xFFFF)); in process_state_fw_dnld()
/linux-6.1.9/drivers/block/zram/
Dzram_drv.c1348 unsigned int comp_len = 0; in __zram_bvec_write() local
1368 ret = zcomp_compress(zstrm, src, &comp_len); in __zram_bvec_write()
1378 if (comp_len >= huge_class_size) in __zram_bvec_write()
1379 comp_len = PAGE_SIZE; in __zram_bvec_write()
1394 handle = zs_malloc(zram->mem_pool, comp_len, in __zram_bvec_write()
1402 handle = zs_malloc(zram->mem_pool, comp_len, in __zram_bvec_write()
1408 if (comp_len != PAGE_SIZE) in __zram_bvec_write()
1432 if (comp_len == PAGE_SIZE) in __zram_bvec_write()
1434 memcpy(dst, src, comp_len); in __zram_bvec_write()
1435 if (comp_len == PAGE_SIZE) in __zram_bvec_write()
[all …]
/linux-6.1.9/fs/btrfs/
Dcompression.c59 size_t comp_len = strlen(btrfs_compress_types[i]); in btrfs_compress_is_valid_type() local
61 if (len < comp_len) in btrfs_compress_is_valid_type()
64 if (!strncmp(btrfs_compress_types[i], str, comp_len)) in btrfs_compress_is_valid_type()