Searched refs:qval (Results 1 - 7 of 7) sorted by relevance

/external/jpeg/
H A Djcdctmgr.c227 { register DCTELEM temp, qval; local
232 qval = divisors[i];
234 /* Divide the coefficient value by qval, ensuring proper rounding.
253 temp += qval>>1; /* for rounding */
254 DIVIDE_BY(temp, qval);
257 temp += qval>>1; /* for rounding */
258 DIVIDE_BY(temp, qval);
H A Djcmarker.c170 unsigned int qval = qtbl->quantval[jpeg_natural_order[i]]; local
172 emit_byte(cinfo, (int) (qval >> 8));
173 emit_byte(cinfo, (int) (qval & 0xFF));
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jcdctmgr.c228 { register DCTELEM temp, qval; local
233 qval = divisors[i];
235 /* Divide the coefficient value by qval, ensuring proper rounding.
254 temp += qval>>1; /* for rounding */
255 DIVIDE_BY(temp, qval);
258 temp += qval>>1; /* for rounding */
259 DIVIDE_BY(temp, qval);
H A Dfpdfapi_jcmarker.c171 unsigned int qval = qtbl->quantval[jpeg_natural_order[i]]; local
173 emit_byte(cinfo, (int) (qval >> 8));
174 emit_byte(cinfo, (int) (qval & 0xFF));
/external/mksh/src/
H A Dvar.c796 const char *qval, *ccp; local
802 if ((qval = val) == NULL) {
806 qval = str_val(vp);
809 ccp = skip_varname(qval, false);
810 if (ccp == qval) {
811 if (ksh_isdigit(qval[0])) {
814 if (getn(qval, &c))
816 } else if (qval[1] == '\0') switch (qval[0]) {
834 errorf("%s: %s", qval,
[all...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg.cpp1675 int qval = cvRound(qtable[idx]*inv_quality); local
1676 if( qval < 1 )
1677 qval = 1;
1678 if( qval > 255 )
1679 qval = 255;
1681 (qval*chroma_scale*idct_prescale[idx]));
1682 lowstrm.PutByte( qval );
/external/skia/src/core/
H A DSkScan_AntiPath.cpp506 uint32_t qval = quadplicate_byte(maxValue);
508 *qptr++ += qval;

Completed in 191 milliseconds