• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/jpeg-7/

Lines Matching refs:SIZEOF

85  * field.  This forces the compiler to make SIZEOF(small_pool_hdr) a multiple
266 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(small_pool_hdr)))
269 /* Round up the requested size to a multiple of SIZEOF(ALIGN_TYPE) */
270 odd_bytes = sizeofobject % SIZEOF(ALIGN_TYPE);
272 sizeofobject += SIZEOF(ALIGN_TYPE) - odd_bytes;
289 min_request = sizeofobject + SIZEOF(small_pool_hdr);
350 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)))
353 /* Round up the requested size to a multiple of SIZEOF(ALIGN_TYPE) */
354 odd_bytes = sizeofobject % SIZEOF(ALIGN_TYPE);
356 sizeofobject += SIZEOF(ALIGN_TYPE) - odd_bytes;
363 SIZEOF(large_pool_hdr));
366 mem->total_space_allocated += sizeofobject + SIZEOF(large_pool_hdr);
406 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
407 ((long) samplesperrow * SIZEOF(JSAMPLE));
418 (size_t) (numrows * SIZEOF(JSAMPROW)));
426 * SIZEOF(JSAMPLE)));
454 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
455 ((long) blocksperrow * SIZEOF(JBLOCK));
466 (size_t) (numrows * SIZEOF(JBLOCKROW)));
474 * SIZEOF(JBLOCK)));
537 SIZEOF(struct jvirt_sarray_control));
567 SIZEOF(struct jvirt_barray_control));
601 (long) sptr->samplesperrow * SIZEOF(JSAMPLE);
603 (long) sptr->samplesperrow * SIZEOF(JSAMPLE);
609 (long) bptr->blocksperrow * SIZEOF(JBLOCK);
611 (long) bptr->blocksperrow * SIZEOF(JBLOCK);
651 (long) SIZEOF(JSAMPLE));
675 (long) SIZEOF(JBLOCK));
695 bytesperrow = (long) ptr->samplesperrow * SIZEOF(JSAMPLE);
728 bytesperrow = (long) ptr->blocksperrow * SIZEOF(JBLOCK);
820 size_t bytesperrow = (size_t) ptr->samplesperrow * SIZEOF(JSAMPLE);
905 size_t bytesperrow = (size_t) ptr->blocksperrow * SIZEOF(JBLOCK);
974 SIZEOF(large_pool_hdr);
988 SIZEOF(small_pool_hdr);
1015 jpeg_free_small(cinfo, (void *) cinfo->mem, SIZEOF(my_memory_mgr));
1038 * SIZEOF(ALIGN_TYPE) should be a power of 2; otherwise, it probably
1044 if ((SIZEOF(ALIGN_TYPE) & (SIZEOF(ALIGN_TYPE)-1)) != 0)
1047 * a multiple of SIZEOF(ALIGN_TYPE).
1053 (MAX_ALLOC_CHUNK % SIZEOF(ALIGN_TYPE)) != 0)
1059 mem = (my_mem_ptr) jpeg_get_small(cinfo, SIZEOF(my_memory_mgr));
1092 mem->total_space_allocated = SIZEOF(my_memory_mgr);