HomeSort by relevance Sort by last modified time
    Searched refs:ipart (Results 1 - 6 of 6) sorted by null

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
round_fwd.hpp 59 T modf(const T& v, T* ipart, const Policy& pol);
61 T modf(const T& v, T* ipart);
63 T modf(const T& v, int* ipart, const Policy& pol);
65 T modf(const T& v, int* ipart);
67 T modf(const T& v, long* ipart, const Policy& pol);
69 T modf(const T& v, long* ipart);
72 T modf(const T& v, boost::long_long_type* ipart, const Policy& pol);
74 T modf(const T& v, boost::long_long_type* ipart);
  /frameworks/base/libs/hwui/
Interpolator.cpp 105 float ipart, weight; local
106 weight = modff(lutpos, &ipart);
108 int i1 = (int) ipart;
112 " i1=%d, i2=%d, input=%f, lutpos=%f, size=%zu, values=%p, ipart=%f, weight=%f",
113 i1, i2, input, lutpos, mSize, mValues.get(), ipart, weight);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/animation/
NativeInterpolatorFactoryHelper_Delegate.java 112 int ipart = (int) lutpos; local
113 float weight = lutpos - ipart;
115 int i1 = ipart;
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 196 * Let ipart = int(x)
197 * Let fpart = x - ipart;
198 * So, exp2(x) = exp2(ipart) * exp2(fpart)
199 * Compute exp2(ipart) with i << ipart
205 int32_t ipart; local
215 ipart = (int32_t) x;
216 fpart = x - (float) ipart;
219 * epart.f = (float) (1 << ipart)
220 * but faster and without integer overflow for ipart > 3
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 1793 LLVMValueRef ipart; local
2611 LLVMValueRef ipart = NULL; local
2897 LLVMValueRef ipart; local
2927 LLVMValueRef ipart; local
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
math_fwd.hpp 854 inline T modf(const T& v, boost::long_long_type* ipart){ using boost::math::modf; return modf(v, ipart, Policy()); }\
    [all...]

Completed in 3794 milliseconds