Searched refs:Al (Results 1 - 25 of 48) sorted by relevance

12

/external/chromium_org/third_party/libjpeg_turbo/
H A Djdcoefct.c62 /* When doing block smoothing, we latch coefficient Al values here */
485 int Al, pred; local
584 if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
588 if (Al > 0 && pred >= (1<<Al))
589 pred = (1<<Al)-1;
592 if (Al > 0 && pred >= (1<<Al))
593 pred = (1<<Al)-1;
599 if ((Al
[all...]
H A Djdphuff.c116 /* Successive approximation refinement scan: must have Al = Ah-1. */
117 if (cinfo->Al != cinfo->Ah-1)
120 if (cinfo->Al > 13) /* need not check for < 0 */
122 /* Arguably the maximum Al value should be less than 13 for 8-bit precision,
124 * accept. Note: large Al values could result in out-of-range DC
130 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
144 coef_bit_ptr[coefi] = cinfo->Al;
290 int Al = cinfo->Al; local
337 (*block)[0] = (JCOEF) (s << Al);
362 int Al = cinfo->Al; local
[all...]
H A Djcphuff.c381 int Al = cinfo->Al; local
400 /* Compute the DC value after the required point transform by Al.
403 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
469 int Al = cinfo->Al; local
492 /* We must apply the point transform by Al. For AC coefficients this
499 temp >>= Al; /* apply the point transform */ local
503 temp >>= Al; /* apply the point transform */ local
574 int Al local
625 int Al = cinfo->Al; local
652 temp >>= Al; /* apply the point transform */ local
[all...]
H A Djcmaster.c172 int Ss, Se, Ah, Al; local
177 /* -1 until that coefficient has been seen; then last Al for it */
220 Al = scanptr->Al;
223 /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
226 * Here we allow 0..10 for 8-bit data; Al larger than 10 results in
236 Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
256 if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
259 last_bitpos_ptr[coefi] = Al;
[all...]
H A Djcparam.c516 int Ss, int Se, int Ah, int Al)
524 scanptr->Al = Al;
531 int Ss, int Se, int Ah, int Al)
542 scanptr->Al = Al;
549 fill_dc_scans (jpeg_scan_info * scanptr, int ncomps, int Ah, int Al) argument
561 scanptr->Al = Al;
565 scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, Al);
515 fill_a_scan(jpeg_scan_info * scanptr, int ci, int Ss, int Se, int Ah, int Al) argument
530 fill_scans(jpeg_scan_info * scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
[all...]
H A Djdarith.c307 (*block)[0] = (JCOEF) (entropy->last_dc_val[ci] << cinfo->Al);
382 (*block)[jpeg_natural_order[k]] = (JCOEF) (v << cinfo->Al);
408 p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
449 p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
450 m1 = (-1) << cinfo->Al; /* -1 in the bit position being coded */
641 /* Successive approximation refinement scan: must have Al = Ah-1. */
642 if (cinfo->Ah-1 != cinfo->Al)
645 if (cinfo->Al > 13) { /* need not check for < 0 */
648 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
663 coef_bit_ptr[coefi] = cinfo->Al;
[all...]
H A Djcarith.c388 /* Compute the DC value after the required point transform by Al.
391 m = IRIGHT_SHIFT((int) ((*block)[0]), cinfo->Al);
480 /* We must apply the point transform by Al. For AC coefficients this
485 if (v >>= cinfo->Al) break;
488 if (v >>= cinfo->Al) break;
497 if (v >>= cinfo->Al) {
504 if (v >>= cinfo->Al) {
556 int Al, blkn; local
570 Al = cinfo->Al;
[all...]
H A Drdswitch.c234 scanptr->Al = (int) val;
240 scanptr->Al = 0;
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jdcoefct.c57 /* When doing block smoothing, we latch coefficient Al values here */
480 int Al, pred; local
576 if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
580 if (Al > 0 && pred >= (1<<Al))
581 pred = (1<<Al)-1;
584 if (Al > 0 && pred >= (1<<Al))
585 pred = (1<<Al)-1;
591 if ((Al
[all...]
H A Dfpdfapi_jdphuff.c117 /* Successive approximation refinement scan: must have Al = Ah-1. */
118 if (cinfo->Al != cinfo->Ah-1)
121 if (cinfo->Al > 13) /* need not check for < 0 */
123 /* Arguably the maximum Al value should be less than 13 for 8-bit precision,
125 * accept. Note: large Al values could result in out-of-range DC
131 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
145 coef_bit_ptr[coefi] = cinfo->Al;
290 int Al = cinfo->Al; local
337 (*block)[0] = (JCOEF) (s << Al);
362 int Al = cinfo->Al; local
[all...]
H A Dfpdfapi_jcphuff.c384 int Al = cinfo->Al; local
403 /* Compute the DC value after the required point transform by Al.
406 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
472 int Al = cinfo->Al; local
495 /* We must apply the point transform by Al. For AC coefficients this
502 temp >>= Al; /* apply the point transform */ local
506 temp >>= Al; /* apply the point transform */ local
577 int Al local
628 int Al = cinfo->Al; local
655 temp >>= Al; /* apply the point transform */ local
[all...]
H A Dfpdfapi_jcmaster.c138 int Ss, Se, Ah, Al; local
143 /* -1 until that coefficient has been seen; then last Al for it */
186 Al = scanptr->Al;
189 /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
192 * Here we allow 0..10 for 8-bit data; Al larger than 10 results in
202 Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
222 if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
225 last_bitpos_ptr[coefi] = Al;
[all...]
H A Dfpdfapi_jcparam.c477 int Ss, int Se, int Ah, int Al)
485 scanptr->Al = Al;
492 int Ss, int Se, int Ah, int Al)
503 scanptr->Al = Al;
510 fill_dc_scans (jpeg_scan_info * scanptr, int ncomps, int Ah, int Al) argument
522 scanptr->Al = Al;
526 scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, Al);
476 fill_a_scan(jpeg_scan_info * scanptr, int ci, int Ss, int Se, int Ah, int Al) argument
491 fill_scans(jpeg_scan_info * scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
[all...]
/external/jpeg/
H A Djdcoefct.c56 /* When doing block smoothing, we latch coefficient Al values here */
732 int Al, pred; local
828 if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
832 if (Al > 0 && pred >= (1<<Al))
833 pred = (1<<Al)-1;
836 if (Al > 0 && pred >= (1<<Al))
837 pred = (1<<Al)-1;
843 if ((Al
[all...]
H A Djcphuff.c383 int Al = cinfo->Al; local
402 /* Compute the DC value after the required point transform by Al.
405 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
471 int Al = cinfo->Al; local
494 /* We must apply the point transform by Al. For AC coefficients this
501 temp >>= Al; /* apply the point transform */ local
505 temp >>= Al; /* apply the point transform */ local
576 int Al local
627 int Al = cinfo->Al; local
654 temp >>= Al; /* apply the point transform */ local
[all...]
H A Djdphuff.c115 /* Successive approximation refinement scan: must have Al = Ah-1. */
116 if (cinfo->Al != cinfo->Ah-1)
119 if (cinfo->Al > 13) /* need not check for < 0 */
121 /* Arguably the maximum Al value should be less than 13 for 8-bit precision,
123 * accept. Note: large Al values could result in out-of-range DC
129 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
143 coef_bit_ptr[coefi] = cinfo->Al;
288 int Al = cinfo->Al; local
335 (*block)[0] = (JCOEF) (s << Al);
360 int Al = cinfo->Al; local
[all...]
H A Djcmaster.c137 int Ss, Se, Ah, Al; local
142 /* -1 until that coefficient has been seen; then last Al for it */
185 Al = scanptr->Al;
188 /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
191 * Here we allow 0..10 for 8-bit data; Al larger than 10 results in
201 Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
221 if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
224 last_bitpos_ptr[coefi] = Al;
[all...]
H A Djcparam.c476 int Ss, int Se, int Ah, int Al)
484 scanptr->Al = Al;
491 int Ss, int Se, int Ah, int Al)
502 scanptr->Al = Al;
509 fill_dc_scans (jpeg_scan_info * scanptr, int ncomps, int Ah, int Al) argument
521 scanptr->Al = Al;
525 scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, Al);
475 fill_a_scan(jpeg_scan_info * scanptr, int ci, int Ss, int Se, int Ah, int Al) argument
490 fill_scans(jpeg_scan_info * scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
[all...]
H A Drdswitch.c222 scanptr->Al = (int) val;
228 scanptr->Al = 0;
/external/qemu/distrib/jpeg-6b/
H A Djdcoefct.c56 /* When doing block smoothing, we latch coefficient Al values here */
732 int Al, pred; local
828 if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
832 if (Al > 0 && pred >= (1<<Al))
833 pred = (1<<Al)-1;
836 if (Al > 0 && pred >= (1<<Al))
837 pred = (1<<Al)-1;
843 if ((Al
[all...]
H A Djcphuff.c383 int Al = cinfo->Al; local
402 /* Compute the DC value after the required point transform by Al.
405 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
471 int Al = cinfo->Al; local
494 /* We must apply the point transform by Al. For AC coefficients this
501 temp >>= Al; /* apply the point transform */ local
505 temp >>= Al; /* apply the point transform */ local
576 int Al local
627 int Al = cinfo->Al; local
654 temp >>= Al; /* apply the point transform */ local
[all...]
H A Djdphuff.c119 /* Successive approximation refinement scan: must have Al = Ah-1. */
120 if (cinfo->Al != cinfo->Ah-1)
123 if (cinfo->Al > 13) /* need not check for < 0 */
125 /* Arguably the maximum Al value should be less than 13 for 8-bit precision,
127 * accept. Note: large Al values could result in out-of-range DC
133 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
147 coef_bit_ptr[coefi] = cinfo->Al;
292 int Al = cinfo->Al; local
339 (*block)[0] = (JCOEF) (s << Al);
364 int Al = cinfo->Al; local
[all...]
H A Djcmaster.c137 int Ss, Se, Ah, Al; local
142 /* -1 until that coefficient has been seen; then last Al for it */
185 Al = scanptr->Al;
188 /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
191 * Here we allow 0..10 for 8-bit data; Al larger than 10 results in
201 Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
221 if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
224 last_bitpos_ptr[coefi] = Al;
[all...]
H A Djcparam.c482 int Ss, int Se, int Ah, int Al)
490 scanptr->Al = Al;
497 int Ss, int Se, int Ah, int Al)
508 scanptr->Al = Al;
515 fill_dc_scans (jpeg_scan_info * scanptr, int ncomps, int Ah, int Al) argument
527 scanptr->Al = Al;
531 scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, Al);
481 fill_a_scan(jpeg_scan_info * scanptr, int ci, int Ss, int Se, int Ah, int Al) argument
496 fill_scans(jpeg_scan_info * scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h112 StackObject(uint64_t Sz, unsigned Al, int64_t SP, bool IM, argument
114 : SPOffset(SP), Size(Sz), Alignment(Al), isImmutable(IM),

Completed in 1400 milliseconds

12