Searched refs:ipow (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/ |
D | operator.py | 381 def ipow(a, b): function 456 __ipow__ = ipow
|
/external/one-true-awk/ |
D | proto.h | 179 extern double ipow(double, int);
|
D | run.c | 1076 i = ipow(i, (int) j); in arith() 1089 double ipow(double x, int n) /* x**n. ought to be done by pow, but isn't always */ in ipow() function 1095 v = ipow(x, n/2); in ipow() 1172 xf = ipow(xf, (int) yf); in assign()
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 532 .. function:: ipow(a, b) 535 ``a = ipow(a, b)`` is equivalent to ``a **= b``.
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 391 .. function:: ipow(a, b) 394 ``a = ipow(a, b)`` is equivalent to ``a **= b``.
|
/external/python/cpython2/Modules/ |
D | operator.c | 433 spam2(ipow,__ipow__, "a = ipow(a, b) -- Same as a **= b.")
|
/external/python/cpython2/Lib/test/ |
D | test_operator.py | 499 self.assertEqual(operator.ipow (c, 5), "ipow")
|
/external/python/cpython3/Lib/test/ |
D | test_operator.py | 477 self.assertEqual(operator.ipow (c, 5), "ipow")
|