Searched refs:levelno (Results 1 – 9 of 9) sorted by relevance
/external/pdfium/third_party/libopenjpeg20/ |
D | pi.c | 347 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 …]
|
D | 0009-opj_pi_next.patch | 6 …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/ |
D | logging_config.py | 23 return record.levelno < self.level
|
/external/python/cpython2/Lib/logging/ |
D | __init__.py | 268 self.levelno = level 309 return '<LogRecord: %s, %s, %s, %s, "%s">'%(self.name, self.levelno, 1335 if record.levelno >= hdlr.level:
|
D | handlers.py | 1016 return self.typemap.get(record.levelno, self.deftype) 1192 (record.levelno >= self.flushLevel)
|
/external/autotest/site_utils/suite_scheduler/ |
D | suite_scheduler.py | 85 return record.levelno == self._level
|
/external/autotest/client/site_tests/video_VideoDecodeMemoryUsage/ |
D | video_VideoDecodeMemoryUsage.py | 355 return (record.levelno > logging.DEBUG or
|
/external/python/cpython2/Lib/test/ |
D | test_logging.py | 350 return record.levelno != GARRULOUS 357 return record.levelno not in [SOCIABLE, TACITURN]
|
/external/python/cpython2/Doc/library/ |
D | logging.rst | 580 ``levelno`` for the numeric value and ``levelname`` for the 649 | levelno | ``%(levelno)s`` | Numeric logging level for the message |
|