Lines Matching refs:request
1052 "If you cannot edit this article and you wish to make a change, you can discuss changes on the talk page, request unprotection, log in, or create an account.\n" +
3300 " Even a request for zero bytes (i.e., malloc(0)) returns a\n" +
4505 " M_MXFAST is the maximum request size used for \"fastbins\", special bins\n" +
4521 " M_MXFAST is set in REQUEST size units. It is internally used in\n" +
4611 " a new malloc request, this much padding is added to the sbrk\n" +
4612 " request.\n" +
4622 " that nearly every malloc request during program start-up (or\n" +
4640 " M_MMAP_THRESHOLD is the request size threshold for using mmap()\n" +
4641 " to service a request. Requests of at least this size that cannot\n" +
4647 " system. A request serviced through mmap is never reused by any\n" +
4648 " other request (at least not directly; the system may just so\n" +
4671 " limitations. Generally, servicing a request via normal\n" +
5242 " Check if a request is so large that it would wrap around zero when\n" +
5251 "/* pad request bytes into a usable size -- internal version */\n" +
5363 " unusual as malloc request sizes, but are more usual for fragments\n" +
5529 " extension on the first malloc request, we avoid having any special\n" +
5586 "/* The maximum fastbin request size we support */\n" +
5680 " /* The remainder from the most recent split of a small request */\n" +
5975 " /* chunk is less than MINSIZE more than request */\n" +
6140 " space to service request for nb bytes, thus requiring that av->top\n" +
6190 " If have mmap, and the request size meets the mmap threshold, and\n" +
6192 " allocated mmapped regions, try to directly map this request\n" +
6274 " /* Precondition: not enough current space to satisfy nb request */\n" +
6281 " /* Request enough space for nb + pad + overhead */\n" +
6376 " request size to account for fact that we will not be able to\n" +
6380 " which case we might as well use the whole last page of request.\n" +
6434 " be able to merge with old_top space, so must add to 2nd request.\n" +
6656 " INTERNAL_SIZE_T nb; /* normalized request size */\n" +
6676 " Convert request size to internal form by adding SIZE_SZ bytes\n" +
6679 " size. Also, checked_request2size traps (returning 0) request sizes\n" +
6710 " If a small request, check regular bin. Since these \"smallbins\"\n" +
6712 " (For a large request, we need to wait until unsorted chunks are\n" +
6733 " If this is a large request, consolidate fastbins before continuing.\n" +
6751 " it is exact fit, or, if this a small request, the chunk is remainder from\n" +
6762 " If a small request, try to use last remainder if it is the\n" +
6839 " If a large request, scan through the chunks of current bin to\n" +
6974 " exhuasted by current request, it is replenished. (The main\n" +
7284 " INTERNAL_SIZE_T nb; /* padded request size */\n" +
7510 " INTERNAL_SIZE_T nb; /* padded request size */\n" +
7540 " request, and then possibly free the leading and trailing space.\n" +
7740 " INTERNAL_SIZE_T array_size; /* request size of pointer array */\n" +
8143 " request, and HAVE_MMAP is true, then mmap is used as a noncontiguous\n" +