Searched defs:Se (Results 1 - 5 of 5) sorted by relevance
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/ |
H A D | jcmaster.c | 141 int Ss, Se, Ah, Al; local 152 /* For sequential JPEG, all scans must have Ss=0, Se=DCTSIZE2-1; 156 if (scanptr->Ss != 0 || scanptr->Se != DCTSIZE2-1) { 187 Se = scanptr->Se; 204 if (Ss < 0 || Ss >= DCTSIZE2 || Se < Ss || Se >= DCTSIZE2 || 208 if (Se != 0) /* DC and AC together not OK */ 218 for (coefi = Ss; coefi <= Se; coefi++) { 234 if (Ss != 0 || Se ! [all...] |
H A D | jcparam.c | 480 int Ss, int Se, int Ah, int Al) 486 scanptr->Se = Se; 495 int Ss, int Se, int Ah, int Al) 504 scanptr->Se = Se; 523 scanptr->Ss = scanptr->Se = 0; 479 fill_a_scan(jpeg_scan_info * scanptr, int ci, int Ss, int Se, int Ah, int Al) argument 494 fill_scans(jpeg_scan_info * scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
|
H A D | jdphuff.c | 109 if (cinfo->Se != 0) 112 /* need not check Ss/Se < 0 since they came from unsigned bytes */ 113 if (cinfo->Ss > cinfo->Se || cinfo->Se >= DCTSIZE2) 134 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); 144 for (coefi = cinfo->Ss; coefi <= cinfo->Se; coefi++) { 364 int Se = cinfo->Se; local 398 for (k = cinfo->Ss; k <= Se; k++) { 498 int Se local [all...] |
H A D | jcphuff.c | 474 int Se = cinfo->Se; local 493 for (k = cinfo->Ss; k <= Se; k++) { 630 int Se = cinfo->Se; local 650 for (k = cinfo->Ss; k <= Se; k++) { 670 for (k = cinfo->Ss; k <= Se; k++) {
|
H A D | jpeglib.h | 191 int Ss, Se; /* progressive JPEG spectral selection parms */ member in struct:__anon730 394 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_compress_struct 612 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_decompress_struct
|
Completed in 40 milliseconds