/external/python/cpython2/Lib/bsddb/test/ |
D | test_dbenv.py | 301 logc = self.env.log_cursor() 302 self.assertIn(msg, logc.last()[1]) 342 logc = self.env.log_cursor() 343 logc.last() # Skip the commit 344 self.assertIn(msg, logc.prev()[1]) 350 logc.last() # Skip the abort 351 self.assertNotIn(msg, logc.prev()[1]) 357 logc.last() # Skip the commit 358 self.assertIn(msg, logc.prev()[1]) 439 logc = self.env.log_cursor() [all …]
|
/external/arm-optimized-routines/math/ |
D | logf.c | 34 double_t z, r, r2, y, y0, invc, logc; in logf() local 66 logc = T[i].logc; in logf() 71 y0 = logc + (double_t) k * Ln2; in logf()
|
D | log2f.c | 29 double_t z, r, r2, p, y, y0, invc, logc; in log2f() local 62 logc = T[i].logc; in log2f() 67 y0 = logc + (double_t) k; in log2f()
|
D | math_config.h | 307 double invc, logc; member 319 double invc, logc; member 336 double invc, logc; member 373 struct {double invc, logc;} tab[1 << LOG_TABLE_BITS]; member 388 struct {double invc, logc;} tab[1 << LOG2_TABLE_BITS]; member 402 struct {double invc, pad, logc, logctail;} tab[1 << POW_LOG_TABLE_BITS]; member
|
D | log2.c | 32 double_t z, r, r2, r4, y, invc, logc, kd, hi, lo, t1, t2, t3, p; in log2() local 96 logc = T[i].logc; in log2() 118 t3 = kd + logc; in log2()
|
D | powf.c | 37 double_t z, r, r2, r4, p, q, y, y0, invc, logc; in log2_inline() local 50 logc = T[i].logc; in log2_inline() 55 y0 = logc + (double_t) k; in log2_inline()
|
D | log.c | 32 double_t w, z, r, r2, r3, y, invc, logc, kd, hi, lo; in log() local 120 logc = T[i].logc; in log() 135 w = kd * Ln2hi + logc; in log()
|
D | pow.c | 39 double_t z, r, y, invc, logc, logctail, kd, hi, t1, t2, lo, lo1, lo2, p; in log_inline() local 55 logc = T[i].logc; in log_inline() 72 t1 = kd * Ln2hi + logc; in log_inline()
|
/external/python/cpython2/Lib/plat-mac/ |
D | aetypes.py | 221 def __init__(self, logc, term): argument 222 self.logc = "%-4.4s" % str(logc) 226 return "Logical(%r, %r)" % (self.logc, self.term) 231 string.strip(self.logc), 234 return "%s(%s)" % (string.strip(self.logc), nice(self.term)) 237 return pack({'logc': mkenum(self.logc), 'term': self.term}, 'logi')
|
/external/python/cpython2/Doc/library/ |
D | aetypes.rst | 122 .. class:: Logical(logc, term) 124 The logical expression of applying operator ``logc`` to ``term``.
|
/external/python/cpython2/Modules/ |
D | bsddb.h | 209 DB_LOGC* logc; member
|
D | _bsddb.c | 349 _CHECK_OBJECT_NOT_CLOSED(logcurs->logc, DBCursorClosedError, DBLogCursor) 1062 self->logc = dblogc; in newDBLogCursorObject() 1081 if (self->logc != NULL) { in DBLogCursor_dealloc() 3920 if (self->logc != NULL) { in DBLogCursor_close_internal() 3924 err = self->logc->close(self->logc, 0); in DBLogCursor_close_internal() 3926 self->logc = NULL; in DBLogCursor_close_internal() 3956 err = self->logc->get(self->logc, &lsn, &data, flag); in _DBLogCursor_get()
|
/external/u-boot/doc/ |
D | README.log | 198 logc(level, format_string, ...) 247 Provide additional log() functions - e.g. logc() to specify the category
|