Searched refs:sizemask (Results 1 – 4 of 4) sorted by relevance
| /openbsd/src/gnu/usr.bin/gcc/gcc/ |
| D | hashtable.c | 126 size_t sizemask; local 129 sizemask = table->nslots - 1; 130 index = hash & sizemask; 134 hash2 = ((hash * 17) & sizemask) | 1; 154 index = (index + hash2) & sizemask; 185 unsigned int size, sizemask; local 189 sizemask = size - 1; 199 hash2 = ((hash * 17) & sizemask) | 1; 200 index = hash & sizemask; 210 index = (index + hash2) & sizemask;
|
| /openbsd/src/gnu/gcc/libcpp/ |
| D | symtab.c | 108 size_t sizemask; in ht_lookup_with_hash() local 111 sizemask = table->nslots - 1; in ht_lookup_with_hash() 112 index = hash & sizemask; in ht_lookup_with_hash() 132 hash2 = ((hash * 17) & sizemask) | 1; in ht_lookup_with_hash() 137 index = (index + hash2) & sizemask; in ht_lookup_with_hash() 182 unsigned int size, sizemask; in ht_expand() local 186 sizemask = size - 1; in ht_expand() 196 index = hash & sizemask; in ht_expand() 200 hash2 = ((hash * 17) & sizemask) | 1; in ht_expand() 203 index = (index + hash2) & sizemask; in ht_expand()
|
| /openbsd/src/gnu/llvm/compiler-rt/include/sanitizer/ |
| D | linux_syscall_hooks.h | 1713 #define __sanitizer_syscall_pre_signalfd(ufd, user_mask, sizemask) \ argument 1715 (long)(sizemask)) 1716 #define __sanitizer_syscall_post_signalfd(res, ufd, user_mask, sizemask) \ argument 1718 (long)(sizemask)) 1719 #define __sanitizer_syscall_pre_signalfd4(ufd, user_mask, sizemask, flags) \ argument 1721 (long)(sizemask), (long)(flags)) 1722 #define __sanitizer_syscall_post_signalfd4(res, ufd, user_mask, sizemask, \ argument 1725 (long)(sizemask), (long)(flags)) 2999 long sizemask); 3001 long sizemask); [all …]
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_common_syscalls.inc | 2933 PRE_SYSCALL(signalfd)(long ufd, void *user_mask, long sizemask) {} 2936 (long res, long ufd, kernel_sigset_t *user_mask, long sizemask) { 2939 POST_WRITE(user_mask, sizemask); 2943 PRE_SYSCALL(signalfd4)(long ufd, void *user_mask, long sizemask, long flags) {} 2946 (long res, long ufd, kernel_sigset_t *user_mask, long sizemask, long flags) { 2949 POST_WRITE(user_mask, sizemask);
|