Home
last modified time | relevance | path

Searched refs:thiscoef (Results 1 – 2 of 2) sorted by relevance

/external/libjpeg-turbo/
Djdphuff.c518 JCOEFPTR thiscoef; in decode_mcu_AC_refine() local
584 thiscoef = *block + jpeg_natural_order[k]; in decode_mcu_AC_refine()
585 if (*thiscoef != 0) { in decode_mcu_AC_refine()
588 if ((*thiscoef & p1) == 0) { /* do nothing if already set it */ in decode_mcu_AC_refine()
589 if (*thiscoef >= 0) in decode_mcu_AC_refine()
590 *thiscoef += p1; in decode_mcu_AC_refine()
592 *thiscoef += m1; in decode_mcu_AC_refine()
618 thiscoef = *block + jpeg_natural_order[k]; in decode_mcu_AC_refine()
619 if (*thiscoef != 0) { in decode_mcu_AC_refine()
622 if ((*thiscoef & p1) == 0) { /* do nothing if already changed it */ in decode_mcu_AC_refine()
[all …]
Djdarith.c440 JCOEFPTR thiscoef; in decode_mcu_AC_refine() local
470 thiscoef = *block + jpeg_natural_order[k]; in decode_mcu_AC_refine()
471 if (*thiscoef) { /* previously nonzero coef */ in decode_mcu_AC_refine()
473 if (*thiscoef < 0) in decode_mcu_AC_refine()
474 *thiscoef += m1; in decode_mcu_AC_refine()
476 *thiscoef += p1; in decode_mcu_AC_refine()
482 *thiscoef = m1; in decode_mcu_AC_refine()
484 *thiscoef = p1; in decode_mcu_AC_refine()