HomeSort by relevance Sort by last modified time
    Searched refs:MAX_ALLOC_CHUNK (Results 1 - 6 of 6) sorted by null

  /external/libjpeg-turbo/
jmemsys.h 50 * The macro MAX_ALLOC_CHUNK designates the maximum number of bytes that may
56 * NB: jmemmgr.c expects that MAX_ALLOC_CHUNK will be representable as type
60 #ifndef MAX_ALLOC_CHUNK /* may be overridden in jconfig.h */
61 #define MAX_ALLOC_CHUNK 1000000000L
jmemmgr.c 281 if ((sizeof(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > MAX_ALLOC_CHUNK)
304 /* Don't ask for more than MAX_ALLOC_CHUNK */
305 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
306 slop = (size_t) (MAX_ALLOC_CHUNK-min_request);
369 if ((sizeof(large_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > MAX_ALLOC_CHUNK)
406 * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request.
434 ltemp = (MAX_ALLOC_CHUNK-sizeof(large_pool_hdr)) /
486 ltemp = (MAX_ALLOC_CHUNK-sizeof(large_pool_hdr)) /
    [all...]
  /external/pdfium/third_party/libjpeg/
jmemsys.h 63 * The macro MAX_ALLOC_CHUNK designates the maximum number of bytes that may
70 * NB: jmemmgr.c expects that MAX_ALLOC_CHUNK will be representable as type
74 #ifndef MAX_ALLOC_CHUNK /* may be overridden in jconfig.h */
75 #define MAX_ALLOC_CHUNK 1000000000L
fpdfapi_jmemmgr.c 268 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(small_pool_hdr)))
296 /* Don't ask for more than MAX_ALLOC_CHUNK */
297 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
298 slop = (size_t) (MAX_ALLOC_CHUNK-min_request);
352 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)))
389 * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request.
408 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
456 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
    [all...]
  /external/opencv3/3rdparty/libjpeg/
jmemsys.h 66 * 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
jmemmgr.c 267 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(small_pool_hdr)))
295 /* Don't ask for more than MAX_ALLOC_CHUNK */
296 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
297 slop = (size_t) (MAX_ALLOC_CHUNK-min_request);
351 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)))
388 * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request.
407 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
455 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
    [all...]

Completed in 94 milliseconds