/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_syscall_test/ |
H A D | cpuset_syscall_test.c | 166 struct bitmask *nmask; in test_get_mempolicy() local 176 nmask = bitmask_alloc(nbits); in test_get_mempolicy() 177 if (nmask == NULL) { in test_get_mempolicy() 182 ret = get_mempolicy(NULL, bitmask_mask(nmask), bitmask_nbits(nmask), 0, in test_get_mempolicy() 185 bitmask_displaylist(str, 256, nmask); in test_get_mempolicy()
|
/third_party/ltp/testcases/kernel/mem/vma/ |
H A D | vma04.c | 63 static struct bitmask *nmask; variable 92 nmask = numa_allocate_nodemask(); in main() 102 numa_bitmask_setbit(nmask, node); in main() 151 MPOL_BIND, nmask->maskp, nmask->size, 0) != 0) { in mem_bind() 164 MPOL_INTERLEAVE, nmask->maskp, nmask->size, 0) != 0) { in mem_interleave()
|
H A D | vma02.c | 70 struct bitmask *nmask = numa_allocate_nodemask(); in main() local 84 numa_bitmask_setbit(nmask, node); in main() 98 err = mbind(addr + pagesize, pagesize, MPOL_BIND, nmask->maskp, in main() 99 nmask->size, MPOL_MF_MOVE_ALL); in main()
|
/third_party/ltp/testcases/kernel/mem/ksm/ |
H A D | ksm04.c | 64 unsigned long nmask[MAXNODES / BITS_PER_LONG] = { 0 }; in verify_ksm() local 68 set_node(nmask, node); in verify_ksm() 72 if (set_mempolicy(MPOL_BIND, nmask, MAXNODES) == -1) { in verify_ksm()
|
H A D | ksm02.c | 64 unsigned long nmask[MAXNODES / BITS_PER_LONG] = { 0 }; in verify_ksm() local 68 set_node(nmask, node); in verify_ksm() 70 if (set_mempolicy(MPOL_BIND, nmask, MAXNODES) == -1) { in verify_ksm()
|
/third_party/ltp/testcases/kernel/syscalls/sigaction/ |
H A D | sigaction01.c | 93 sigset_t nmask, omask; in handler() local 108 sigemptyset(&nmask); in handler() 110 err = sigprocmask(SIG_BLOCK, &nmask, &omask); in handler()
|
/third_party/ltp/testcases/kernel/mem/cpuset/ |
H A D | cpuset01.c | 51 unsigned long nmask[MAXNODES / BITS_PER_LONG] = { 0 }; in test_cpuset() local 64 set_node(nmask, nodes[i]); in test_cpuset() 66 if (set_mempolicy(MPOL_BIND, nmask, MAXNODES) == -1) in test_cpuset()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | simplify.c | 780 unsigned long long omask, nmask; in simplify_mask_or_and() local 789 nmask = omask & mask; in simplify_mask_or_and() 790 if (nmask == 0) { in simplify_mask_or_and() 796 if (nmask == mask) { in simplify_mask_or_and() 802 if (nmask != omask && one_use(ora)) { in simplify_mask_or_and() 804 and->src2 = value_pseudo(nmask); in simplify_mask_or_and() 914 unsigned long long mask, omask, nmask; in simplify_shift() local 974 nmask = omask & mask; in simplify_shift() 975 if (nmask == 0) in simplify_shift() 977 if (nmask in simplify_shift() 1472 unsigned long long nmask; simplify_constant_mask() local [all...] |
/third_party/ltp/testcases/kernel/mem/lib/ |
H A D | mem.c | 171 unsigned long nmask[MAXNODES / BITS_PER_LONG] = { 0 }; in set_global_mempolicy() local 187 set_node(nmask, nodes[1]); in set_global_mempolicy() 198 set_node(nmask, nodes[1]); in set_global_mempolicy() 199 set_node(nmask, nodes[2]); in set_global_mempolicy() 205 if (set_mempolicy(mempolicy, nmask, MAXNODES) == -1) in set_global_mempolicy()
|
/third_party/lwip/src/netif/ppp/ |
H A D | ppp.c | 1205 u32_t mask, nmask; in get_mask() 1209 nmask = IP_CLASSA_NET; in get_mask() 1211 nmask = IP_CLASSB_NET; in get_mask() 1213 nmask = IP_CLASSC_NET; in get_mask() 1217 mask = PP_HTONL(0xffffff00UL) | lwip_htonl(nmask); in get_mask()
|
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
H A D | libcpuset.c | 3089 static int get_mempolicy(int *policy, unsigned long *nmask, in get_mempolicy() argument 3092 return tst_syscall(__NR_get_mempolicy, policy, nmask, maxnode, in get_mempolicy() 3096 static int set_mempolicy(int mode, unsigned long *nmask, unsigned long maxnode) in set_mempolicy() argument 3098 return tst_syscall(__NR_set_mempolicy, mode, nmask, maxnode); in set_mempolicy()
|