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

1 2 3 4

  /external/libjpeg-turbo/
jutils.c 28 const int jpeg_zigzag_order[DCTSIZE2] = {
55 const int jpeg_natural_order[DCTSIZE2+16] = {
122 MEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * sizeof(JCOEF)));
jddctmgr.c 67 ISLOW_MULT_TYPE islow_array[DCTSIZE2];
69 IFAST_MULT_TYPE ifast_array[DCTSIZE2];
72 FLOAT_MULT_TYPE float_array[DCTSIZE2];
249 for (i = 0; i < DCTSIZE2; i++) {
267 static const INT16 aanscales[DCTSIZE2] = {
280 for (i = 0; i < DCTSIZE2; i++) {
jcdctmgr.c 184 dtbl[DCTSIZE2 * 0] = (DCTELEM) 1; /* reciprocal */
185 dtbl[DCTSIZE2 * 1] = (DCTELEM) 0; /* correction */
186 dtbl[DCTSIZE2 * 2] = (DCTELEM) 1; /* scale */
187 dtbl[DCTSIZE2 * 3] = (DCTELEM) (-sizeof(DCTELEM) * 8); /* shift */
209 dtbl[DCTSIZE2 * 0] = (DCTELEM) fq; /* reciprocal */
210 dtbl[DCTSIZE2 * 1] = (DCTELEM) c; /* correction + roundfactor */
211 dtbl[DCTSIZE2 * 2] = (DCTELEM) (1 << (sizeof(DCTELEM)*8*2 - r)); /* scale */
212 dtbl[DCTSIZE2 * 3] = (DCTELEM) r - sizeof(DCTELEM)*8; /* shift */
258 (DCTSIZE2 * 4) * sizeof(DCTELEM));
261 for (i = 0; i < DCTSIZE2; i++)
    [all...]
rdswitch.c 94 unsigned int table[DCTSIZE2];
109 for (i = 1; i < DCTSIZE2; i++) {
238 scanptr->Se = DCTSIZE2-1;
282 static const unsigned int std_luminance_quant_tbl[DCTSIZE2] = {
292 static const unsigned int std_chrominance_quant_tbl[DCTSIZE2] = {
jdarith.c 574 for (k = 1; k <= DCTSIZE2 - 1; k++) {
579 if (k > DCTSIZE2 - 1) {
638 if (cinfo->Se < cinfo->Ss || cinfo->Se > DCTSIZE2 - 1)
687 (cinfo->Se < DCTSIZE2 && cinfo->Se != DCTSIZE2 - 1))
757 cinfo->coef_bits = (int (*)[DCTSIZE2])
759 cinfo->num_components*DCTSIZE2*sizeof(int));
762 for (i = 0; i < DCTSIZE2; i++)
jdphuff.c 112 if (cinfo->Ss > cinfo->Se || cinfo->Se >= DCTSIZE2)
509 int newnz_pos[DCTSIZE2];
664 cinfo->coef_bits = (int (*)[DCTSIZE2])
666 cinfo->num_components*DCTSIZE2*sizeof(int));
669 for (i = 0; i < DCTSIZE2; i++)
jcmaster.c 176 int last_bitpos[MAX_COMPONENTS][DCTSIZE2];
183 /* For sequential JPEG, all scans must have Ss=0, Se=DCTSIZE2-1;
187 if (scanptr->Ss != 0 || scanptr->Se != DCTSIZE2-1) {
192 for (coefi = 0; coefi < DCTSIZE2; coefi++)
235 if (Ss < 0 || Ss >= DCTSIZE2 || Se < Ss || Se >= DCTSIZE2 ||
265 if (Ss != 0 || Se != DCTSIZE2-1 || Ah != 0 || Al != 0)
335 cinfo->Se = DCTSIZE2-1;
jdhuff.c 101 if (cinfo->Ss != 0 || cinfo->Se != DCTSIZE2-1 ||
597 for (k = 1; k < DCTSIZE2; k++) {
610 * if k >= DCTSIZE2, which could happen if the data is corrupted.
624 for (k = 1; k < DCTSIZE2; k++) {
688 for (k = 1; k < DCTSIZE2; k++) {
707 for (k = 1; k < DCTSIZE2; k++) {
752 #define BUFSIZE (DCTSIZE2 * 8)
jcparam.c 52 for (i = 0; i < DCTSIZE2; i++) {
71 static const unsigned int std_luminance_quant_tbl[DCTSIZE2] = {
81 static const unsigned int std_chrominance_quant_tbl[DCTSIZE2] = {
jcmarker.c 160 for (i = 0; i < DCTSIZE2; i++) {
168 emit_2bytes(cinfo, prec ? DCTSIZE2*2 + 1 + 2 : DCTSIZE2 + 1 + 2);
172 for (i = 0; i < DCTSIZE2; i++) {
  /external/opencv3/3rdparty/libjpeg/
jutils.c 27 const int jpeg_zigzag_order[DCTSIZE2] = {
54 const int jpeg_natural_order[DCTSIZE2+16] = {
216 FMEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * SIZEOF(JCOEF)));
223 for (count = (long) num_blocks * DCTSIZE2; count > 0; count--) {
jcdctmgr.c 75 DCTELEM workspace[DCTSIZE2]; /* work area for FDCT subroutine */
89 for (i = 0; i < DCTSIZE2; i++) {
138 FAST_FLOAT workspace[DCTSIZE2]; /* work area for FDCT subroutine */
152 for (i = 0; i < DCTSIZE2; i++) {
366 DCTSIZE2 * SIZEOF(DCTELEM));
369 for (i = 0; i < DCTSIZE2; i++) {
385 static const INT16 aanscales[DCTSIZE2] = {
401 DCTSIZE2 * SIZEOF(DCTELEM));
404 for (i = 0; i < DCTSIZE2; i++) {
435 DCTSIZE2 * SIZEOF(FAST_FLOAT))
    [all...]
jddctmgr.c 61 ISLOW_MULT_TYPE islow_array[DCTSIZE2];
63 IFAST_MULT_TYPE ifast_array[DCTSIZE2];
66 FLOAT_MULT_TYPE float_array[DCTSIZE2];
281 for (i = 0; i < DCTSIZE2; i++) {
299 static const INT16 aanscales[DCTSIZE2] = {
312 for (i = 0; i < DCTSIZE2; i++) {
jdinput.c 247 cinfo->lim_Se = DCTSIZE2-1;
288 cinfo->lim_Se = DCTSIZE2-1;
293 cinfo->lim_Se = DCTSIZE2-1;
298 cinfo->lim_Se = DCTSIZE2-1;
303 cinfo->lim_Se = DCTSIZE2-1;
308 cinfo->lim_Se = DCTSIZE2-1;
313 cinfo->lim_Se = DCTSIZE2-1;
318 cinfo->lim_Se = DCTSIZE2-1;
323 cinfo->lim_Se = DCTSIZE2-1;
328 cinfo->lim_Se = DCTSIZE2-1
    [all...]
jcmaster.c 250 cinfo->block_size * cinfo->block_size - 1 : DCTSIZE2-1;
369 int last_bitpos[MAX_COMPONENTS][DCTSIZE2];
376 /* For sequential JPEG, all scans must have Ss=0, Se=DCTSIZE2-1;
380 if (scanptr->Ss != 0 || scanptr->Se != DCTSIZE2-1) {
385 for (coefi = 0; coefi < DCTSIZE2; coefi++)
428 if (Ss < 0 || Ss >= DCTSIZE2 || Se < Ss || Se >= DCTSIZE2 ||
458 if (Ss != 0 || Se != DCTSIZE2-1 || Ah != 0 || Al != 0)
jdhuff.c 915 int newnz_pos[DCTSIZE2];
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jutils.c 26 const int jpeg_zigzag_order[DCTSIZE2] = {
53 const int jpeg_natural_order[DCTSIZE2+16] = {
150 FMEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * SIZEOF(JCOEF)));
157 for (count = (long) num_blocks * DCTSIZE2; count > 0; count--) {
fpdfapi_jddctmgr.c 60 ISLOW_MULT_TYPE islow_array[DCTSIZE2];
62 IFAST_MULT_TYPE ifast_array[DCTSIZE2];
65 FLOAT_MULT_TYPE float_array[DCTSIZE2];
167 for (i = 0; i < DCTSIZE2; i++) {
185 static const INT16 aanscales[DCTSIZE2] = {
198 for (i = 0; i < DCTSIZE2; i++) {
fpdfapi_jcdctmgr.c 81 DCTSIZE2 * SIZEOF(DCTELEM));
84 for (i = 0; i < DCTSIZE2; i++) {
99 static const INT16 aanscales[DCTSIZE2] = {
115 DCTSIZE2 * SIZEOF(DCTELEM));
118 for (i = 0; i < DCTSIZE2; i++) {
148 DCTSIZE2 * SIZEOF(FAST_FLOAT));
190 DCTELEM workspace[DCTSIZE2]; /* work area for FDCT subroutine */
231 for (i = 0; i < DCTSIZE2; i++) {
280 FAST_FLOAT workspace[DCTSIZE2]; /* work area for FDCT subroutine */
322 for (i = 0; i < DCTSIZE2; i++)
    [all...]
fpdfapi_jdphuff.c 109 if (cinfo->Ss > cinfo->Se || cinfo->Se >= DCTSIZE2)
504 int newnz_pos[DCTSIZE2];
659 cinfo->coef_bits = (int (*)[DCTSIZE2])
661 cinfo->num_components*DCTSIZE2*SIZEOF(int));
664 for (i = 0; i < DCTSIZE2; i++)
fpdfapi_jcmaster.c 141 int last_bitpos[MAX_COMPONENTS][DCTSIZE2];
148 /* For sequential JPEG, all scans must have Ss=0, Se=DCTSIZE2-1;
152 if (scanptr->Ss != 0 || scanptr->Se != DCTSIZE2-1) {
157 for (coefi = 0; coefi < DCTSIZE2; coefi++)
200 if (Ss < 0 || Ss >= DCTSIZE2 || Se < Ss || Se >= DCTSIZE2 ||
230 if (Ss != 0 || Se != DCTSIZE2-1 || Ah != 0 || Al != 0)
300 cinfo->Se = DCTSIZE2-1;
fpdfapi_jcmarker.c 156 for (i = 0; i < DCTSIZE2; i++) {
164 emit_2bytes(cinfo, prec ? DCTSIZE2*2 + 1 + 2 : DCTSIZE2 + 1 + 2);
168 for (i = 0; i < DCTSIZE2; i++) {
fpdfapi_jdhuff.c 99 if (cinfo->Ss != 0 || cinfo->Se != DCTSIZE2-1 ||
574 for (k = 1; k < DCTSIZE2; k++) {
587 * if k >= DCTSIZE2, which could happen if the data is corrupted.
601 for (k = 1; k < DCTSIZE2; k++) {
  /external/libjpeg-turbo/simd/
jidctflt-3dn.asm 62 %define workspace wk(0)-DCTSIZE2*SIZEOF_FAST_FLOAT
63 ; FAST_FLOAT workspace[DCTSIZE2]
285 prefetch [esi + (DCTSIZE2-8)*SIZEOF_JCOEF + 0*32]
286 prefetch [esi + (DCTSIZE2-8)*SIZEOF_JCOEF + 1*32]
287 prefetch [esi + (DCTSIZE2-8)*SIZEOF_JCOEF + 2*32]
288 prefetch [esi + (DCTSIZE2-8)*SIZEOF_JCOEF + 3*32]
jidctflt-sse2-64.asm 73 %define workspace wk(0)-DCTSIZE2*SIZEOF_FAST_FLOAT
74 ; FAST_FLOAT workspace[DCTSIZE2]
319 prefetchnta [rsi + (DCTSIZE2-8)*SIZEOF_JCOEF + 0*32]
320 prefetchnta [rsi + (DCTSIZE2-8)*SIZEOF_JCOEF + 1*32]
321 prefetchnta [rsi + (DCTSIZE2-8)*SIZEOF_JCOEF + 2*32]
322 prefetchnta [rsi + (DCTSIZE2-8)*SIZEOF_JCOEF + 3*32]

Completed in 266 milliseconds

1 2 3 4