Home
last modified time | relevance | path

Searched refs:levelno (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/third_party/libopenjpeg20/
Dpi.c347 OPJ_UINT32 levelno; in opj_pi_next_rpcl() local
357 levelno = comp->numresolutions - 1 - pi->resno; in opj_pi_next_rpcl()
358 trx0 = opj_int_ceildiv(pi->tx0, (OPJ_INT32)(comp->dx << levelno)); in opj_pi_next_rpcl()
359 try0 = opj_int_ceildiv(pi->ty0, (OPJ_INT32)(comp->dy << levelno)); in opj_pi_next_rpcl()
360 trx1 = opj_int_ceildiv(pi->tx1, (OPJ_INT32)(comp->dx << levelno)); in opj_pi_next_rpcl()
361 try1 = opj_int_ceildiv(pi->ty1, (OPJ_INT32)(comp->dy << levelno)); in opj_pi_next_rpcl()
362 rpx = res->pdx + levelno; in opj_pi_next_rpcl()
363 rpy = res->pdy + levelno; in opj_pi_next_rpcl()
364 …if (!((pi->y % (OPJ_INT32)(comp->dy << rpy) == 0) || ((pi->y == pi->ty0) && ((try0 << levelno) % (… in opj_pi_next_rpcl()
367 …if (!((pi->x % (OPJ_INT32)(comp->dx << rpx) == 0) || ((pi->x == pi->tx0) && ((trx0 << levelno) % (… in opj_pi_next_rpcl()
[all …]
D0009-opj_pi_next.patch6 …prcj = opj_int_floordivpow2(opj_int_ceildiv(pi->y, (OPJ_INT32)(comp->dy << levelno)), (OPJ_INT32)r…
16 …prcj = opj_int_floordivpow2(opj_int_ceildiv(pi->y, (OPJ_INT32)(comp->dy << levelno)), (OPJ_INT32)r…
26 …prcj = opj_int_floordivpow2(opj_int_ceildiv(pi->y, (OPJ_INT32)(comp->dy << levelno)), (OPJ_INT32)r…
/external/autotest/client/common_lib/
Dlogging_config.py23 return record.levelno < self.level
/external/python/cpython2/Lib/logging/
D__init__.py268 self.levelno = level
309 return '<LogRecord: %s, %s, %s, %s, "%s">'%(self.name, self.levelno,
1335 if record.levelno >= hdlr.level:
Dhandlers.py1016 return self.typemap.get(record.levelno, self.deftype)
1192 (record.levelno >= self.flushLevel)
/external/autotest/site_utils/suite_scheduler/
Dsuite_scheduler.py85 return record.levelno == self._level
/external/autotest/client/site_tests/video_VideoDecodeMemoryUsage/
Dvideo_VideoDecodeMemoryUsage.py355 return (record.levelno > logging.DEBUG or
/external/python/cpython2/Lib/test/
Dtest_logging.py350 return record.levelno != GARRULOUS
357 return record.levelno not in [SOCIABLE, TACITURN]
/external/python/cpython2/Doc/library/
Dlogging.rst580 ``levelno`` for the numeric value and ``levelname`` for the
649 | levelno | ``%(levelno)s`` | Numeric logging level for the message |