Home
last modified time | relevance | path

Searched refs:msize (Results 1 – 12 of 12) sorted by relevance

/external/bluetooth/glib/tests/
Dslice-color.c155 gdouble msize; in parse_memsize() local
168 msize = g_ascii_strtod (string, &derr); in parse_memsize()
173 msize = 0; in parse_memsize()
176 msize *= f; in parse_memsize()
177 return msize; in parse_memsize()
/external/v8/src/
Dplatform-openbsd.cc152 const size_t msize = RoundUp(requested, getpagesize()); in Allocate() local
154 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate()
160 *allocated = msize; in Allocate()
161 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-cygwin.cc148 const size_t msize = RoundUp(requested, sysconf(_SC_PAGESIZE)); in Allocate() local
150 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate()
155 *allocated = msize; in Allocate()
156 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-solaris.cc168 const size_t msize = RoundUp(requested, getpagesize()); in Allocate() local
170 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate()
176 *allocated = msize; in Allocate()
177 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-freebsd.cc161 const size_t msize = RoundUp(requested, getpagesize()); in Allocate() local
163 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate()
169 *allocated = msize; in Allocate()
170 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-macos.cc149 const size_t msize = RoundUp(requested, getpagesize()); in Allocate() local
151 void* mbase = mmap(NULL, msize, prot, in Allocate()
158 *allocated = msize; in Allocate()
159 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-linux.cc314 const size_t msize = RoundUp(requested, sysconf(_SC_PAGESIZE)); in Allocate() local
316 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate()
322 *allocated = msize; in Allocate()
323 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-win32.cc875 size_t msize = RoundUp(requested, static_cast<int>(GetPageSize())); in Allocate() local
883 msize >= static_cast<size_t>(Page::kPageSize)) { in Allocate()
890 msize, in Allocate()
894 mbase = VirtualAlloc(NULL, msize, MEM_COMMIT | MEM_RESERVE, prot); in Allocate()
903 *allocated = msize; in Allocate()
904 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize)); in Allocate()
/external/kernel-headers/original/linux/
Dwanrouter.h205 unsigned msize; /* dual-port memory size */ member
473 unsigned msize; /* dual-port memory size */ member
/external/chromium/base/allocator/
DREADME45 size_t msize(void* p);
/external/libffi/src/
Ddlmalloc.c4407 size_t msize = pad_request(sizeof(struct malloc_state)); in init_user_mstate() local
4411 memset(m, 0, msize); in init_user_mstate()
4413 msp->head = (msize|PINUSE_BIT|CINUSE_BIT); in init_user_mstate()
4428 size_t msize = pad_request(sizeof(struct malloc_state)); in create_mspace() local
4431 if (capacity < (size_t) -(msize + TOP_FOOT_SIZE + mparams.page_size)) { in create_mspace()
4433 (capacity + TOP_FOOT_SIZE + msize)); in create_mspace()
4447 size_t msize = pad_request(sizeof(struct malloc_state)); in create_mspace_with_base() local
4450 if (capacity > msize + TOP_FOOT_SIZE && in create_mspace_with_base()
4451 capacity < (size_t) -(msize + TOP_FOOT_SIZE + mparams.page_size)) { in create_mspace_with_base()
/external/qemu/distrib/sdl-1.2.12/src/stdlib/
DSDL_malloc.c4417 size_t msize = pad_request(sizeof(struct malloc_state)); in init_user_mstate() local
4421 memset(m, 0, msize); in init_user_mstate()
4423 msp->head = (msize|PINUSE_BIT|CINUSE_BIT); in init_user_mstate()
4438 size_t msize = pad_request(sizeof(struct malloc_state)); in create_mspace() local
4441 if (capacity < (size_t) -(msize + TOP_FOOT_SIZE + mparams.page_size)) { in create_mspace()
4443 (capacity + TOP_FOOT_SIZE + msize)); in create_mspace()
4457 size_t msize = pad_request(sizeof(struct malloc_state)); in create_mspace_with_base() local
4460 if (capacity > msize + TOP_FOOT_SIZE && in create_mspace_with_base()
4461 capacity < (size_t) -(msize + TOP_FOOT_SIZE + mparams.page_size)) { in create_mspace_with_base()