/external/bluetooth/glib/tests/ |
D | slice-color.c | 155 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/ |
D | platform-openbsd.cc | 152 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()
|
D | platform-cygwin.cc | 148 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()
|
D | platform-solaris.cc | 168 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()
|
D | platform-freebsd.cc | 161 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()
|
D | platform-macos.cc | 149 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()
|
D | platform-linux.cc | 314 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()
|
D | platform-win32.cc | 875 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/ |
D | wanrouter.h | 205 unsigned msize; /* dual-port memory size */ member 473 unsigned msize; /* dual-port memory size */ member
|
/external/chromium/base/allocator/ |
D | README | 45 size_t msize(void* p);
|
/external/libffi/src/ |
D | dlmalloc.c | 4407 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/ |
D | SDL_malloc.c | 4417 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()
|