HomeSort by relevance Sort by last modified time
    Searched refs:SIZEOF (Results 1 - 25 of 325) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
Xvlibint.h 58 if ((dpy->bufptr + SIZEOF(xv##name##Req)) > dpy->bufmax)\
63 req->length = (SIZEOF(xv##name##Req))>>2;\
64 dpy->bufptr += SIZEOF(xv##name##Req);\
70 if ((dpy->bufptr + SIZEOF(xv/**/name/**/Req)) > dpy->bufmax)\
75 req->length = (SIZEOF(xv/**/name/**/Req))>>2;\
76 dpy->bufptr += SIZEOF(xv/**/name/**/Req);\
  /external/jpeg/
jmemmgr.c 60 * multiples of sizeof(ALIGN_TYPE).
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)
    [all...]
jcomapi.c 91 (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JQUANT_TBL));
103 (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JHUFF_TBL));
jinclude.h 74 * type returned by sizeof(). However, it seems there are some irrational
75 * implementations out there, in which sizeof() returns an int even though
77 * we always use this SIZEOF() macro in place of using sizeof() directly.
80 #define SIZEOF(object) ((size_t) sizeof(object))
jdatadst.c 50 OUTPUT_BUF_SIZE * SIZEOF(JOCTET));
143 SIZEOF(my_destination_mgr));
jutils.c 128 register size_t count = (size_t) (num_cols * SIZEOF(JSAMPLE));
156 FMEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * SIZEOF(JCOEF)));
jchuff.c 141 257 * SIZEOF(long));
142 MEMZERO(entropy->dc_count_ptrs[dctbl], 257 * SIZEOF(long));
146 257 * SIZEOF(long));
147 MEMZERO(entropy->ac_count_ptrs[actbl], 257 * SIZEOF(long));
205 SIZEOF(c_derived_tbl));
248 MEMZERO(dtbl->ehufsi, SIZEOF(dtbl->ehufsi));
717 MEMZERO(bits, SIZEOF(bits));
718 MEMZERO(codesize, SIZEOF(codesize));
820 MEMCOPY(htbl->bits, bits, SIZEOF(htbl->bits));
858 MEMZERO(did_dc, SIZEOF(did_dc))
    [all...]
jdatasrc.c 196 SIZEOF(my_source_mgr));
200 INPUT_BUF_SIZE * SIZEOF(JOCTET));
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jmemmgr.c 63 * multiples of sizeof(ALIGN_TYPE).
88 * field. This forces the compiler to make SIZEOF(small_pool_hdr) a multiple
269 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(small_pool_hdr)))
272 /* Round up the requested size to a multiple of SIZEOF(ALIGN_TYPE) */
273 odd_bytes = sizeofobject % SIZEOF(ALIGN_TYPE);
275 sizeofobject += SIZEOF(ALIGN_TYPE) - odd_bytes;
292 min_request = sizeofobject + SIZEOF(small_pool_hdr);
353 if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)))
356 /* Round up the requested size to a multiple of SIZEOF(ALIGN_TYPE) */
357 odd_bytes = sizeofobject % SIZEOF(ALIGN_TYPE);
    [all...]
fpdfapi_jcomapi.c 92 (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JQUANT_TBL));
104 (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JHUFF_TBL));
jinclude.h 85 * type returned by sizeof(). However, it seems there are some irrational
86 * implementations out there, in which sizeof() returns an int even though
88 * we always use this SIZEOF() macro in place of using sizeof() directly.
91 #define SIZEOF(object) ((size_t) sizeof(object))
fpdfapi_jutils.c 123 register size_t count = (size_t) (num_cols * SIZEOF(JSAMPLE));
151 FMEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * SIZEOF(JCOEF)));
fpdfapi_jchuff.c 145 257 * SIZEOF(long));
146 MEMZERO(entropy->dc_count_ptrs[dctbl], 257 * SIZEOF(long));
150 257 * SIZEOF(long));
151 MEMZERO(entropy->ac_count_ptrs[actbl], 257 * SIZEOF(long));
209 SIZEOF(c_derived_tbl));
252 MEMZERO(dtbl->ehufsi, SIZEOF(dtbl->ehufsi));
721 MEMZERO(bits, SIZEOF(bits));
722 MEMZERO(codesize, SIZEOF(codesize));
824 MEMCOPY(htbl->bits, bits, SIZEOF(htbl->bits));
862 MEMZERO(did_dc, SIZEOF(did_dc));
    [all...]
