Home
last modified time | relevance | path

Searched refs:msize (Results 1 – 14 of 14) 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/elfutils/libelf/
Delf32_fsize.c94 local_strong_alias (elfw2(LIBELFBITS, fsize), __elfw2(LIBELFBITS, msize))
/external/v8/src/
Dplatform-cygwin.cc155 const size_t msize = RoundUp(requested, sysconf(_SC_PAGESIZE)); in Allocate() local
157 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate()
162 *allocated = msize; in Allocate()
163 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-macos.cc153 const size_t msize = RoundUp(requested, getpagesize()); in Allocate() local
156 msize, in Allocate()
165 *allocated = msize; in Allocate()
166 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-freebsd.cc170 const size_t msize = RoundUp(requested, getpagesize()); in Allocate() local
172 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate()
178 *allocated = msize; in Allocate()
179 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-solaris.cc182 const size_t msize = RoundUp(requested, getpagesize()); in Allocate() local
184 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate()
190 *allocated = msize; in Allocate()
191 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-openbsd.cc188 const size_t msize = RoundUp(requested, AllocateAlignment()); in Allocate() local
191 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in Allocate()
197 *allocated = msize; in Allocate()
198 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-linux.cc368 const size_t msize = RoundUp(requested, AllocateAlignment()); in Allocate() local
371 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in Allocate()
377 *allocated = msize; in Allocate()
378 UpdateAllocatedSpaceLimits(mbase, msize); in Allocate()
Dplatform-win32.cc926 size_t msize = RoundUp(requested, static_cast<int>(GetPageSize())); in Allocate() local
931 LPVOID mbase = RandomizedVirtualAlloc(msize, in Allocate()
942 *allocated = msize; in Allocate()
943 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/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()
/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/elfutils/
Dandroid.patch321 local_strong_alias (elfw2(LIBELFBITS, fsize), __elfw2(LIBELFBITS, msize))