Searched refs:k2 (Results 51 - 63 of 63) sorted by relevance

123

/linux-master/fs/bcachefs/
H A Dfsck.c1359 struct bkey_s_c k1, k2; local
1392 k2 = bch2_btree_iter_peek_upto(&iter2, POS(pos1.inode, U64_MAX));
1393 ret = bkey_err(k2);
1397 if (bpos_ge(k2.k->p, pos2.p))
1402 bch2_bkey_val_to_text(&buf, c, k2);
1404 if (bpos_gt(k2.k->p, pos2.p) ||
1405 pos2.size != k2.k->size) {
1422 swap(k1, k2);
1425 trans->extra_disk_res += bch2_bkey_sectors_compressed(k2);
1429 k1, k2)
[all...]
H A Dbtree_iter.c495 struct bkey_packed *k, *k2, *p; local
505 k2 = bch2_btree_node_iter_bset_pos(node_iter, b, t);
507 while ((p = bch2_bkey_prev_all(b, t, k2)) &&
509 k2 = p;
515 b, t, k2);
2046 struct bkey_s_c k, k2; local
2083 (k2 = btree_trans_peek_key_cache(iter, k.k->p)).k) {
2084 k = k2;
/linux-master/scripts/kconfig/
H A Dexpr.c1034 enum string_value_kind k1 = k_string, k2 = k_string; local
1075 k2 = expr_parse_string(str2, e->right.sym->type, &rval);
1078 if (k1 == k_string || k2 == k_string)
1080 else if (k1 == k_unsigned || k2 == k_unsigned)
1082 else /* if (k1 == k_signed && k2 == k_signed) */
/linux-master/tools/bpf/bpftool/
H A Dcommon.c1057 bool equal_fn_for_key_as_id(long k1, long k2, void *ctx) argument
1059 return k1 == k2;
H A Dgen.c1923 static bool btfgen_equal_fn(long k1, long k2, void *ctx) argument
1925 return k1 == k2;
/linux-master/drivers/media/usb/gspca/
H A Dsonixj.c1802 u8 k2; local
1804 k2 = (brightness - 0x80) >> 2;
1807 if (k2 > 0x1f)
1808 k2 = 0; /* only positive Y offset */
1841 reg_w1(gspca_dev, 0x96, k2); /* color matrix Y offset */
1847 u8 k2; local
1850 k2 = sd->contrast->val * 37 / (CONTRAST_MAX + 1)
1852 contrast[0] = (k2 + 1) / 2; /* red */
1854 contrast[2] = k2; /* green */
1856 contrast[4] = k2 /
[all...]
/linux-master/arch/x86/crypto/
H A Dpoly1305-x86_64-cryptogams.pl2220 kmovw %eax,%k2
2264 vmovdqa64 $R0,0x00(%rsp){%k2} # save in case $len%128 != 0
2267 vmovdqu64 $R1,0x00(%rsp,%rax){%k2}
2270 vmovdqa64 $S1,0x40(%rsp){%k2}
2273 vmovdqu64 $R2,0x40(%rsp,%rax){%k2}
2275 vmovdqa64 $S2,0x80(%rsp){%k2}
2276 vmovdqu64 $R3,0x80(%rsp,%rax){%k2}
2277 vmovdqa64 $S3,0xc0(%rsp){%k2}
2278 vmovdqu64 $R4,0xc0(%rsp,%rax){%k2}
2279 vmovdqa64 $S4,0x100(%rsp){%k2}
[all...]
/linux-master/fs/btrfs/
H A Dctree.c761 int __pure btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2) argument
763 if (k1->objectid > k2->objectid)
765 if (k1->objectid < k2->objectid)
767 if (k1->type > k2->type)
769 if (k1->type < k2->type)
771 if (k1->offset > k2->offset)
773 if (k1->offset < k2->offset)
/linux-master/fs/xfs/libxfs/
H A Dxfs_btree.h197 /* check that k1 is lower than k2 */
200 const union xfs_btree_key *k2);
/linux-master/security/selinux/ss/
H A Dpolicydb.c418 static int filenametr_cmp(const void *k1, const void *k2) argument
421 const struct filename_trans_key *ft2 = k2;
454 static int rangetr_cmp(const void *k1, const void *k2) argument
456 const struct range_trans *key1 = k1, *key2 = k2;
491 static int role_trans_cmp(const void *k1, const void *k2) argument
493 const struct role_trans_key *key1 = k1, *key2 = k2;
/linux-master/fs/reiserfs/
H A Dstree.c38 * form. k2 is pointer to cpu variable. For key of items of the same
63 * form. k2 is pointer to cpu variable.
133 const struct reiserfs_key *k2)
135 return memcmp(k1, k2, sizeof(struct reiserfs_key));
132 comp_le_keys(const struct reiserfs_key *k1, const struct reiserfs_key *k2) argument
/linux-master/tools/lib/bpf/
H A Dbtf.c1817 static bool btf_dedup_equal_fn(long k1, long k2, void *ctx);
3385 static bool btf_dedup_equal_fn(long k1, long k2, void *ctx) argument
3387 return k1 == k2;
H A Dlibbpf.c5685 static bool bpf_core_equal_fn(const long k1, const long k2, void *ctx) argument
5687 return k1 == k2;

Completed in 266 milliseconds

123