Home
last modified time | relevance | path

Searched refs:mparams (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c2114 static struct malloc_params mparams; variable
2144 (((S) + (mparams.page_size)) & ~(mparams.page_size - SIZE_T_ONE))
2148 (((S) + (mparams.granularity)) & ~(mparams.granularity - SIZE_T_ONE))
2151 (((size_t)(S) & (mparams.page_size - SIZE_T_ONE)) == 0)
2153 (((size_t)(S) & (mparams.granularity - SIZE_T_ONE)) == 0)
2207 #define GLOBALLY_INITIALIZE() (mparams.page_size == 0 && init_mparams())
2448 #define ok_magic(M) ((M)->magic == mparams.magic)
2489 (((mchunkptr)((char*)(p) + (s)))->prev_foot = ((size_t)(M) ^ mparams.magic))
2493 (chunksize(p))))->prev_foot ^ mparams.magic))
2515 if (mparams.page_size == 0) { in init_mparams()
[all …]
/external/libffi/src/
Ddlmalloc.c2109 static struct malloc_params mparams; variable
2139 (((S) + (mparams.page_size)) & ~(mparams.page_size - SIZE_T_ONE))
2143 (((S) + (mparams.granularity)) & ~(mparams.granularity - SIZE_T_ONE))
2146 (((size_t)(S) & (mparams.page_size - SIZE_T_ONE)) == 0)
2148 (((size_t)(S) & (mparams.granularity - SIZE_T_ONE)) == 0)
2202 #define GLOBALLY_INITIALIZE() (mparams.page_size == 0 && init_mparams())
2443 #define ok_magic(M) ((M)->magic == mparams.magic)
2484 (((mchunkptr)((char*)(p) + (s)))->prev_foot = ((size_t)(M) ^ mparams.magic))
2488 (chunksize(p))))->prev_foot ^ mparams.magic))
2510 if (mparams.page_size == 0) { in init_mparams()
[all …]
/external/dlmalloc/
Dmalloc.c2624 static struct malloc_params mparams; variable
2627 #define ensure_initialization() (void)(mparams.magic != 0 || init_mparams())
2670 (((S) + (mparams.page_size - SIZE_T_ONE)) & ~(mparams.page_size - SIZE_T_ONE))
2674 (((S) + (mparams.granularity - SIZE_T_ONE))\
2675 & ~(mparams.granularity - SIZE_T_ONE))
2689 (((size_t)(S) & (mparams.page_size - SIZE_T_ONE)) == 0)
2691 (((size_t)(S) & (mparams.granularity - SIZE_T_ONE)) == 0)
3028 #define ok_magic(M) ((M)->magic == mparams.magic)
3070 (((mchunkptr)((char*)(p) + (s)))->prev_foot = ((size_t)(M) ^ mparams.magic))
3074 (chunksize(p))))->prev_foot ^ mparams.magic))
[all …]
/external/u-boot/tools/
Dimagetool.h233 void pbl_load_uboot(int fd, struct image_tool_params *mparams);
234 int zynqmpbif_copy_image(int fd, struct image_tool_params *mparams);
Dzynqmpbif.c819 int zynqmpbif_copy_image(int outfd, struct image_tool_params *mparams) in zynqmpbif_copy_image() argument
834 bif = read_full_file(mparams->datafile, NULL); in zynqmpbif_copy_image()
/external/python/cpython2/Modules/_ctypes/
Dlibffi.diff180 capacity < (size_t) -(msize + TOP_FOOT_SIZE + mparams.page_size)) {