Home
last modified time | relevance | path

Searched defs:to_int (Results 1 – 23 of 23) sorted by relevance

/external/sdv/vsomeip/third_party/boost/numeric/interval/include/boost/numeric/interval/detail/
Dia64_rounding_control.hpp55 static float to_int(const float& x) { return rintf(x); } in to_int() function
63 static double to_int(const double& r) { return rint(r); } in to_int() function
71 static long double to_int(const long double& r) { return rintl(r); } in to_int() function
Dsparc_rounding_control.hpp87 static float to_int(const float& x) { return rintf(x); } in to_int() function
95 static double to_int(const double& x) { return rint(x); } in to_int() function
103 static long double to_int(const long double& x) { return rint(x); } in to_int() function
Dalpha_rounding_control.hpp87 static float to_int(const float& x) { return rintf(x); } in to_int() function
95 static double to_int(const double& r) { return rint(r); } in to_int() function
103 static long double to_int(const long double& r) { return rintl(r); } in to_int() function
Dppc_rounding_control.hpp73 static float to_int(const float& x) { return rintf(x); } in to_int() function
81 static double to_int(const double& r) { return rint(r); } in to_int() function
89 static long double to_int(const long double& r) { return rint(r); } in to_int() function
Dx86gcc_rounding_control.hpp38 static T to_int(T r) in to_int() function
Dmsvc_rounding_control.hpp105 static double to_int(const double& x) { return rint(x); } in to_int() function
Dbcc_rounding_control.hpp49 static double to_int(const double& x) { return rint(x); } in to_int() function
Dc99sub_rounding_control.hpp35 static T to_int(const T& r) { return rint(r); } in to_int() function
/external/clang/test/SemaCXX/Inputs/
Dregister.h5 #define to_int(x) ({ register int n = (x); n; }) macro
/external/compiler-rt/test/msan/
Dvector_cvt.cc7 int to_int(double v) { in to_int() function
/external/pigweed/pw_bluetooth_sapphire/host/common/
Ddevice_class.cc105 uint32_t DeviceClass::to_int() const { in to_int() function in bt::DeviceClass
/external/sdv/vsomeip/third_party/boost/detail/test/
Dbinary_search_test.cpp76 inline unsigned to_int(unsigned x) { return x; } in to_int() function
77 inline unsigned to_int(const std::string& x) { return atoi(x.c_str()); } in to_int() function
/external/sdv/vsomeip/third_party/boost/numeric/interval/include/boost/numeric/interval/
Drounding.hpp30 static const T& to_int(const T& x) { return x; } in to_int() function
/external/OpenCL-CTS/test_common/harness/
DtestHarness.h43 int to_int() const { return m_major * 10 + m_minor; } in to_int() function
/external/cronet/stable/third_party/libc++/src/test/std/algorithms/
Drobust_against_proxy_iterators_lifetime_bugs.pass.cpp641 constexpr int to_int(int x) { return x; } in to_int() function
642 int to_int(LifetimeIterator::Value x) { return x.i_; } in to_int() function
/external/cronet/tot/third_party/libc++/src/test/std/algorithms/
Drobust_against_proxy_iterators_lifetime_bugs.pass.cpp641 constexpr int to_int(int x) { return x; } in to_int() function
642 int to_int(LifetimeIterator::Value x) { return x.i_; } in to_int() function
/external/pytorch/torch/fx/experimental/
Dvalidator.py165 def to_int(x: z3.ArithRef) -> z3.ArithRef: member in _Z3Ops
/external/pytorch/functorch/csrc/dim/
Dminpybind.h392 Py_ssize_t to_int(handle h) { in to_int() function
/external/harfbuzz_ng/src/
Dhb-open-type.hh236 typename Type::type to_int () const { return Type::v; } in to_int() function
363 uint32_t to_int () const { return (major << (sizeof (FixedType) * 8)) + minor; } in to_int() function
Dhb-cff-interp-common.hh223 int to_int () const { return value; } in to_int() function
/external/freetype/include/freetype/internal/
Dpsaux.h385 (*to_int)( PS_Parser parser ); member
/external/skia/tests/
DSkRasterPipelineTest.cpp2269 static float to_int(float a) { return sk_bit_cast<float>((int)a); } in to_int() function
/external/pytorch/test/
Dtest_jit.py5835 def to_int(x): function