HomeSort by relevance Sort by last modified time
    Searched refs:mmap_size (Results 1 - 18 of 18) sorted by null

  /bionic/libc/bionic/
pthread_create.cpp 115 static void* __create_thread_mapped_space(size_t mmap_size, size_t stack_guard_size) {
119 void* space = mmap(NULL, mmap_size, prot, flags, -1, 0);
124 mmap_size, strerror(errno));
134 munmap(space, mmap_size);
143 size_t mmap_size; local
149 mmap_size = BIONIC_ALIGN(attr->stack_size + sizeof(pthread_internal_t), PAGE_SIZE);
151 attr->stack_base = __create_thread_mapped_space(mmap_size, attr->guard_size);
155 stack_top = reinterpret_cast<uint8_t*>(attr->stack_base) + mmap_size;
158 mmap_size = 0;
171 if (mmap_size == 0)
    [all...]
__libc_init_main_thread.cpp 74 main_thread.mmap_size = 0;
pthread_internal.cpp 71 if (thread->mmap_size != 0) {
73 munmap(thread->attr.stack_base, thread->mmap_size);
pthread_exit.cpp 109 if (thread->mmap_size != 0) {
119 _exit_with_stack_teardown(thread->attr.stack_base, thread->mmap_size);
pthread_internal.h 99 size_t mmap_size; member in class:pthread_internal_t
  /system/core/toolbox/
r.c 67 size_t mmap_size = endaddr - mmap_start + 1; local
68 mmap_size = (mmap_size + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1);
70 void* page = mmap64(0, mmap_size, PROT_READ | PROT_WRITE,
  /external/fio/
smalloc.c 44 size_t mmap_size; member in struct:pool
198 pool->mmap_size = alloc_size;
227 munmap(pool->map, pool->mmap_size);
256 munmap(pool->map, pool->mmap_size);
  /external/e2fsprogs/intl/
gettextP.h 88 size_t mmap_size; member in struct:loaded_domain
loadmsgcat.c 1028 domain->mmap_size = size;
    [all...]
  /toolchain/binutils/binutils-2.25/intl/
gettextP.h 96 size_t mmap_size; member in struct:loaded_domain
loadmsgcat.c 1025 domain->mmap_size = size;
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/src/x86/
intel_galileo_rev_d.c 39 static int mmap_size = 0x1000; variable
49 munmap(mmap_reg, mmap_size);
102 mmap_reg = mmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_SHARED, mmap_fd, 0);
intel_galileo_rev_g.c 41 static int mmap_size = 0x1000; variable
250 munmap(mmap_reg, mmap_size);
303 mmap_reg = mmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_SHARED, mmap_fd, 0);
intel_edison_fab_c.c 75 static int mmap_size; variable
639 munmap(mmap_reg, mmap_size);
718 mmap_size = fd_stat.st_size;
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/src/arm/
banana.c 51 static int mmap_size; variable
139 munmap(mmap_reg, mmap_size);
raspberry_pi.c 63 static int mmap_size; variable
133 munmap(mmap_reg, mmap_size);
  /hardware/intel/common/libva/test/encode/
h264encode.c 1698 int frame_size, mmap_size; local
    [all...]
  /external/netperf/src/
netlib.c 1706 int mmap_size; local
    [all...]

Completed in 442 milliseconds