HomeSort by relevance Sort by last modified time
    Searched defs:msize (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/chromium_org/v8/src/
platform-cygwin.cc 78 const size_t msize = RoundUp(requested, sysconf(_SC_PAGESIZE)); local
80 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
85 *allocated = msize;
platform-freebsd.cc 85 const size_t msize = RoundUp(requested, getpagesize()); local
87 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
93 *allocated = msize;
platform-linux.cc 137 const size_t msize = RoundUp(requested, AllocateAlignment()); local
140 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
146 *allocated = msize;
platform-macos.cc 81 const size_t msize = RoundUp(requested, getpagesize()); local
84 msize,
93 *allocated = msize;
platform-openbsd.cc 83 const size_t msize = RoundUp(requested, AllocateAlignment()); local
86 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
92 *allocated = msize;
platform-solaris.cc 101 const size_t msize = RoundUp(requested, getpagesize()); local
103 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
109 *allocated = msize;
platform-win32.cc 883 size_t msize = RoundUp(requested, static_cast<int>(GetPageSize())); local
888 LPVOID mbase = RandomizedVirtualAlloc(msize,
899 *allocated = msize;
    [all...]
  /external/v8/src/
platform-cygwin.cc 155 const size_t msize = RoundUp(requested, sysconf(_SC_PAGESIZE)); local
157 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
162 *allocated = msize;
163 UpdateAllocatedSpaceLimits(mbase, msize);
platform-freebsd.cc 170 const size_t msize = RoundUp(requested, getpagesize()); local
172 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
178 *allocated = msize;
179 UpdateAllocatedSpaceLimits(mbase, msize);
platform-macos.cc 153 const size_t msize = RoundUp(requested, getpagesize()); local
156 msize,
165 *allocated = msize;
166 UpdateAllocatedSpaceLimits(mbase, msize);
platform-solaris.cc 182 const size_t msize = RoundUp(requested, getpagesize()); local
184 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
190 *allocated = msize;
191 UpdateAllocatedSpaceLimits(mbase, msize);
platform-linux.cc 363 const size_t msize = RoundUp(requested, AllocateAlignment()); local
366 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
372 *allocated = msize;
373 UpdateAllocatedSpaceLimits(mbase, msize);
    [all...]
platform-openbsd.cc 188 const size_t msize = RoundUp(requested, AllocateAlignment()); local
191 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
197 *allocated = msize;
198 UpdateAllocatedSpaceLimits(mbase, msize);
platform-win32.cc 926 size_t msize = RoundUp(requested, static_cast<int>(GetPageSize())); local
931 LPVOID mbase = RandomizedVirtualAlloc(msize,
942 *allocated = msize;
943 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize));
    [all...]
  /bionic/libc/kernel/common/linux/
wanrouter.h 162 unsigned msize; member in struct:wandev_conf
  /development/ndk/platforms/android-3/include/linux/
wanrouter.h 143 unsigned msize; member in struct:wandev_conf
  /external/kernel-headers/original/linux/
wanrouter.h 205 unsigned msize; /* dual-port memory size */ member in struct:wandev_conf
473 unsigned msize; /* dual-port memory size */ member in struct:wan_device
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
wanrouter.h 205 unsigned msize; /* dual-port memory size */ member in struct:wandev_conf
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
wanrouter.h 205 unsigned msize; /* dual-port memory size */ member in struct:wandev_conf
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
wanrouter.h 205 unsigned msize; /* dual-port memory size */ member in struct:wandev_conf
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
wanrouter.h 143 unsigned msize; member in struct:wandev_conf
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
wanrouter.h 143 unsigned msize; member in struct:wandev_conf
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
wanrouter.h 143 unsigned msize; member in struct:wandev_conf
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
wanrouter.h 143 unsigned msize; member in struct:wandev_conf
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
wanrouter.h 143 unsigned msize; member in struct:wandev_conf

Completed in 116 milliseconds

1 2 3