OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kcp2
(Results
1 - 3
of
3
) sorted by relevancy
/src/sys/kern/
subr_kcpuset.c
418
kcpuset_match(const kcpuset_t *kcp1, const kcpuset_t *
kcp2
)
421
return memcmp(kcp1,
kcp2
, kc_bitsize) == 0;
425
kcpuset_intersecting_p(const kcpuset_t *kcp1, const kcpuset_t *
kcp2
)
429
if (kcp1->bits[j] &
kcp2
->bits[j])
447
kcpuset_ffs_intersecting(const kcpuset_t *kcp1, const kcpuset_t *
kcp2
)
451
uint32_t bits = kcp1->bits[j] &
kcp2
->bits[j];
459
kcpuset_merge(kcpuset_t *kcp1, const kcpuset_t *
kcp2
)
463
kcp1->bits[j] |=
kcp2
->bits[j];
468
kcpuset_intersect(kcpuset_t *kcp1, const kcpuset_t *
kcp2
)
472
kcp1->bits[j] &=
kcp2
->bits[j]
[
all
...]
/src/sys/arch/riscv/riscv/
cpu_subr.c
195
kcpuset_t *
kcp2
= ci->ci_multicastcpus;
local
200
kcpuset_copy(
kcp2
, kcp);
201
kcpuset_remove(
kcp2
, ci->ci_data.cpu_kcpuset);
202
for (unsigned int cii; (cii = kcpuset_ffs(
kcp2
)) != 0; ) {
203
kcpuset_clear(
kcp2
, --cii);
/src/sys/arch/mips/mips/
cpu_subr.c
656
kcpuset_t *
kcp2
= ci->ci_multicastcpus;
local
661
kcpuset_copy(
kcp2
, kcp);
662
kcpuset_remove(
kcp2
, ci->ci_kcpuset);
663
for (cpuid_t cii; (cii = kcpuset_ffs(
kcp2
)) != 0; ) {
664
kcpuset_clear(
kcp2
, --cii);
Completed in 18 milliseconds
Indexes created Sat Feb 21 16:20:20 UTC 2026