Home
last modified time | relevance | path

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

/openbmc/linux/drivers/edac/
H A Dpnd2_edac.c401 static struct b_cr_slice_channel_hash chash; variable
500 RD_REG(&chash, b_cr_slice_channel_hash)) in get_registers()
511 chash.sym_slice0_channel_enabled = 0x1; in get_registers()
512 chash.sym_slice1_channel_enabled = 0x1; in get_registers()
537 two_slices = !chash.slice_1_disabled && in get_registers()
538 !chash.slice_0_mem_disabled && in get_registers()
539 (chash.sym_slice0_channel_enabled != 0) && in get_registers()
540 (chash.sym_slice1_channel_enabled != 0); in get_registers()
541 two_channels = !chash.ch_1_disabled && in get_registers()
542 !chash.enable_pmi_dual_data_mode && in get_registers()
[all …]
/openbmc/linux/fs/f2fs/
H A Ddir.c363 if (room && F2FS_I(dir)->chash != fname->hash) { in find_in_level()
364 F2FS_I(dir)->chash = fname->hash; in find_in_level()
720 if (F2FS_I(dir)->chash == fname->hash) { in f2fs_add_regular_entry()
722 F2FS_I(dir)->chash = 0; in f2fs_add_regular_entry()
H A Df2fs.h821 f2fs_hash_t chash; /* hash value of given file name */ member
/openbmc/linux/tools/perf/util/
H A Dmachine.c2446 unsigned char chash[CHASHSZ]; in remove_loops() local
2448 memset(chash, NO_ENTRY, sizeof(chash)); in remove_loops()
2456 if (chash[h] == NO_ENTRY) { in remove_loops()
2457 chash[h] = i; in remove_loops()
2458 } else if (l[chash[h]].from == l[i].from) { in remove_loops()
2462 for (j = chash[h]; j < i && i + off < nr; j++, off++) in remove_loops()