OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SCS_SIZE
(Results
1 - 4
of
4
) sorted by null
/bionic/libc/private/
bionic_constants.h
23
#define
SCS_SIZE
(8 * 1024)
26
// guard region must be large enough that we can allocate an
SCS_SIZE
-aligned SCS while ensuring
/bionic/tests/
scs_test.cpp
36
ASSERT_EXIT(recurse1(
SCS_SIZE
), testing::KilledBySignal(SIGSEGV), "");
/bionic/libc/bionic/
pthread_create.cpp
135
// The address is aligned to
SCS_SIZE
so that we only need to store the lower log2(
SCS_SIZE
) bits
138
reinterpret_cast<char*>(align_up(reinterpret_cast<uintptr_t>(scs_guard_region),
SCS_SIZE
));
140
// We need to ensure that [scs_offset,scs_offset+
SCS_SIZE
) is in the guard region and that there
144
(getpid() == 1) ? 0 : (arc4random_uniform(SCS_GUARD_REGION_SIZE /
SCS_SIZE
- 1) *
SCS_SIZE
);
149
mprotect(scs,
SCS_SIZE
, PROT_READ | PROT_WRITE);
/bionic/libc/arch-arm64/bionic/
setjmp.S
71
#define SCS_MASK (
SCS_SIZE
- 1)
Completed in 2157 milliseconds