Searched refs:dup (Results 51 - 75 of 80) sorted by relevance

1234

/linux-master/fs/xfs/libxfs/
H A Dxfs_dir2_sf.c289 struct xfs_dir2_data_unused *dup = bp->b_addr + offset; local
295 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
296 offset += be16_to_cpu(dup->length);
H A Dxfs_dir2_leaf.c630 struct xfs_dir2_data_unused *dup; /* data unused entry */ local
658 * But if there are dup hash values the index is of the first of those.
851 dup = (xfs_dir2_data_unused_t *)
857 error = xfs_dir2_data_use_free(args, dbp, dup,
858 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
867 dep = (xfs_dir2_data_entry_t *)dup;
H A Dxfs_dir2_node.c1905 struct xfs_dir2_data_unused *dup; /* data unused entry pointer */ local
1964 dup = (xfs_dir2_data_unused_t *)
1968 aoff = (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr);
1969 error = xfs_dir2_data_use_free(args, dbp, dup, aoff, length,
1977 dep = (xfs_dir2_data_entry_t *)dup;
2103 /* If a CI match, dup the actual name and return -EEXIST */
/linux-master/fs/ntfs3/
H A Dindex.c2634 * 'dup' - info from MFT record
2638 const struct NTFS_DUP_INFO *dup, int sync)
2676 if (!memcmp(&e_fname->dup, dup, sizeof(*dup))) {
2683 memcpy(&e_fname->dup, dup, sizeof(*dup));
2636 indx_update_dup(struct ntfs_inode *ni, struct ntfs_sb_info *sbi, const struct ATTR_FILE_NAME *fname, const struct NTFS_DUP_INFO *dup, int sync) argument
H A Dntfs.h574 struct NTFS_DUP_INFO dup;// 0x08: member in struct:ATTR_FILE_NAME
580 static_assert(sizeof(((struct ATTR_FILE_NAME *)NULL)->dup) == 0x38);
H A Dfslog.c3453 memmove(&fname->dup, data, sizeof(fname->dup)); //
3613 memmove(&fname->dup, data, sizeof(fname->dup));
H A Dntfs_fs.h701 const struct NTFS_DUP_INFO *dup, int sync);
/linux-master/tools/testing/selftests/nolibc/
H A Dnolibc-test.c926 CASE_TEST(close_dup); EXPECT_SYSZR(1, close(dup(0))); break;
927 CASE_TEST(dup_0); tmp = dup(0); EXPECT_SYSNE(1, tmp, -1); close(tmp); break;
928 CASE_TEST(dup_m1); tmp = dup(-1); EXPECT_SYSER(1, tmp, -1, EBADF); if (tmp != -1) close(tmp); break;
1244 if (close(dup(1)) == -1) {
/linux-master/scripts/mod/
H A Dfile2alias.c639 int dup = 0; local
645 for (i2 = 0; i2 < i && !dup; i2++) {
658 dup = 1;
665 if (!dup) {
/linux-master/drivers/cxl/core/
H A Dport.c1044 struct cxl_dport *dup; local
1048 dup = find_dport(port, dport->port_id);
1049 if (dup) {
1053 dev_name(dup->dport_dev));
/linux-master/tools/perf/util/
H A Dprobe-file.c183 fddup = dup(fd);
517 fddup = dup(pcache->fd);
/linux-master/arch/arm64/crypto/
H A Dsm4-neon-core.S97 dup RX0.4s, RKEY.s[round]; \
163 dup RX0.4s, RKEY.s[round]; \
H A Dcrct10dif-ce-core.S117 dup perm1.2d, x5
/linux-master/fs/bcachefs/
H A Dbtree_iter.c1339 struct btree_path *path = trans->paths + path_idx, *dup; local
1344 dup = path->preserve
1348 if (!dup && !(!path->preserve && !is_btree_node(path, path->level)))
1353 (!dup || !bch2_btree_path_relock_norestart(trans, dup)))
1356 if (dup) {
1357 dup->preserve |= path->preserve;
1358 dup->should_be_locked |= path->should_be_locked;
/linux-master/lib/zstd/compress/
H A Dzstd_lazy.c1044 const uint8x16_t dup = vdupq_n_u8(tag);
1045 const uint8x16_t cmp0 = vceqq_u8(chunk.val[0], dup);
1046 const uint8x16_t cmp1 = vceqq_u8(chunk.val[1], dup);
1047 const uint8x16_t cmp2 = vceqq_u8(chunk.val[2], dup);
1048 const uint8x16_t cmp3 = vceqq_u8(chunk.val[3], dup);
/linux-master/drivers/of/
H A Dunittest.c1593 * of np into dup node (present in live tree) and
1594 * updates parent of children of np to dup.
1597 * @dup: node present in live tree to be updated
1600 struct device_node *dup)
1608 child->parent = dup;
1629 ret = of_add_property(dup, prop);
1651 struct device_node *next, *dup, *child; local
1665 dup = of_find_node_by_path(full_name);
1667 if (dup) {
1668 update_node_properties(np, dup);
1599 update_node_properties(struct device_node *np, struct device_node *dup) argument
[all...]
/linux-master/ipc/
H A Dsem.c1994 unsigned long dup = 0; local
2020 if (dup & mask) {
2031 dup |= mask;
/linux-master/tools/testing/selftests/openat2/
H A Dresolve_test.c461 dfd = dup(rootfd);
/linux-master/fs/exfat/
H A Dexfat_fs.h564 void exfat_chain_dup(struct exfat_chain *dup, struct exfat_chain *ec);
/linux-master/fs/
H A Dfile.c1412 SYSCALL_DEFINE1(dup, unsigned int, fildes)
/linux-master/tools/include/nolibc/
H A Dsys.h216 * int dup(int fd);
226 int dup(int fd) function
/linux-master/tools/testing/selftests/memfd/
H A Dmemfd_test.c257 r = dup(fd);
259 printf("dup(%d) failed: %m\n", fd);
1412 * Test sharing via dup()
1488 * This is *not* like dup(), but like a real separate open(). Make sure the
/linux-master/fs/nfs/
H A Dfs_context.c1564 .dup = nfs_fs_context_dup,
/linux-master/drivers/block/
H A Drbd.c6242 char *dup; local
6246 dup = kmemdup(*buf, len + 1, GFP_KERNEL);
6247 if (!dup)
6249 *(dup + len) = '\0';
6255 return dup;
/linux-master/drivers/scsi/qla2xxx/
H A Dqla_gs.c3179 u16 dup = 0, dup_cnt = 0; local
3238 dup = 1;
3300 if (dup) {

Completed in 332 milliseconds

1234