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

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmemsys.h70 * The macro MAX_ALLOC_CHUNK designates the maximum number of bytes that may
77 * NB: jmemmgr.c expects that MAX_ALLOC_CHUNK will be representable as type
81 #ifndef MAX_ALLOC_CHUNK /* may be overridden in jconfig.h */
82 #define MAX_ALLOC_CHUNK 1000000000L macro
H A Djmemmgr.c270 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(small_pool_hdr)))
298 /* Don't ask for more than MAX_ALLOC_CHUNK */
299 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
300 slop = (size_t) (MAX_ALLOC_CHUNK-min_request);
354 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)))
391 * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request.
410 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
458 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
1050 /* MAX_ALLOC_CHUNK must be representable as type size_t, and must be
1053 * But a "constant too large" warning means you need to fix MAX_ALLOC_CHUNK
[all...]

Completed in 33 milliseconds