/linux-6.12.1/drivers/i2c/busses/ |
D | i2c-viperboard.c | 116 u16 remain_len, len1, len2, start = 0x0000; in vprbrd_i2c_read() local 126 len2 = 0x00; in vprbrd_i2c_read() 129 rmsg->header.len2 = 0x00; in vprbrd_i2c_read() 136 len2 = 0x00; in vprbrd_i2c_read() 139 rmsg->header.len2 = 0x00; in vprbrd_i2c_read() 146 len2 = 0x00; in vprbrd_i2c_read() 149 rmsg->header.len2 = 0xff; in vprbrd_i2c_read() 156 len2 = remain_len - 512; in vprbrd_i2c_read() 159 rmsg->header.len2 = 0xff; in vprbrd_i2c_read() 166 len2 = remain_len - 512; in vprbrd_i2c_read() [all …]
|
/linux-6.12.1/tools/perf/util/ |
D | levenshtein.c | 47 int len1 = strlen(string1), len2 = strlen(string2); in levenshtein() local 48 int *row0 = malloc(sizeof(int) * (len2 + 1)); in levenshtein() 49 int *row1 = malloc(sizeof(int) * (len2 + 1)); in levenshtein() 50 int *row2 = malloc(sizeof(int) * (len2 + 1)); in levenshtein() 53 for (j = 0; j <= len2; j++) in levenshtein() 59 for (j = 0; j < len2; j++) { in levenshtein() 81 i = row1[len2]; in levenshtein()
|
/linux-6.12.1/fs/hfsplus/ |
D | unicode.c | 35 u16 len1, len2, c1, c2; in hfsplus_strcasecmp() local 39 len2 = be16_to_cpu(s2->length); in hfsplus_strcasecmp() 51 while (len2 && !c2) { in hfsplus_strcasecmp() 54 len2--; in hfsplus_strcasecmp() 68 u16 len1, len2, c1, c2; in hfsplus_strcmp() local 73 len2 = be16_to_cpu(s2->length); in hfsplus_strcmp() 77 for (len = min(len1, len2); len > 0; len--) { in hfsplus_strcmp() 86 return len1 < len2 ? -1 : in hfsplus_strcmp() 87 len1 > len2 ? 1 : 0; in hfsplus_strcmp() 441 int dsize1, dsize2, len1, len2; in hfsplus_compare_dentry() local [all …]
|
/linux-6.12.1/arch/powerpc/kernel/ |
D | sys_ppc32.c | 95 unsigned long, len1, unsigned long, len2) in PPC32_SYSCALL_DEFINE4() argument 97 return ksys_truncate(path, merge_64(len1, len2)); in PPC32_SYSCALL_DEFINE4() 102 unsigned long, len1, unsigned long, len2) in PPC32_SYSCALL_DEFINE4() argument 104 return ksys_ftruncate(fd, merge_64(len1, len2)); in PPC32_SYSCALL_DEFINE4() 129 u32, offset1, u32, offset2, u32, len1, u32, len2) in SYSCALL_DEFINE6() argument 133 merge_64(len1, len2)); in SYSCALL_DEFINE6()
|
/linux-6.12.1/fs/hfs/ |
D | string.c | 77 const unsigned char *s2, unsigned int len2) in hfs_strcmp() argument 81 len = (len1 > len2) ? len2 : len1; in hfs_strcmp() 88 return len1 - len2; in hfs_strcmp()
|
/linux-6.12.1/lib/zlib_dfltcc/ |
D | dfltcc_util.h | 35 size_t *len2, in dfltcc() argument 43 size_t t5 = len2 ? *len2 : 0; in dfltcc() 96 if (len2) in dfltcc() 97 *len2 = t5; in dfltcc()
|
/linux-6.12.1/include/linux/ |
D | crc32.h | 36 static inline u32 crc32_le_combine(u32 crc1, u32 crc2, size_t len2) in crc32_le_combine() argument 38 return crc32_le_shift(crc1, len2) ^ crc2; in crc32_le_combine() 64 static inline u32 __crc32c_le_combine(u32 crc1, u32 crc2, size_t len2) in __crc32c_le_combine() argument 66 return __crc32c_le_shift(crc1, len2) ^ crc2; in __crc32c_le_combine()
|
/linux-6.12.1/lib/ |
D | crc32test.c | 721 u32 len1 = j, len2 = test[i].length - j; in crc32c_combine_test() local 726 len1, len2); in crc32c_combine_test() 728 if (!(crc_full == __crc32c_le_combine(crc1, crc2, len2) && in crc32c_combine_test() 809 u32 len1 = j, len2 = test[i].length - j; in crc32_combine_test() local 814 len1, len2); in crc32_combine_test() 816 if (!(crc_full == crc32_le_combine(crc1, crc2, len2) && in crc32_combine_test()
|
/linux-6.12.1/fs/udf/ |
D | directory.c | 330 static void udf_copy_to_bufs(void *buf1, int len1, void *buf2, int len2, in udf_copy_to_bufs() argument 345 if (WARN_ON_ONCE(off + len > len2 || !buf2)) in udf_copy_to_bufs() 351 static uint16_t udf_crc_fi_bufs(void *buf1, int len1, void *buf2, int len2, in udf_crc_fi_bufs() argument 366 if (WARN_ON_ONCE(off + len > len2 || !buf2)) in udf_crc_fi_bufs() 373 static void udf_copy_fi_to_bufs(char *buf1, int len1, char *buf2, int len2, in udf_copy_fi_to_bufs() argument 384 udf_copy_to_bufs(buf1, len1, buf2, len2, off, fi, in udf_copy_fi_to_bufs() 388 udf_copy_to_bufs(buf1, len1, buf2, len2, off, impuse, in udf_copy_fi_to_bufs() 392 udf_copy_to_bufs(buf1, len1, buf2, len2, off, name, in udf_copy_fi_to_bufs() 395 udf_copy_to_bufs(buf1, len1, buf2, len2, off, zeros, in udf_copy_fi_to_bufs() 399 crc = udf_crc_fi_bufs(buf1, len1, buf2, len2, crcoff, crclen); in udf_copy_fi_to_bufs() [all …]
|
/linux-6.12.1/arch/powerpc/include/asm/ |
D | syscalls.h | 102 unsigned long len1, unsigned long len2); 104 unsigned long len1, unsigned long len2); 113 u32 len1, u32 len2); 128 unsigned long len1, unsigned long len2); 130 unsigned long len1, unsigned long len2);
|
/linux-6.12.1/kernel/debug/kdb/ |
D | kdb_io.c | 534 int len1, len2; in kdb_search_string() local 538 len2 = strlen(searchfor); in kdb_search_string() 539 if (len1 < len2) in kdb_search_string() 541 if (kdb_grep_leading && kdb_grep_trailing && len1 != len2) in kdb_search_string() 544 if (!strncmp(searched, searchfor, len2)) in kdb_search_string() 547 if (!strncmp(searched+len1-len2, searchfor, len2)) in kdb_search_string() 553 if (!strncmp(cp, searchfor, len2)) in kdb_search_string()
|
/linux-6.12.1/drivers/parport/ |
D | probe.c | 218 size_t idlen, len2; in parport_read_device_id() local 229 len2 = len; in parport_read_device_id() 230 while(len2 < idlen && retval > 0) { in parport_read_device_id() 233 min(sizeof tmp, idlen-len2)); in parport_read_device_id() 236 len2 += retval; in parport_read_device_id()
|
/linux-6.12.1/drivers/media/tuners/ |
D | tda18218.c | 16 int ret = 0, len2, remaining; in tda18218_wr_regs() local 35 len2 = remaining; in tda18218_wr_regs() 36 if (len2 > (priv->cfg->i2c_wr_max - 1)) in tda18218_wr_regs() 37 len2 = (priv->cfg->i2c_wr_max - 1); in tda18218_wr_regs() 39 msg[0].len = 1 + len2; in tda18218_wr_regs() 41 memcpy(&buf[1], &val[len - remaining], len2); in tda18218_wr_regs()
|
/linux-6.12.1/fs/smb/client/ |
D | compress.c | 186 size_t len2; in collect_sample() local 189 len2 = min_t(size_t, len, SZ_2K); in collect_sample() 192 memcpy(&sample[s], p, len2); in collect_sample() 195 s += len2; in collect_sample() 197 if (len2 < SZ_2K || s >= max - SZ_2K) in collect_sample()
|
/linux-6.12.1/tools/testing/selftests/powerpc/ptrace/ |
D | ptrace-hwbreak.c | 439 int len1, len2; in test_multi_sethwdebug_range() local 445 len2 = B_LEN; in test_multi_sethwdebug_range() 447 get_ppc_hw_breakpoint(&info2, PPC_BREAKPOINT_TRIGGER_READ, wp_addr2, len2); in test_multi_sethwdebug_range() 459 check_success(child_pid, name2, "RO", wp_addr2, len2); in test_multi_sethwdebug_range() 470 int len1, len2; in test_multi_sethwdebug_range_dawr_overlap() local 476 len2 = A_LEN; in test_multi_sethwdebug_range_dawr_overlap() 478 get_ppc_hw_breakpoint(&info2, PPC_BREAKPOINT_TRIGGER_READ, wp_addr2, len2); in test_multi_sethwdebug_range_dawr_overlap() 490 check_success(child_pid, name, "RO", wp_addr2, len2); in test_multi_sethwdebug_range_dawr_overlap()
|
/linux-6.12.1/fs/ntfs3/ |
D | lznt.c | 51 size_t len1 = 0, len2 = 0; in longest_match_std() local 70 len2 = 3; in longest_match_std() 72 len2 += get_match_len(src + 3, ctx->unc_end, in longest_match_std() 77 if (len1 < len2) { in longest_match_std() 79 len1 = len2; in longest_match_std()
|
D | namei.c | 434 unsigned int len2 = name->len; in ntfs_d_compare() local 435 unsigned int lm = min(len1, len2); in ntfs_d_compare() 443 return len1 != len2; in ntfs_d_compare()
|
/linux-6.12.1/include/linux/mfd/ |
D | viperboard.h | 52 u8 len2; member 63 u8 len2; member
|
/linux-6.12.1/drivers/media/dvb-frontends/ |
D | nxt200x.c | 143 u8 attr, len2, buf; in nxt200x_writereg_multibyte() local 154 len2 = len; in nxt200x_writereg_multibyte() 166 len2 = ((attr << 4) | 0x10) | len; in nxt200x_writereg_multibyte() 174 nxt200x_writebytes(state, 0x34, &len2, 1); in nxt200x_writereg_multibyte() 202 u8 buf, len2, attr; in nxt200x_readreg_multibyte() local 211 len2 = len & 0x80; in nxt200x_readreg_multibyte() 212 nxt200x_writebytes(state, 0x34, &len2, 1); in nxt200x_readreg_multibyte() 227 len2 = (attr << 4) | len; in nxt200x_readreg_multibyte() 228 nxt200x_writebytes(state, 0x34, &len2, 1); in nxt200x_readreg_multibyte()
|
/linux-6.12.1/fs/nfs/blocklayout/ |
D | extent_tree.c | 181 sector_t len1 = 0, len2 = 0; in __ext_tree_remove() local 197 len2 = ext_f_end(be) - end; in __ext_tree_remove() 199 if (len2 > 0) { in __ext_tree_remove() 212 orig_v_offset + orig_len - len2; in __ext_tree_remove() 214 new->be_length = len2; in __ext_tree_remove() 224 orig_v_offset + orig_len - len2; in __ext_tree_remove() 226 be->be_length = len2; in __ext_tree_remove()
|
/linux-6.12.1/drivers/crypto/marvell/octeontx2/ |
D | otx2_cpt_reqmgr.h | 163 __be16 len2; member 174 u16 len2; member 241 sg_ptr->len2 = cpu_to_be16(list[i * SG_COMPS_MAX + 2].size); in setup_sgio_components() 253 sg_ptr->len2 = cpu_to_be16(list[i * SG_COMPS_MAX + 2].size); in setup_sgio_components() 310 sg_ptr->len2 = list[i * SGV2_COMPS_MAX + 2].size; in sgv2io_components_setup()
|
/linux-6.12.1/tools/accounting/ |
D | getdelays.c | 281 int c, rc, rep_len, aggr_len, len2; in main() local 499 len2 = 0; in main() 502 while (len2 < aggr_len) { in main() 537 len2 += NLA_ALIGN(na->nla_len); in main()
|
D | procacct.c | 227 int len2 = 0; in handle_aggr() local 231 while (len2 < aggr_len) { in handle_aggr() 256 len2 += NLA_ALIGN(na->nla_len); in handle_aggr()
|
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | kprobe_multi_test.c | 444 int len1, len2; in compare_name() local 449 len2 = res2 ? res2 - name2 : strlen(name2); in compare_name() 451 if (len1 == len2) in compare_name() 453 if (len1 < len2) in compare_name() 455 return strncmp(name1, name2, len2) >= 0 ? 1 : -1; in compare_name()
|
/linux-6.12.1/drivers/net/ethernet/stmicro/stmmac/ |
D | dwxgmac2_descs.c | 184 int len1, int len2, bool tx_own, in dwxgmac2_prepare_tso_tx_desc() argument 192 if (len2) in dwxgmac2_prepare_tso_tx_desc() 193 p->des2 |= cpu_to_le32((len2 << XGMAC_TDES2_B2L_SHIFT) & in dwxgmac2_prepare_tso_tx_desc()
|