Searched refs:int_pow (Results 1 - 8 of 8) sorted by relevance
/third_party/ffmpeg/tests/ |
H A D | rotozoom.c | 32 static int64_t int_pow(int64_t a, int p) in int_pow() function 55 return a - int_pow(a, 3) / 6 + int_pow(a, 5) / 120 - int_pow(a, 7) / 5040; in int_sin()
|
/third_party/skia/src/pdf/ |
H A D | SkPDFUtils.cpp | 274 static constexpr int int_pow(int base, unsigned exp, int acc = 1) { in int_pow() function 276 : int_pow(base * base, in int_pow() 283 static constexpr int kFactor = int_pow(10, kFloatColorDecimalCount); in ColorToDecimalF()
|
/third_party/nghttp2/src/ |
H A D | shrpx_connect_blocker.cc | 85 util::int_pow(MULTIPLIER, std::min(MAX_BACKOFF_EXP, fail_count_)); in on_failure()
|
H A D | shrpx_live_check.cc | 177 util::int_pow(MULTIPLIER, std::min(fail_count_, MAX_BACKOFF_EXP)); in schedule()
|
H A D | util.h | 920 double int_pow(double x, size_t y);
|
H A D | shrpx_connection_handler.cc | 861 auto base_backoff = util::int_pow( in on_tls_ticket_key_network_error()
|
H A D | util.cc | 1513 double int_pow(double x, size_t y) { in int_pow() function
|
/third_party/python/Lib/test/ |
H A D | test_complex.py | 286 int_pow = value**exponent 288 int_pow = "overflow" 297 self.assertEqual(str(float_pow), str(int_pow)) 298 self.assertEqual(str(complex_pow), str(int_pow))
|
Completed in 10 milliseconds