Home
last modified time | relevance | path

Searched refs:key2 (Results 1 – 13 of 13) sorted by relevance

/linux-4.19.296/fs/befs/
Dbtree.c120 const void *key2, int keylen2);
713 const void *key2, int keylen2) in befs_compare_strings() argument
716 int result = strncmp(key1, key2, len); in befs_compare_strings()
725 btree_compare_int32(cont void *key1, int keylen1, const void *key2, int keylen2)
727 return *(int32_t *) key1 - *(int32_t *) key2;
732 const void *key2, int keylen2)
734 if (*(u_int32_t *) key1 == *(u_int32_t *) key2)
736 else if (*(u_int32_t *) key1 > *(u_int32_t *) key2)
742 btree_compare_int64(cont void *key1, int keylen1, const void *key2, int keylen2)
744 if (*(int64_t *) key1 == *(int64_t *) key2)
[all …]
/linux-4.19.296/fs/ubifs/
Dkey.h493 const union ubifs_key *key2) in keys_cmp() argument
495 if (key1->u32[0] < key2->u32[0]) in keys_cmp()
497 if (key1->u32[0] > key2->u32[0]) in keys_cmp()
499 if (key1->u32[1] < key2->u32[1]) in keys_cmp()
501 if (key1->u32[1] > key2->u32[1]) in keys_cmp()
518 const union ubifs_key *key2) in keys_eq() argument
520 if (key1->u32[0] != key2->u32[0]) in keys_eq()
522 if (key1->u32[1] != key2->u32[1]) in keys_eq()
Dtnc_misc.c372 const union ubifs_key *key1, *key2; in read_znode() local
375 key2 = &znode->zbranch[i + 1].key; in read_znode()
377 cmp = keys_cmp(c, key1, key2); in read_znode()
Djournal.c1501 union ubifs_key xent_key, key1, key2; in ubifs_jnl_delete_xattr() local
1565 highest_ino_key(c, &key2, inode->i_ino); in ubifs_jnl_delete_xattr()
1566 err = ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_jnl_delete_xattr()
Dtnc.c2900 union ubifs_key key1, key2; in ubifs_tnc_remove_ino() local
2938 highest_ino_key(c, &key2, xattr_inum); in ubifs_tnc_remove_ino()
2939 err = ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
2952 highest_ino_key(c, &key2, inum); in ubifs_tnc_remove_ino()
2954 return ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
/linux-4.19.296/fs/cifs/
Dsmbencrypt.c72 unsigned char key2[8]; in smbhash() local
75 str_to_key(key, key2); in smbhash()
83 crypto_cipher_setkey(tfm_des, key2, 8); in smbhash()
/linux-4.19.296/fs/hfs/
Dcatalog.c171 int hfs_cat_keycmp(const btree_key *key1, const btree_key *key2) in hfs_cat_keycmp() argument
176 k2p = key2->cat.ParID; in hfs_cat_keycmp()
182 key2->cat.CName.name, key2->cat.CName.len); in hfs_cat_keycmp()
Dextent.c50 int hfs_ext_keycmp(const btree_key *key1, const btree_key *key2) in hfs_ext_keycmp() argument
56 fnum2 = key2->ext.FNum; in hfs_ext_keycmp()
59 if (key1->ext.FkType != key2->ext.FkType) in hfs_ext_keycmp()
60 return key1->ext.FkType < key2->ext.FkType ? -1 : 1; in hfs_ext_keycmp()
63 block2 = key2->ext.FABN; in hfs_ext_keycmp()
/linux-4.19.296/include/linux/
Dbtree-128.h88 u64 key1, u64 key2, size_t index);
/linux-4.19.296/fs/xfs/libxfs/
Dxfs_btree.h149 union xfs_btree_key *key2);
/linux-4.19.296/fs/reiserfs/
Dstree.c99 const struct reiserfs_key *key2) in comp_short_le_keys() argument
105 k2_u32 = (__u32 *) key2; in comp_short_le_keys()
/linux-4.19.296/fs/btrfs/
Dioctl.c2418 struct btrfs_key key, key2; in btrfs_search_path_in_tree_user() local
2494 btrfs_item_key_to_cpu(leaf, &key2, slot); in btrfs_search_path_in_tree_user()
2495 if (key2.objectid != dirid) { in btrfs_search_path_in_tree_user()
2500 temp_inode = btrfs_iget(sb, &key2, root, NULL); in btrfs_search_path_in_tree_user()
Drelocation.c1722 struct btrfs_disk_key key2; in memcmp_node_keys() local
1724 btrfs_node_key(path->nodes[level], &key2, path->slots[level]); in memcmp_node_keys()
1725 return memcmp(&key1, &key2, sizeof(key1)); in memcmp_node_keys()