Home
last modified time | relevance | path

Searched refs:chash (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/drivers/edac/
Dpnd2_edac.c426 static struct b_cr_slice_channel_hash chash; variable
525 RD_REG(&chash, b_cr_slice_channel_hash)) in get_registers()
536 chash.sym_slice0_channel_enabled = 0x1; in get_registers()
537 chash.sym_slice1_channel_enabled = 0x1; in get_registers()
562 two_slices = !chash.slice_1_disabled && in get_registers()
563 !chash.slice_0_mem_disabled && in get_registers()
564 (chash.sym_slice0_channel_enabled != 0) && in get_registers()
565 (chash.sym_slice1_channel_enabled != 0); in get_registers()
566 two_channels = !chash.ch_1_disabled && in get_registers()
567 !chash.enable_pmi_dual_data_mode && in get_registers()
[all …]
/Linux-v4.19/drivers/gpu/drm/amd/lib/
DMakefile32 obj-$(CONFIG_CHASH) += chash.o
/Linux-v4.19/fs/f2fs/
Ddir.c195 if (!de && room && F2FS_I(dir)->chash != namehash) { in find_in_level()
196 F2FS_I(dir)->chash = namehash; in find_in_level()
514 if (F2FS_I(dir)->chash == dentry_hash) { in f2fs_add_regular_entry()
516 F2FS_I(dir)->chash = 0; in f2fs_add_regular_entry()
Df2fs.h661 f2fs_hash_t chash; /* hash value of given file name */ member
/Linux-v4.19/tools/perf/util/
Dmachine.c2009 unsigned char chash[CHASHSZ]; in remove_loops() local
2011 memset(chash, NO_ENTRY, sizeof(chash)); in remove_loops()
2019 if (chash[h] == NO_ENTRY) { in remove_loops()
2020 chash[h] = i; in remove_loops()
2021 } else if (l[chash[h]].from == l[i].from) { in remove_loops()
2025 for (j = chash[h]; j < i && i + off < nr; j++, off++) in remove_loops()