Searched defs:Al (Results 1 - 16 of 16) sorted by relevance

/external/libjpeg-turbo/
H A Djcparam.c408 int Ss, int Se, int Ah, int Al)
416 scanptr->Al = Al;
423 int Ss, int Se, int Ah, int Al)
434 scanptr->Al = Al;
441 fill_dc_scans (jpeg_scan_info *scanptr, int ncomps, int Ah, int Al) argument
453 scanptr->Al = Al;
457 scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, Al);
407 fill_a_scan(jpeg_scan_info *scanptr, int ci, int Ss, int Se, int Ah, int Al) argument
422 fill_scans(jpeg_scan_info *scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
[all...]
H A Djcarith.c391 /* Compute the DC value after the required point transform by Al.
394 m = IRIGHT_SHIFT((int) ((*block)[0]), cinfo->Al);
483 /* We must apply the point transform by Al. For AC coefficients this
488 if (v >>= cinfo->Al) break;
491 if (v >>= cinfo->Al) break;
500 if (v >>= cinfo->Al) {
507 if (v >>= cinfo->Al) {
559 int Al, blkn; local
573 Al = cinfo->Al;
[all...]
H A Djcmaster.c184 int Ss, Se, Ah, Al; local
189 /* -1 until that coefficient has been seen; then last Al for it */
232 Al = scanptr->Al;
235 /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
238 * Here we allow 0..10 for 8-bit data; Al larger than 10 results in
248 Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
268 if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
271 last_bitpos_ptr[coefi] = Al;
[all...]
H A Djdphuff.c120 /* Successive approximation refinement scan: must have Al = Ah-1. */
121 if (cinfo->Al != cinfo->Ah-1)
124 if (cinfo->Al > 13) /* need not check for < 0 */
126 /* Arguably the maximum Al value should be less than 13 for 8-bit precision,
128 * accept. Note: large Al values could result in out-of-range DC
134 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
148 coef_bit_ptr[coefi] = cinfo->Al;
295 int Al = cinfo->Al; local
342 (*block)[0] = (JCOEF) LEFT_SHIFT(s, Al);
367 int Al = cinfo->Al; local
[all...]
H A Djcphuff.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 Djdcoefct.c427 int Al, pred; local
527 if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
531 if (Al > 0 && pred >= (1<<Al))
532 pred = (1<<Al)-1;
535 if (Al > 0 && pred >= (1<<Al))
536 pred = (1<<Al)-1;
542 if ((Al=coef_bits[2]) != 0 && workspace[8] == 0) {
546 if (Al >
[all...]
H A Djpeglib.h196 int Ah, Al; /* progressive JPEG successive approx. parms */ member in struct:__anon10891
445 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_compress_struct
572 int (*coef_bits)[DCTSIZE2]; /* -1 or current Al value for each coef */
677 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_decompress_struct
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jcmaster.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 Dfpdfapi_jcparam.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 Dfpdfapi_jdphuff.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;
289 int Al = cinfo->Al; local
336 (*block)[0] = (JCOEF) (s << Al);
361 int Al = cinfo->Al; local
[all...]
H A Dfpdfapi_jcphuff.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 Dfpdfapi_jdcoefct.c56 /* When doing block smoothing, we latch coefficient Al values here */
479 int Al, pred; local
575 if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
579 if (Al > 0 && pred >= (1<<Al))
580 pred = (1<<Al)-1;
583 if (Al > 0 && pred >= (1<<Al))
584 pred = (1<<Al)-1;
590 if ((Al
[all...]
H A Djpeglib.h290 int Ah, Al; /* progressive JPEG successive approx. parms */ member in struct:__anon16726
492 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_compress_struct
613 int (*coef_bits)[DCTSIZE2]; /* -1 or current Al value for each coef */
710 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_decompress_struct
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCRegisterInfo.h40 unsigned RS, unsigned Al, int CC, bool Allocable,
43 : ID(id), Name(name), RegSize(RS), Alignment(Al), CopyCost(CC),
39 MCRegisterClass(unsigned id, const char *name, unsigned RS, unsigned Al, int CC, bool Allocable, iterator RB, iterator RE, const unsigned char *Bits, unsigned NumBytes) argument
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h131 StackObject(uint64_t Sz, unsigned Al, int64_t SP, bool IM, argument
133 : SPOffset(SP), Size(Sz), Alignment(Al), isImmutable(IM),
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineFrameInfo.h110 StackObject(uint64_t Sz, unsigned Al, int64_t SP, bool IM, argument
112 : SPOffset(SP), Size(Sz), Alignment(Al), isImmutable(IM),

Completed in 1402 milliseconds