HomeSort by relevance Sort by last modified time
    Searched defs:stack_size (Results 26 - 50 of 80) sorted by null

12 3 4

  /bionic/libc/include/bits/
pthread_types.h 38 size_t stack_size; member in struct:__anon255
  /bionic/libc/kernel/uapi/linux/
flat.h 30 unsigned long stack_size; member in struct:flat_hdr
  /external/kernel-headers/original/uapi/linux/
flat.h 42 unsigned long stack_size; /* Size of stack, in bytes */ member in struct:flat_hdr
  /external/libchrome/base/threading/
simple_thread.h 73 size_t stack_size = 0; member in struct:base::SimpleThread::Options
thread.h 82 size_t stack_size = 0; member in struct:base::Thread::Options
  /external/tensorflow/tensorflow/core/platform/
env.h 382 size_t stack_size = 0; // 0: use system default value member in struct:tensorflow::ThreadOptions
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
flat.h 41 unsigned long stack_size; /* Size of stack, in bytes */ member in struct:flat_hdr
elf-fdpic.h 45 unsigned long stack_size; /* stack size requested (PT_GNU_STACK) */ member in struct:elf_fdpic_params
  /external/compiler-rt/lib/lsan/
lsan_thread.cc 92 uptr stack_size = 0; local
94 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size,
96 args.stack_end = args.stack_begin + stack_size;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_unwind_linux_libcdep.cc 35 uptr stack_size; member in struct:__sanitizer::__anon17198
sanitizer_posix_libcdep.cc 97 rlim_t stack_size = getlim(RLIMIT_STACK); local
98 return (stack_size == RLIM_INFINITY);
  /external/libchrome/base/debug/
stack_trace.cc 165 size_t stack_size = 0; local
170 &attributes, reinterpret_cast<void**>(&stack_begin), &stack_size);
175 uintptr_t stack_end = stack_begin + stack_size;
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_screen.c 816 unsigned stack_size; local
    [all...]
  /external/valgrind/drd/
drd_thread.h 77 SizeT stack_size; /**< Maximum size of stack. */ member in struct:__anon42609
drd_main.c 703 const SizeT stack_size = DRD_(thread_get_stack_size)(drd_tid); local
713 used_stack, stack_size, stack_size - used_stack);
    [all...]
  /external/compiler-rt/lib/asan/
asan_rtl.cc 611 uptr tls_addr, tls_size, stack_size; local
612 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr,
614 top = bottom + stack_size;
asan_thread.cc 183 uptr AsanThread::stack_size() { function in class:__asan::AsanThread
191 uptr stack_size = this->stack_size(); local
192 if (stack_size == 0) // stack_size is not yet available, don't use FakeStack.
204 uptr stack_size_log = Log2(RoundUpToPowerOfTwo(stack_size));
221 CHECK_EQ(this->stack_size(), 0U);
223 CHECK_GT(this->stack_size(), 0U);
265 uptr stack_size = 0; local
267 const_cast<uptr *>(&stack_size), &tls_begin_, &tls_size)
    [all...]
  /external/freetype/src/lzw/
ftzopen.h 141 FT_Offset stack_size; member in struct:FT_LzwStateRec_
  /external/ltp/testcases/cve/
stack_clash.c 95 unsigned long read_stack_addr_from_proc(unsigned long *stack_size)
117 *stack_size = end - start;
149 unsigned long stack_addr, stack_size; local
161 stack_addr = read_stack_addr_from_proc(&stack_size);
177 stack_addr, stack_size, map, MAPPED_LEN);
  /external/v8/src/base/platform/
platform.h 438 explicit Options(const char* name, int stack_size = 0)
439 : name_(name), stack_size_(stack_size) {}
442 int stack_size() const { return stack_size_; } function in class:v8::base::Thread::Options
platform-posix.cc 556 stack_size_(options.stack_size()),
622 size_t stack_size = stack_size_; local
623 if (stack_size == 0) {
626 stack_size = 1 * 1024 * 1024;
629 stack_size = 2 * 1024 * 1024;
632 if (stack_size > 0) {
633 result = pthread_attr_setstacksize(&attr, stack_size);
  /system/core/libbacktrace/
backtrace_offline_test.cpp 114 const size_t stack_size = 16 * 1024; local
115 void* stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
120 ASSERT_EQ(0, pthread_attr_setstack(&attr, reinterpret_cast<void*>(stack), stack_size));
129 reinterpret_cast<uint8_t*>(stack) + stack_size);
132 ASSERT_EQ(0, munmap(stack, stack_size));
139 stack_info.end = stack_addr + stack_size;
  /system/core/libbacktrace/include/backtrace/
Backtrace.h 87 size_t stack_size; // The size of the stack, zero indicate an unknown stack size. member in struct:backtrace_frame_data_t
  /toolchain/binutils/binutils-2.27/libiberty/
splay-tree.c 212 int stack_ptr, stack_size; local
219 stack_size = INITIAL_STACK_SIZE;
221 stack = XNEWVEC (splay_tree_node, stack_size);
228 if (stack_ptr == stack_size)
230 stack_size *= 2;
231 stack = XRESIZEVEC (splay_tree_node, stack, stack_size);
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.cc 712 DWORD stack_size = 8; // minimal stack size is 8 for RIP local
719 stack_size += 8;
726 stack_size += (unwind_code + 1)->frame_offset * 8;
730 stack_size += (unwind_code + 1)->frame_offset |
736 stack_size += unwind_code->operation_info * 8 + 8;
755 stack_size += 88;
757 stack_size += 80;
783 funcs[i].BeginAddress, stack_size);
    [all...]

Completed in 3469 milliseconds

12 3 4