/external/python/cpython3/Lib/ |
D | _pydecimal.py | 252 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True) 566 self._int = str(int(intpart+fracpart)) 573 self._int = str(int(diag or '0')).lstrip('0') 580 self._int = '0' 592 self._int = str(abs(value)) 600 self._int = value._int 607 self._int = str(value.int) 626 self._int = '0' 643 self._int = ''.join(map(str, digits)) 648 self._int = ''.join(map(str, digits or [0])) [all …]
|
D | sre_compile.py | 411 def _mk_bitmap(bits, _CODEBITS=_CODEBITS, _int=int): argument 413 return [_int(s[i - _CODEBITS: i], 2)
|
/external/python/cpython2/Lib/ |
D | decimal.py | 220 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True) 558 self._int = str(int(intpart+fracpart)) 565 self._int = str(int(diag or '0')).lstrip('0') 572 self._int = '0' 584 self._int = str(abs(value)) 592 self._int = value._int 599 self._int = str(value.int) 618 self._int = '0' 635 self._int = ''.join(map(str, digits)) 640 self._int = ''.join(map(str, digits or [0])) [all …]
|
D | random.py | 177 def randrange(self, start, stop=None, step=1, _int=int, _maxwidth=1L<<BPF): argument 187 istart = _int(start) 194 return _int(self.random() * istart) 198 istop = _int(stop) 217 return _int(istart + self._randbelow(width)) 218 return _int(istart + _int(self.random()*width)) 223 istep = _int(step) 238 return istart + istep*_int(self.random() * n) 246 def _randbelow(self, n, _log=_log, _int=int, _maxwidth=1L<<BPF, argument 263 k = _int(1.00001 + _log(n-1, 2.0)) # 2**k > n-1 > 2**(k-2) [all …]
|
D | stringold.py | 192 _int = int variable 230 return _apply(_int, args)
|
D | string.py | 380 _int = int variable 405 return _int(s, base)
|
D | sre_compile.py | 411 def _mk_bitmap(bits, _CODEBITS=_CODEBITS, _int=int): argument 413 return [_int(s[i - _CODEBITS: i], 2)
|
/external/libopus/celt/arm/ |
D | mdct_arm.h | 52 #define clt_mdct_forward(_l, _in, _out, _window, _int, _shift, _stride, _arch) \ argument 53 clt_mdct_forward_neon(_l, _in, _out, _window, _int, _shift, _stride, _arch) 54 #define clt_mdct_backward(_l, _in, _out, _window, _int, _shift, _stride, _arch) \ argument 55 clt_mdct_backward_neon(_l, _in, _out, _window, _int, _shift, _stride, _arch)
|
/external/kotlinx.atomicfu/atomicfu/src/commonTest/kotlin/kotlinx/atomicfu/test/ |
D | VolatileOnlyTest.kt | 11 private val _int = atomic(0) constant 17 _int.value = 42 in testVolatileOnly() 18 assertEquals(42, _int.value) in testVolatileOnly()
|
/external/mesa3d/src/util/ |
D | xmlconfig.c | 229 v->_int = strToI(string, &tail, 0); in parseValue() 297 return (info->range.start._int == info->range.end._int || in checkValue() 298 (v->_int >= info->range.start._int && in checkValue() 299 v->_int <= info->range.end._int)); in checkValue() 359 optval->_int = opt->value._int; in driParseOptionInfo() 461 ralloc_asprintf_append(&str, "%d", opt->value._int); in driGetOptionsXml() 482 if (opt->info.range.start._int < opt->info.range.end._int) { in driGetOptionsXml() 484 opt->info.range.start._int, in driGetOptionsXml() 485 opt->info.range.end._int); in driGetOptionsXml() 649 info->range.start._int >= info->range.end._int) { in parseRange() [all …]
|
D | driconf.h | 57 .start = { ._int = min }, \ 58 .end = { ._int = max }, \ 88 .value = { ._int = def }, \ 108 .value = { ._int = def }, \
|
D | xmlconfig.h | 52 int _int; /**< \brief Integer or Enum */ member 184 cache->values[i]._int); in driComputeOptionsSha1()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/ |
D | JsonLocationInstantiator.java | 51 _int(args[3]), _int(args[4])); in createFromObjectWith() 58 private final static int _int(Object o) { in _int() method in JsonLocationInstantiator
|
D | UUIDDeserializer.java | 134 long l1 = ((long) _int(b, offset)) << 32; in _long() 135 long l2 = _int(b, offset+4); in _long() 141 private static int _int(byte[] b, int offset) { in _int() method in UUIDDeserializer
|
/external/mbedtls/tests/data_files/ |
D | Readme-x509.txt | 88 _int-ca-exp.crt: S7 + expired I1 89 _int-ca.crt: S7 + I1 90 _int-ca_ca2.crt: S7 + I1 + 2 95 - server8*.crt: I2 R L: RSA signed by EC signed by RSA (P1 for _int-ca2)
|
/external/openthread/third_party/mbedtls/repo/tests/data_files/ |
D | Readme-x509.txt | 88 _int-ca-exp.crt: S7 + expired I1 89 _int-ca.crt: S7 + I1 90 _int-ca_ca2.crt: S7 + I1 + 2 95 - server8*.crt: I2 R L: RSA signed by EC signed by RSA (P1 for _int-ca2)
|
/external/python/cpython2/Lib/test/ |
D | test_decimal.py | 1544 self.assertEqual(d1._int, b1._int) 1547 self.assertEqual(d2._int, b2._int) 1552 self.assertEqual(d1._int, b1._int) 1557 self.assertEqual(d1._int, b1._int)
|
/external/python/asn1crypto/asn1crypto/ |
D | algos.py | 24 from ._int import fill_width
|
/external/deqp/modules/gles2/functional/ |
D | es2fShaderOperatorTests.cpp | 665 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].… 671 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)tcu::FUNC_NAME((int)c.i… 677 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].… 846 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i… 852 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i… 951 …#define INT_GENTYPE_FUNCS(FUNC_NAME) eval_##FUNC_NAME##_int, eval_##FUNC_NAME##_ivec2, eval_##FUNC…
|
/external/rust/crates/async-trait/tests/ |
D | test.rs | 1549 async fn f(Tuple(_, _int): Tuple<Droppable, i32>) {} in f() 1556 async fn f(Tuple { 1: _int, .. }: Tuple<Droppable, i32>) {}
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderOperatorTests.cpp | 875 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].… 881 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].… 899 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].… 1141 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i… 1147 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i… 1264 …#define INT_GENTYPE_FUNCS(FUNC_NAME) eval_##FUNC_NAME##_int, eval_##FUNC_NAME##_ivec2, eval_##FUNC… in init()
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderOperatorTests.cpp | 1159 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].… 1165 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].… 1183 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].… 1482 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i… 1488 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i… 1574 …#define INT_GENTYPE_FUNCS(FUNC_NAME) eval_##FUNC_NAME##_int, eval_##FUNC_NAME##_ivec2, eval_##FUNC…
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 4598 self.assertEqual(d1._int, b1._int) 4601 self.assertEqual(d2._int, b2._int) 4606 self.assertEqual(d1._int, b1._int) 4611 self.assertEqual(d1._int, b1._int)
|
/external/python/cpython3/Modules/_decimal/tests/ |
D | deccheck.py | 409 return _dec_from_triple(0, '1', dec._exp+len(dec._int)-prec)
|
/external/blktrace/doc/ |
D | blktrace.tex | 798 \item[blk\_add\_trace\_pdu\_int(struct request\_queue *q, u32 what,
|