Searched refs:MAX_ALLOC_CHUNK (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djconfig.mc624 #define MAX_ALLOC_CHUNK 65520L /* Maximum request to malloc() */
H A Djconfig.bcc26 #define MAX_ALLOC_CHUNK 65520L /* Maximum request to malloc() */
H A Djmemsys.h66 * The macro MAX_ALLOC_CHUNK designates the maximum number of bytes that may
73 * NB: jmemmgr.c expects that MAX_ALLOC_CHUNK will be representable as type
77 #ifndef MAX_ALLOC_CHUNK /* may be overridden in jconfig.h */
78 #define MAX_ALLOC_CHUNK 1000000000L macro
H A Djmemmgr.c266 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(small_pool_hdr)))
294 /* Don't ask for more than MAX_ALLOC_CHUNK */
295 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
296 slop = (size_t) (MAX_ALLOC_CHUNK-min_request);
350 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)))
387 * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request.
406 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
454 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
1046 /* MAX_ALLOC_CHUNK must be representable as type size_t, and must be
1049 * But a "constant too large" warning means you need to fix MAX_ALLOC_CHUNK
[all...]
H A Djmemdos.c84 #if MAX_ALLOC_CHUNK >= 65535L /* make sure jconfig.h got this right */
85 MAX_ALLOC_CHUNK should be less than 64K. /* deliberate syntax error */
249 /* Since MAX_ALLOC_CHUNK is less than 64K, byte_count will be too. */
265 /* Since MAX_ALLOC_CHUNK is less than 64K, byte_count will be too. */

Completed in 169 milliseconds