Searched refs:newmask (Results 1 – 7 of 7) sorted by relevance
/external/valgrind/none/tests/ |
D | pth_blockedsig.c | 34 sigset_t newmask, oldmask; in main() local 37 memset(&newmask, 0, sizeof newmask); in main() 38 sigemptyset (&newmask); in main() 39 sigaddset (&newmask, SIGUSR1); in main() 41 if (pthread_sigmask (SIG_BLOCK, &newmask, &oldmask) != 0) in main()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_eu_emit.c | 2331 GLuint i, newmask = 0, len = 0; in brw_SAMPLE() local 2341 newmask |= 1<<i; in brw_SAMPLE() 2345 if (newmask != writemask) { in brw_SAMPLE() 2358 newmask = ~newmask & WRITEMASK_XYZW; in brw_SAMPLE() 2367 brw_MOV(p, get_element_ud(m1, 2), brw_imm_ud(newmask << 12)); in brw_SAMPLE()
|
/external/selinux/policycoreutils/semanage/ |
D | seobject.py | 1260 newmask=mask 1270 newmask = str(i.netmask()) 1271 if newmask == "0.0.0.0" and i.version() == 6: 1272 newmask = "::" 1281 return newaddr, newmask, newprotocol
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 427 #define __sanitizer_syscall_pre_ssetmask(newmask) \ argument 428 __sanitizer_syscall_pre_impl_ssetmask((long)(newmask)) 429 #define __sanitizer_syscall_post_ssetmask(res, newmask) \ argument 430 __sanitizer_syscall_post_impl_ssetmask(res, (long)(newmask)) 2243 void __sanitizer_syscall_pre_impl_ssetmask(long newmask); 2244 void __sanitizer_syscall_post_impl_ssetmask(long res, long newmask);
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 748 PRE_SYSCALL(ssetmask)(long newmask) {} 750 POST_SYSCALL(ssetmask)(long res, long newmask) {}
|
/external/sqlite/dist/ |
D | sqlite3.c | 12561 u32 newmask; /* Mask of new.* columns referenced */ member 81691 pParse->newmask |= (iCol>=32 ? 0xffffffff : (((u32)1)<<iCol)); 113199 pPrg->aColmask[1] = pSubParse->newmask; 113546 int newmask; /* Mask of NEW.* columns accessed by BEFORE triggers */ 113919 newmask = sqlite3TriggerColmask( 113930 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 12561 u32 newmask; /* Mask of new.* columns referenced */ member 81673 pParse->newmask |= (iCol>=32 ? 0xffffffff : (((u32)1)<<iCol)); 113181 pPrg->aColmask[1] = pSubParse->newmask; 113528 int newmask; /* Mask of NEW.* columns accessed by BEFORE triggers */ 113901 newmask = sqlite3TriggerColmask( 113912 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){
|