/src/sys/kern/ |
kern_ssp.c | 69 long guard[__arraycount(stack_chk_guard)]; local in function:ssp_init 71 cprng_fast(guard, sizeof(guard)); 73 for (i = 0; i < __arraycount(guard); i++) 74 stack_chk_guard[i] = guard[i]; 76 for (i = 0; i < __arraycount(guard); i++) 77 aprint_debug("%lx ", guard[i]);
|
kern_ssp.c | 69 long guard[__arraycount(stack_chk_guard)]; local in function:ssp_init 71 cprng_fast(guard, sizeof(guard)); 73 for (i = 0; i < __arraycount(guard); i++) 74 stack_chk_guard[i] = guard[i]; 76 for (i = 0; i < __arraycount(guard); i++) 77 aprint_debug("%lx ", guard[i]);
|
kern_ssp.c | 69 long guard[__arraycount(stack_chk_guard)]; local in function:ssp_init 71 cprng_fast(guard, sizeof(guard)); 73 for (i = 0; i < __arraycount(guard); i++) 74 stack_chk_guard[i] = guard[i]; 76 for (i = 0; i < __arraycount(guard); i++) 77 aprint_debug("%lx ", guard[i]);
|
/src/sys/arch/m68k/fpsp/ |
fpsp.h | 185 WBTEMP_GRS equ LV-40 ;alias wbtemp guard, round, sticky variable in typeref:typename:alias wbtemp 186 guard_bit equ 1 ;guard bit is bit number 1
|
fpsp.h | 185 WBTEMP_GRS equ LV-40 ;alias wbtemp guard, round, sticky variable in typeref:typename:alias wbtemp 186 guard_bit equ 1 ;guard bit is bit number 1
|
fpsp.h | 185 WBTEMP_GRS equ LV-40 ;alias wbtemp guard, round, sticky variable in typeref:typename:alias wbtemp 186 guard_bit equ 1 ;guard bit is bit number 1
|
/src/tests/lib/libc/string/ |
t_memmem.c | 111 char *guard = mmap(src + pg, pg, local in function:ATF_TC_BODY 113 printf("%p\n", guard); 123 munmap(guard, pg);
|
t_memmem.c | 111 char *guard = mmap(src + pg, pg, local in function:ATF_TC_BODY 113 printf("%p\n", guard); 123 munmap(guard, pg);
|
t_memmem.c | 111 char *guard = mmap(src + pg, pg, local in function:ATF_TC_BODY 113 printf("%p\n", guard); 123 munmap(guard, pg);
|
/src/tests/lib/libpthread/ |
t_stack.c | 59 size_t guardsize; /* default guard size */ 111 * Return the default guard size for threads created with 162 * be a stack guard (i.e., it should be empty), adjusting the 163 * requested bounds by the default stack guard size will leave us 273 * _does not_ have access to the start or end of its stack guard, 282 void *addr, *guard; local in function:checkguardaccessthread 286 * Get the the stack and stack guard parameters. 293 * Determine where the guard starts in virtual address space 297 guard = (char *)addr + size; 299 guard = (char *)addr - guardsize [all...] |
t_stack.c | 59 size_t guardsize; /* default guard size */ 111 * Return the default guard size for threads created with 162 * be a stack guard (i.e., it should be empty), adjusting the 163 * requested bounds by the default stack guard size will leave us 273 * _does not_ have access to the start or end of its stack guard, 282 void *addr, *guard; local in function:checkguardaccessthread 286 * Get the the stack and stack guard parameters. 293 * Determine where the guard starts in virtual address space 297 guard = (char *)addr + size; 299 guard = (char *)addr - guardsize [all...] |
t_stack.c | 59 size_t guardsize; /* default guard size */ 111 * Return the default guard size for threads created with 162 * be a stack guard (i.e., it should be empty), adjusting the 163 * requested bounds by the default stack guard size will leave us 273 * _does not_ have access to the start or end of its stack guard, 282 void *addr, *guard; local in function:checkguardaccessthread 286 * Get the the stack and stack guard parameters. 293 * Determine where the guard starts in virtual address space 297 guard = (char *)addr + size; 299 guard = (char *)addr - guardsize [all...] |
/src/games/hack/ |
hack.vault.c | 109 xchar gdx, gdy; /* goal of guard's walk */ 115 {"guard", '@', 12, 12, -1, 4, 10, sizeof(struct egd)}; 117 static struct monst *guard; variable in typeref:struct:monst * 128 struct egd *egd = monster_private(guard); 143 /* it seems he left the corridor - let the guard disappear */ 144 mondead(guard); 145 guard = 0; 152 struct egd *egd = monster_private(guard); 166 guard = mtmp; 170 guard = 0 [all...] |
hack.vault.c | 109 xchar gdx, gdy; /* goal of guard's walk */ 115 {"guard", '@', 12, 12, -1, 4, 10, sizeof(struct egd)}; 117 static struct monst *guard; variable in typeref:struct:monst * 128 struct egd *egd = monster_private(guard); 143 /* it seems he left the corridor - let the guard disappear */ 144 mondead(guard); 145 guard = 0; 152 struct egd *egd = monster_private(guard); 166 guard = mtmp; 170 guard = 0 [all...] |
hack.vault.c | 109 xchar gdx, gdy; /* goal of guard's walk */ 115 {"guard", '@', 12, 12, -1, 4, 10, sizeof(struct egd)}; 117 static struct monst *guard; variable in typeref:struct:monst * 128 struct egd *egd = monster_private(guard); 143 /* it seems he left the corridor - let the guard disappear */ 144 mondead(guard); 145 guard = 0; 152 struct egd *egd = monster_private(guard); 166 guard = mtmp; 170 guard = 0 [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/safestack/ |
safestack.cc | 83 // protector pass to store the stack guard (see getStackCookieLocation() 101 static inline void *unsafe_stack_alloc(size_t size, size_t guard) { 102 CHECK_GE(size + guard, size); 103 void *addr = MmapOrDie(size + guard, "unsafe_stack_alloc"); 104 MprotectNoAccess((uptr)addr, (uptr)guard); 105 return (char *)addr + guard; 108 static inline void unsafe_stack_setup(void *start, size_t size, size_t guard) { 110 CHECK_GE((char *)start + guard, (char *)start); 117 unsafe_stack_guard = guard; 223 size_t guard = 0 local in function:INTERCEPTOR 274 size_t guard = 4096; local in function:__safestack_init [all...] |
safestack.cc | 83 // protector pass to store the stack guard (see getStackCookieLocation() 101 static inline void *unsafe_stack_alloc(size_t size, size_t guard) { 102 CHECK_GE(size + guard, size); 103 void *addr = MmapOrDie(size + guard, "unsafe_stack_alloc"); 104 MprotectNoAccess((uptr)addr, (uptr)guard); 105 return (char *)addr + guard; 108 static inline void unsafe_stack_setup(void *start, size_t size, size_t guard) { 110 CHECK_GE((char *)start + guard, (char *)start); 117 unsafe_stack_guard = guard; 223 size_t guard = 0 local in function:INTERCEPTOR 274 size_t guard = 4096; local in function:__safestack_init [all...] |
safestack.cc | 83 // protector pass to store the stack guard (see getStackCookieLocation() 101 static inline void *unsafe_stack_alloc(size_t size, size_t guard) { 102 CHECK_GE(size + guard, size); 103 void *addr = MmapOrDie(size + guard, "unsafe_stack_alloc"); 104 MprotectNoAccess((uptr)addr, (uptr)guard); 105 return (char *)addr + guard; 108 static inline void unsafe_stack_setup(void *start, size_t size, size_t guard) { 110 CHECK_GE((char *)start + guard, (char *)start); 117 unsafe_stack_guard = guard; 223 size_t guard = 0 local in function:INTERCEPTOR 274 size_t guard = 4096; local in function:__safestack_init [all...] |
/src/usr.bin/rpcgen/ |
rpc_main.c | 498 char *guard, *tmp, *tmp2, *extdot; local in function:generate_guard 502 guard = strdup(filename); 503 if (guard == NULL) { 506 extdot = strrchr(guard, '.'); 514 for (tmp = guard; *tmp; tmp++) { 535 if (guard[0] == '_' || guard[0] == '.') { 536 if (asprintf(&tmp2, "RPCGEN_%s", guard) == -1) { 539 free(guard); 540 guard = tmp2 561 char *guard; local in function:h_output [all...] |
rpc_main.c | 498 char *guard, *tmp, *tmp2, *extdot; local in function:generate_guard 502 guard = strdup(filename); 503 if (guard == NULL) { 506 extdot = strrchr(guard, '.'); 514 for (tmp = guard; *tmp; tmp++) { 535 if (guard[0] == '_' || guard[0] == '.') { 536 if (asprintf(&tmp2, "RPCGEN_%s", guard) == -1) { 539 free(guard); 540 guard = tmp2 561 char *guard; local in function:h_output [all...] |
rpc_main.c | 498 char *guard, *tmp, *tmp2, *extdot; local in function:generate_guard 502 guard = strdup(filename); 503 if (guard == NULL) { 506 extdot = strrchr(guard, '.'); 514 for (tmp = guard; *tmp; tmp++) { 535 if (guard[0] == '_' || guard[0] == '.') { 536 if (asprintf(&tmp2, "RPCGEN_%s", guard) == -1) { 539 free(guard); 540 guard = tmp2 561 char *guard; local in function:h_output [all...] |
/src/common/lib/libc/gen/ |
radixtree.c | 822 * for (i = first; i != guard; i += step) 828 const unsigned int guard = last + step; local in function:gang_lookup_scan 879 for (i = vpp - n->n_ptrs + step; i != guard; i += step) { 888 if (i == guard) {
|
radixtree.c | 822 * for (i = first; i != guard; i += step) 828 const unsigned int guard = last + step; local in function:gang_lookup_scan 879 for (i = vpp - n->n_ptrs + step; i != guard; i += step) { 888 if (i == guard) {
|
radixtree.c | 822 * for (i = first; i != guard; i += step) 828 const unsigned int guard = last + step; local in function:gang_lookup_scan 879 for (i = vpp - n->n_ptrs + step; i != guard; i += step) { 888 if (i == guard) {
|
/src/usr.bin/make/ |
cond.c | 1181 /* Extracts the multiple-inclusion guard from a conditional, if any. */ 1182 Guard * 1187 Guard *guard; local in function:Cond_ExtractGuard 1207 guard = bmake_malloc(sizeof(*guard)); 1208 guard->kind = GK_TARGET; 1209 guard->name = ParseWord(&arg_p, true); 1210 return guard; 1220 guard = bmake_malloc(sizeof(*guard)) [all...] |