fpdfapi_jddctmgr.c 256 SIZEOF(my_idct_controller));
265 SIZEOF(multiplier_table));
266 MEMZERO(compptr->dct_table, SIZEOF(multiplier_table));
  /external/qemu/distrib/jpeg-6b/
jmemmgr.c 60 * multiples of sizeof(ALIGN_TYPE).
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)
    [all...]
jcomapi.c 91 (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JQUANT_TBL));
103 (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JHUFF_TBL));
jinclude.h 74 * type returned by sizeof(). However, it seems there are some irrational
75 * implementations out there, in which sizeof() returns an int even though
77 * we always use this SIZEOF() macro in place of using sizeof() directly.
80 #define SIZEOF(object) ((size_t) sizeof(object))
jdatadst.c 50 OUTPUT_BUF_SIZE * SIZEOF(JOCTET));
143 SIZEOF(my_destination_mgr));
jutils.c 128 register size_t count = (size_t) (num_cols * SIZEOF(JSAMPLE));
156 FMEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * SIZEOF(JCOEF)));
jchuff.c 141 257 * SIZEOF(long));
142 MEMZERO(entropy->dc_count_ptrs[dctbl], 257 * SIZEOF(long));
146 257 * SIZEOF(long));
147 MEMZERO(entropy->ac_count_ptrs[actbl], 257 * SIZEOF(long));
205 SIZEOF(c_derived_tbl));
248 MEMZERO(dtbl->ehufsi, SIZEOF(dtbl->ehufsi));
717 MEMZERO(bits, SIZEOF(bits));
718 MEMZERO(codesize, SIZEOF(codesize));
820 MEMCOPY(htbl->bits, bits, SIZEOF(htbl->bits));
858 MEMZERO(did_dc, SIZEOF(did_dc))
    [all...]
  /external/bison/lib/
fatal-signal.c 32 #define SIZEOF(a) (sizeof(a) / sizeof(a[0]))
81 #define num_fatal_signals (SIZEOF (fatal_signals) - 1)
125 static size_t actions_allocated = SIZEOF (static_actions);
196 if (!(sig < sizeof (saved_sigactions) / sizeof (saved_sigactions[0])))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/
Xmd.h 82 * can define this macro to be sizeof(x) if and only if their compiler doesn't
94 # define SIZEOF(x) _SIZEOF(x)
176 # define NEXTPTR(p,t) (((char *) p) + SIZEOF(t))
Xlibint.h 444 if ((dpy->bufptr + SIZEOF(x##name##Req)) > dpy->bufmax)\
448 req->length = (SIZEOF(x##name##Req))>>2;\
449 dpy->bufptr += SIZEOF(x##name##Req);\
455 if ((dpy->bufptr + SIZEOF(x/**/name/**/Req)) > dpy->bufmax)\
459 req->length = (SIZEOF(x/**/name/**/Req))>>2;\
460 dpy->bufptr += SIZEOF(x/**/name/**/Req);\
470 if ((dpy->bufptr + SIZEOF(x##name##Req) + n) > dpy->bufmax)\
474 req->length = (SIZEOF(x##name##Req) + n)>>2;\
475 dpy->bufptr += SIZEOF(x##name##Req) + n;\
480 if ((dpy->bufptr + SIZEOF(x/**/name/**/Req) + n) > dpy->bufmax)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xmd.h 82 * can define this macro to be sizeof(x) if and only if their compiler doesn't
94 # define SIZEOF(x) _SIZEOF(x)
176 # define NEXTPTR(p,t) (((char *) p) + SIZEOF(t))
Xlibint.h 444 if ((dpy->bufptr + SIZEOF(x##name##Req)) > dpy->bufmax)\
448 req->length = (SIZEOF(x##name##Req))>>2;\
449 dpy->bufptr += SIZEOF(x##name##Req);\
455 if ((dpy->bufptr + SIZEOF(x/**/name/**/Req)) > dpy->bufmax)\
459 req->length = (SIZEOF(x/**/name/**/Req))>>2;\
460 dpy->bufptr += SIZEOF(x/**/name/**/Req);\
470 if ((dpy->bufptr + SIZEOF(x##name##Req) + n) > dpy->bufmax)\
474 req->length = (SIZEOF(x##name##Req) + n)>>2;\
475 dpy->bufptr += SIZEOF(x##name##Req) + n;\
480 if ((dpy->bufptr + SIZEOF(x/**/name/**/Req) + n) > dpy->bufmax)
    [all...]

Completed in 753 milliseconds

1 2 3 4 5 6 7 8 91011>>