Searched refs:kStackSize (Results 1 - 16 of 16) sorted by relevance

/external/compiler-rt/test/lsan/TestCases/
H A Dswapcontext.cc17 const int kStackSize = 1 << 20; variable
26 char stack_memory[kStackSize + 1];
27 char *heap_memory = new char[kStackSize + 1];
35 child_context.uc_stack.ss_size = kStackSize / 2;
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dclone_test.cc24 const int kStackSize = 1 << 20; local
25 char __attribute__((aligned(16))) child_stack[kStackSize + 1];
26 char *sp = child_stack + kStackSize; // Stack grows down.
37 for (int i = 0; i < kStackSize; i++)
H A Dswapcontext_test.cc18 const int kStackSize = 1 << 20; variable
54 child_context.uc_stack.ss_size = kStackSize / 2;
64 for (int i = 0; i < kStackSize; i++) {
71 char stack[kStackSize + 1];
80 char *heap = new char[kStackSize + 1];
H A Dswapcontext_annotation.cc26 const int kStackSize = 1 << 20; variable
85 next_child_context.uc_stack.ss_size = kStackSize / 2;
102 child_context.uc_stack.ss_size = kStackSize / 2;
120 for (int i = 0; i < kStackSize; i++) {
157 char *heap = new char[kStackSize + 1];
158 next_child_stack = new char[kStackSize + 1];
159 char stack[kStackSize + 1];
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dstack-use-after-return.cc28 #ifndef kStackSize
29 # define kStackSize 0 macro
69 if (kStackSize > 0)
70 pthread_attr_setstacksize(&attr, kStackSize);
/external/icu/icu4c/source/common/
H A Drbbiscan.h49 kStackSize = 100 // The size of the state stack for enumerator in enum:RBBIRuleScanner::__anon7879
117 uint16_t fStack[kStackSize]; // State stack, holds state pushes
121 RBBINode *fNodeStack[kStackSize]; // Node stack, holds nodes created
H A Drbbiscan.cpp1085 if (fStackPtr >= kStackSize) {
1187 if (fNodeStackPtr >= kStackSize - 1) {
/external/libchrome/base/threading/
H A Dworker_pool_posix.cc38 const int kStackSize = 1 * 1024 * 1024; member in namespace:base::__anon11041
40 const int kStackSize = 0; member in namespace:base::__anon11041
162 PlatformThread::CreateNonJoinable(kStackSize, worker);
/external/icu/icu4c/source/i18n/
H A Dregexcmp.h48 kStackSize = 100 // The size of the state stack for enumerator in enum:RegexCompile::__anon8109
163 uint16_t fStack[kStackSize]; // State stack, holds state pushes
H A Dregexcmp.cpp246 if (fStackPtr >= kStackSize) {
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRBBIRuleScanner.java26 private final static int kStackSize = 100; // The size of the state stack for field in class:RBBIRuleScanner
54 short fStack[] = new short[kStackSize]; // State stack, holds state pushes
58 RBBINode fNodeStack[] = new RBBINode[kStackSize]; // Node stack, holds nodes created
940 if (fStackPtr >= kStackSize) {
1035 if (fNodeStackPtr >= kStackSize) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRBBIRuleScanner.java25 private final static int kStackSize = 100; // The size of the state stack for field in class:RBBIRuleScanner
53 short fStack[] = new short[kStackSize]; // State stack, holds state pushes
57 RBBINode fNodeStack[] = new RBBINode[kStackSize]; // Node stack, holds nodes created
939 if (fStackPtr >= kStackSize) {
1034 if (fNodeStackPtr >= kStackSize) {
/external/libchrome/base/debug/
H A Dactivity_tracker_unittest.cc48 const int kStackSize = 1 << 10; // 1KiB member in class:base::debug::ActivityTrackerTest
63 std::unique_ptr<char[]> memory(new char[kStackSize]);
64 return MakeUnique<TestActivityTracker>(std::move(memory), kStackSize);
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc3076 const size_t kStackSize = SMALLPRESTACKSIZE; local
3077 res = posix_memalign(&stack, 4096, kStackSize);
3079 res = pthread_attr_setstack(&attr, stack, kStackSize);
/external/v8/src/
H A Dobjects.h10022 static const int kStackSize = 32;
10024 static const int kDepthMask = kStackSize-1;
10025 STATIC_ASSERT(IS_POWER_OF_TWO(kStackSize));
10032 inline bool StackBlown() { return maximum_depth_ - depth_ == kStackSize; }
10040 ConsString* frames_[kStackSize];
H A Dobjects.cc10606 maximum_depth_ = kStackSize + depth_;

Completed in 483 milliseconds